From ec6a3752483a20ede57afb2f59eea97a3a4c09c2 Mon Sep 17 00:00:00 2001 From: Fabrice Bellard Date: Mon, 14 Oct 2002 18:25:58 +0000 Subject: [PATCH] removed warnings Originally committed as revision 1038 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/ratecontrol.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/ratecontrol.c b/libavcodec/ratecontrol.c index d837ab5f73c..99e46dbad28 100644 --- a/libavcodec/ratecontrol.c +++ b/libavcodec/ratecontrol.c @@ -284,8 +284,8 @@ static double get_qscale(MpegEncContext *s, RateControlEntry *rce, double rate_f NULL }; static double (*func1[])(void *, double)={ - bits2qp, - qp2bits, + (void *)bits2qp, + (void *)qp2bits, NULL }; char *func1_names[]={ -- 2.39.2