Commit c4fd1e7b authored by James Almer's avatar James Almer

Merge commit '3b50dbc5'

* commit '3b50dbc5':
  ratecontrol: Use correct function pointer casts instead of void*
Merged-by: 's avatarJames Almer <jamrial@gmail.com>
parents 66e7b421 3b50dbc5
......@@ -497,8 +497,8 @@ av_cold int ff_rate_control_init(MpegEncContext *s)
NULL
};
static double (* const func1[])(void *, double) = {
(void *)bits2qp,
(void *)qp2bits,
(double (*)(void *, double)) bits2qp,
(double (*)(void *, double)) qp2bits,
NULL
};
static const char * const func1_names[] = {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment