1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00

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

Originally committed as revision 13271 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Baptiste Coudurier 2008-05-24 02:19:46 +00:00
parent 5366f15d05
commit 1692008f51

View File

@ -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)