Commit 23606f27 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/ffv1enc: bump minor_version for the chroma_plane fix

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 1a01147d
...@@ -535,7 +535,7 @@ static int write_extradata(FFV1Context *f) ...@@ -535,7 +535,7 @@ static int write_extradata(FFV1Context *f)
put_symbol(c, state, f->version, 0); put_symbol(c, state, f->version, 0);
if (f->version > 2) { if (f->version > 2) {
if (f->version == 3) if (f->version == 3)
f->minor_version = 3; f->minor_version = 4;
put_symbol(c, state, f->minor_version, 0); put_symbol(c, state, f->minor_version, 0);
} }
......
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