Commit 96f8ca3b authored by bcoudurier's avatar bcoudurier

latest libavc svn requires at least this value for bit_rate_tolerance, not...

latest libavc svn requires at least this value for bit_rate_tolerance, not using av_q2d because of float

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13271 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent f7cd950d
......@@ -3584,7 +3584,8 @@ static void add_codec(FFStream *stream, AVCodecContext *av)
}
/* Bitrate tolerance is less for streaming */
if (av->bit_rate_tolerance == 0)
av->bit_rate_tolerance = av->bit_rate / 4;
av->bit_rate_tolerance = FFMAX(av->bit_rate / 4,
(int64_t)av->bit_rate*av->time_base.num/av->time_base.den);
if (av->qmin == 0)
av->qmin = 3;
if (av->qmax == 0)
......
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