mirror of https://git.ffmpeg.org/ffmpeg.git
Merge commit '3b50dbc51fb0978d09c1a5b83d4bf5a59d170e1e'
* commit '3b50dbc51fb0978d09c1a5b83d4bf5a59d170e1e': ratecontrol: Use correct function pointer casts instead of void* Merged-by: James Almer <jamrial@gmail.com>
This commit is contained in:
commit
c4fd1e7b01
|
@ -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[] = {
|
||||
|
|
Loading…
Reference in New Issue