mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-21 06:16:59 +00:00
Allow mpeg encoding with qscale and very low frame rate.
Patch by James Darnley, james D darnley A gmail Originally committed as revision 25102 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
16f825085a
commit
8d39fbd6d9
@ -356,7 +356,7 @@ av_cold int MPV_encode_init(AVCodecContext *avctx)
|
||||
return -1;
|
||||
}
|
||||
|
||||
if(avctx->bit_rate*av_q2d(avctx->time_base) > avctx->bit_rate_tolerance){
|
||||
if(!s->fixed_qscale && avctx->bit_rate*av_q2d(avctx->time_base) > avctx->bit_rate_tolerance){
|
||||
av_log(avctx, AV_LOG_ERROR, "bitrate tolerance too small for bitrate\n");
|
||||
return -1;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user