1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

fix frametypes with xvid_rc

Originally committed as revision 5180 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2006-03-18 20:43:48 +00:00
parent 0adba3d88b
commit 5fe4cf7b9f

View File

@ -117,6 +117,9 @@ int ff_rate_control_init(MpegEncContext *s)
p= next;
}
if(init_pass2(s) < 0) return -1;
//FIXME maybe move to end
if((s->flags&CODEC_FLAG_PASS2) && s->avctx->rc_strategy == FF_RC_STRATEGY_XVID) {
#ifdef CONFIG_XVID
@ -126,8 +129,6 @@ int ff_rate_control_init(MpegEncContext *s)
return -1;
#endif
}
if(init_pass2(s) < 0) return -1;
}
if(!(s->flags&CODEC_FLAG_PASS2)){