Commit 6ecf1eb0 authored by Michael Niedermayer's avatar Michael Niedermayer

snowdec: add 2 av_asserts to check run validity

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 4a596d19
......@@ -664,11 +664,13 @@ static inline void unpack_coeffs(SnowContext *s, SubBand *b, SubBand * parent, i
int max_run;
run--;
v=0;
av_assert2(run >= 0);
if(y) max_run= FFMIN(run, prev_xc->x - x - 2);
else max_run= FFMIN(run, w-x-1);
if(parent_xc)
max_run= FFMIN(max_run, 2*parent_xc->x - x - 1);
av_assert2(max_run >= 0 && max_run <= run);
x+= max_run;
run-= max_run;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment