mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-28 20:53:54 +02:00
avcodec/lagarith: fix init_get_bits() size in lag_decode_arith_plane()
untested due to lack of sample Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
3410122c68
commit
e80aa47abf
@ -443,7 +443,7 @@ static int lag_decode_arith_plane(LagarithContext *l, uint8_t *dst,
|
||||
offset += 4;
|
||||
}
|
||||
|
||||
init_get_bits(&gb, src + offset, src_size * 8);
|
||||
init_get_bits(&gb, src + offset, (src_size - offset) * 8);
|
||||
|
||||
if (lag_read_prob_header(&rac, &gb) < 0)
|
||||
return -1;
|
||||
|
Loading…
Reference in New Issue
Block a user