diff options
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/snow.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/snow.h b/libavcodec/snow.h index 7e35b5f1be..30e6a9a485 100644 --- a/libavcodec/snow.h +++ b/libavcodec/snow.h @@ -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; |