mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
ffv1dec: support decoding older 1.3 bitstream variant
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
ff0c628268
commit
55a6f705ac
@ -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…
Reference in New Issue
Block a user