Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2022-09-11 01:11:20 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2022-09-26 17:50:57 +0300
commit3cf9bfa0d1bb26a61700d0974372a03138764670 (patch)
treef75064959636404b618bf8e7345a2655b6de4b12
parent900c4ffc487fd639a9353710b7441b6682793284 (diff)
avcodec/tta: Check 24bit scaling for overflow
Fixes: signed integer overflow: -8427924 * 256 cannot be represented in type 'int' Fixes: 48798/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_TTA_fuzzer-5409428670644224 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 3993345f915bccceee315f44d412445346990e14) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r--libavcodec/tta.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/libavcodec/tta.c b/libavcodec/tta.c
index e68e4fbb36..1132e7ba12 100644
--- a/libavcodec/tta.c
+++ b/libavcodec/tta.c
@@ -371,8 +371,15 @@ static int tta_decode_frame(AVCodecContext *avctx, void *data,
case 3: {
// shift samples for 24-bit sample format
int32_t *samples = (int32_t *)frame->data[0];
- for (i = 0; i < framelen * s->channels; i++)
- *samples++ *= 256;
+ int overflow = 0;
+
+ for (i = 0; i < framelen * s->channels; i++) {
+ int scaled = *samples * 256U;
+ overflow += (scaled >> 8 != *samples);
+ *samples++ = scaled;
+ }
+ if (overflow)
+ av_log(avctx, AV_LOG_WARNING, "%d overflows occurred on 24bit upscale\n", overflow);
// reset decode buffer
s->decode_buffer = NULL;
break;