Browse Source

ffv1dec: support decoding older 1.3 bitstream variant

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.0
Michael Niedermayer 13 years ago
parent
commit
55a6f705ac
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/ffv1.c

+ 1
- 1
libavcodec/ffv1.c View File

@@ -1677,7 +1677,7 @@ static int decode_slice(AVCodecContext *c, void *arg){
y= fs->slice_y;

if(!fs->ac){
if (f->version > 2)
if (f->version == 3 && f->minor_version > 1 || f->version > 3)
get_rac(&fs->c, (int[]){129});
fs->ac_byte_count = f->version > 2 || (!x&&!y) ? fs->c.bytestream - fs->c.bytestream_start - 1 : 0;
init_get_bits(&fs->gb,


Loading…
Cancel
Save