From fb4a9613ee4c03e38b4b85ad2d375bbdc856118a Mon Sep 17 00:00:00 2001 From: Stephen Davies Date: Tue, 8 Jan 2002 00:28:55 +0000 Subject: [PATCH] qscale estimate fix, diff extended to 64bit wide. patch by Stephen Davies Originally committed as revision 247 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/mpegvideo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c index 80a3563..ec16e78 100644 --- a/libavcodec/mpegvideo.c +++ b/libavcodec/mpegvideo.c @@ -1310,9 +1310,9 @@ static void rate_control_init(MpegEncContext *s) */ static int rate_estimate_qscale(MpegEncContext *s) { - INT64 total_bits = s->total_bits; + INT64 diff, total_bits = s->total_bits; float q; - int qscale, diff, qmin; + int qscale, qmin; if (s->pict_type == I_TYPE) { s->wanted_bits += s->I_frame_bits; -- 2.7.4