mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
b_frame_strategy sanity check
Originally committed as revision 4222 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
49d40989ff
commit
bf873ee62a
@ -1065,6 +1065,11 @@ int MPV_encode_init(AVCodecContext *avctx)
|
||||
return -1;
|
||||
}
|
||||
|
||||
if(avctx->b_frame_strategy && (avctx->flags&CODEC_FLAG_PASS2)){
|
||||
av_log(avctx, AV_LOG_ERROR, "b_frame_strategy must be 0 on the second pass");
|
||||
return -1;
|
||||
}
|
||||
|
||||
i= ff_gcd(avctx->time_base.den, avctx->time_base.num);
|
||||
if(i > 1){
|
||||
av_log(avctx, AV_LOG_INFO, "removing common factors from framerate\n");
|
||||
|
Loading…
Reference in New Issue
Block a user