Browse Source

avcodec/nellymoser: Fix multiple left shift of negative value -8591

Fixes: 1342/clusterfuzz-testcase-minimized-5490842129137664

Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit 0953736b7e)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n3.3.1
Michael Niedermayer 8 years ago
parent
commit
2adf20b3da
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavcodec/nellymoser.c

+ 2
- 2
libavcodec/nellymoser.c View File

@@ -84,7 +84,7 @@ const int16_t ff_nelly_delta_table[32] = {

static inline int signed_shift(int i, int shift) {
if (shift > 0)
return i << shift;
return (unsigned)i << shift;
return i >> -shift;
}

@@ -108,7 +108,7 @@ static int headroom(int *la)
return 31;
}
l = 30 - av_log2(FFABS(*la));
*la <<= l;
*la *= 1<<l;
return l;
}



Loading…
Cancel
Save