Commit fb4a9613 authored by Stephen Davies's avatar Stephen Davies Committed by Arpi

qscale estimate fix, diff extended to 64bit wide. patch by Stephen Davies <steve@daviesfam.org>

Originally committed as revision 247 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 3046f265
......@@ -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;
......
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