diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2019-06-16 15:55:55 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2019-06-26 21:26:04 +0200 |
commit | ebccd2f778a861b41ad38a8464ea120d4f16b2d7 (patch) | |
tree | 689cba6e1fba96f8f8399b368ec14638dea84538 | |
parent | 2921b45a388a81968d946996bb32e72d7bb5d5b7 (diff) | |
download | ffmpeg-ebccd2f778a861b41ad38a8464ea120d4f16b2d7.tar.gz |
avcodec/tta: Fix undefined shift
Fixes: left shift of negative value -4483
Fixes: 15256/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_TTA_fuzzer-5738691617619968
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavcodec/tta.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/tta.c b/libavcodec/tta.c index 8f097b3bcc..c7702610b6 100644 --- a/libavcodec/tta.c +++ b/libavcodec/tta.c @@ -372,7 +372,7 @@ static int tta_decode_frame(AVCodecContext *avctx, void *data, // shift samples for 24-bit sample format int32_t *samples = (int32_t *)frame->data[0]; for (i = 0; i < framelen * s->channels; i++) - *samples++ <<= 8; + *samples++ *= 256; // reset decode buffer s->decode_buffer = NULL; break; |