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
oldabi
James Darnley 15 years ago committed by Carl Eugen Hoyos
parent 16f825085a
commit 8d39fbd6d9
  1. 2
      libavcodec/mpegvideo_enc.c

@ -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…
Cancel
Save