Commit d24043e1 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/jpeg2000dwt: Fix runtime error: left shift of negative value -123

Fixes: 2208/clusterfuzz-testcase-minimized-5976593765761024

Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpegSigned-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent c996374d
...@@ -488,7 +488,7 @@ static void dwt_decode97_int(DWTContext *s, int32_t *t) ...@@ -488,7 +488,7 @@ static void dwt_decode97_int(DWTContext *s, int32_t *t)
line += 5; line += 5;
for (i = 0; i < w * h; i++) for (i = 0; i < w * h; i++)
data[i] <<= I_PRESHIFT; data[i] *= 1 << I_PRESHIFT;
for (lev = 0; lev < s->ndeclevels; lev++) { for (lev = 0; lev < s->ndeclevels; lev++) {
int lh = s->linelen[lev][0], int lh = s->linelen[lev][0],
......
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