You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avcodec/wmadec: Fix undefined shift in wma_decode_block()
Found-by: Clang -fsanitize=shift Reported-by: Thierry Foucu <tfoucu@google.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -697,7 +697,7 @@ static int wma_decode_block(WMACodecContext *s)
|
||||
|
||||
/* very high freqs : noise */
|
||||
n = s->block_len - s->coefs_end[bsize];
|
||||
mult1 = mult * exponents[((-1 << bsize)) >> esize];
|
||||
mult1 = mult * exponents[(-(1 << bsize)) >> esize];
|
||||
for (i = 0; i < n; i++) {
|
||||
*coefs++ = s->noise_table[s->noise_index] * mult1;
|
||||
s->noise_index = (s->noise_index + 1) & (NOISE_TAB_SIZE - 1);
|
||||
|
Reference in New Issue
Block a user