Browse Source

avcodec/takdec: Fix runtime error: left shift of negative value -42

Fixes: 1635/clusterfuzz-testcase-minimized-4992749856096256

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 99c4c76cfb)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n3.3.2
Michael Niedermayer 8 years ago
parent
commit
f34dc82d56
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/takdec.c

+ 1
- 1
libavcodec/takdec.c View File

@@ -904,7 +904,7 @@ static int tak_decode_frame(AVCodecContext *avctx, void *data,
for (chan = 0; chan < avctx->channels; chan++) { for (chan = 0; chan < avctx->channels; chan++) {
int32_t *samples = (int32_t *)frame->extended_data[chan]; int32_t *samples = (int32_t *)frame->extended_data[chan];
for (i = 0; i < s->nb_samples; i++) for (i = 0; i < s->nb_samples; i++)
samples[i] <<= 8;
samples[i] *= 1 << 8;
} }
break; break;
} }


Loading…
Cancel
Save