Commit 8dfbc1c5 authored by Michael Niedermayer's avatar Michael Niedermayer

ffv1: allow enabling of version 2 by using some of its features.

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 1b295a17
......@@ -873,6 +873,15 @@ static av_cold int encode_init(AVCodecContext *avctx)
common_init(avctx);
s->version=0;
if((avctx->flags & (CODEC_FLAG_PASS1|CODEC_FLAG_PASS2)) || avctx->slices>1)
s->version = FFMAX(s->version, 2);
if(s->version >= 2 && avctx->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL) {
av_log(avctx, AV_LOG_ERROR, "Version 2 needed for requested features but version 2 is experimental and not enabled\n");
return -1;
}
s->ac= avctx->coder_type ? 2:0;
if(s->ac>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