Browse Source

avcodec/mpegaudiodec_template: Check for negative e

Fixes: undefined shift
Fixes: 631/clusterfuzz-testcase-6725491035734016

Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n3.3
Michael Niedermayer 9 years ago
parent
commit
58dd25f8ad
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/mpegaudiodec_template.c

+ 1
- 1
libavcodec/mpegaudiodec_template.c View File

@@ -251,7 +251,7 @@ static inline int l3_unscale(int value, int exponent)
if(e < 1)
av_log(NULL, AV_LOG_WARNING, "l3_unscale: e is %d\n", e);
#endif
if (e > 31)
if (e > (SUINT)31)
return 0;
m = (m + (1 << (e - 1))) >> e;



Loading…
Cancel
Save