mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 12:09:55 +00:00
snowdec: check log in get_symbol2()
Fixes Ticket1635 Found-by: Piotr Bandurski <ami_stuff@o2.pl> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
0114c571d4
commit
4a596d19ff
@ -582,7 +582,7 @@ static inline int get_symbol2(RangeCoder *c, uint8_t *state, int log2){
|
||||
|
||||
av_assert2(log2>=-4);
|
||||
|
||||
while(get_rac(c, state+4+log2)){
|
||||
while(log2<28 && get_rac(c, state+4+log2)){
|
||||
v+= r;
|
||||
log2++;
|
||||
if(log2>0) r+=r;
|
||||
|
Loading…
Reference in New Issue
Block a user