Originally committed as revision 2848 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2004-03-05 15:10:56 +00:00
parent 5f0f7713ad
commit ca5b9f20b2
1 changed files with 1 additions and 1 deletions

View File

@ -2101,7 +2101,7 @@ int MPV_encode_picture(AVCodecContext *avctx,
}
/* update mpeg1/2 vbv_delay for CBR */
if(s->avctx->rc_max_rate && s->avctx->rc_min_rate == s->avctx->rc_max_rate){
if(s->avctx->rc_max_rate && s->avctx->rc_min_rate == s->avctx->rc_max_rate && s->out_format == FMT_MPEG1){
int vbv_delay;
assert(s->repeat_first_field==0);