You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-09-16 08:36: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:
@@ -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)
|
||||
|
Reference in New Issue
Block a user