diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-09-24 04:54:26 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-09-25 03:43:22 +0200 |
commit | d8676140decd42dc6b8fa2e693ba7d2fd79c1578 (patch) | |
tree | 57a651ec841cba1282de2b6d10f73591052e29c4 | |
parent | ad9371ef245e2f70f3a13b7f08c0ceeee02b831c (diff) | |
download | ffmpeg-d8676140decd42dc6b8fa2e693ba7d2fd79c1578.tar.gz |
ffv1: inject sentinels for RC->VLC transitions begining with 1.3
This breaks bitstream compatibility of 1.3 VLC streams
This fixes very rare errors in the RC stream at the transition point
to VLC.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/ffv1.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libavcodec/ffv1.c b/libavcodec/ffv1.c index 5e74f178c7..210400b712 100644 --- a/libavcodec/ffv1.c +++ b/libavcodec/ffv1.c @@ -817,7 +817,7 @@ static int write_extra_header(FFV1Context *f){ put_symbol(c, state, f->version, 0); if(f->version > 2) { if(f->version == 3) - f->minor_version = 1; + f->minor_version = 2; put_symbol(c, state, f->minor_version, 0); } put_symbol(c, state, f->ac, 0); @@ -1241,6 +1241,8 @@ static int encode_slice(AVCodecContext *c, void *arg){ encode_slice_header(f, fs); } if(!fs->ac){ + if(f->version > 2) + put_rac(&fs->c, (int[]){129}, 0); fs->ac_byte_count = f->version > 2 || (!x&&!y) ? ff_rac_terminate(&fs->c) : 0; init_put_bits(&fs->pb, fs->c.bytestream_start + fs->ac_byte_count, fs->c.bytestream_end - fs->c.bytestream_start - fs->ac_byte_count); } @@ -1675,6 +1677,8 @@ static int decode_slice(AVCodecContext *c, void *arg){ y= fs->slice_y; if(!fs->ac){ + if (f->version > 2) + 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, fs->c.bytestream_start + fs->ac_byte_count, |