Commit 8d39fbd6 authored by James Darnley's avatar James Darnley Committed by Carl Eugen Hoyos

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
parent 16f82508
......@@ -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;
}
......
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