Commit 21fdf1cc authored by Michael Niedermayer's avatar Michael Niedermayer

ffv1: fix reading global header with CRC

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 57778f61
......@@ -1697,8 +1697,10 @@ static int read_extra_header(FFV1Context *f){
ff_build_rac_states(c, 0.05*(1LL<<32), 256-8);
f->version= get_symbol(c, state, 0);
if(f->version > 2)
if(f->version > 2) {
c->bytestream_end -= 4;
f->minor_version= get_symbol(c, state, 0);
}
f->ac= f->avctx->coder_type= get_symbol(c, state, 0);
if(f->ac>1){
for(i=1; i<256; i++){
......
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