diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2019-09-25 16:48:46 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2019-09-26 21:02:34 +0200 |
commit | 7dc0943d4aa014e616e2f2a4802cb3da829f9420 (patch) | |
tree | b03a60234a4eb4b60fa976851da8920227722f17 /libavcodec/dstdec.c | |
parent | 972a0a818ff7a9b33c7f37e08783f4b6082f9aa2 (diff) | |
download | ffmpeg-streaming-7dc0943d4aa014e616e2f2a4802cb3da829f9420.zip ffmpeg-streaming-7dc0943d4aa014e616e2f2a4802cb3da829f9420.tar.gz |
avcodec/dstdec: Fix integer overflow in samples_per_frame computation
Fixes: Timeout (? -> 2ms)
Fixes: 17616/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_DST_fuzzer-5198057947267072
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/dstdec.c')
-rw-r--r-- | libavcodec/dstdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dstdec.c b/libavcodec/dstdec.c index 0614c99..8a1bc6a 100644 --- a/libavcodec/dstdec.c +++ b/libavcodec/dstdec.c @@ -37,7 +37,7 @@ #define DST_MAX_CHANNELS 6 #define DST_MAX_ELEMENTS (2 * DST_MAX_CHANNELS) -#define DSD_FS44(sample_rate) (sample_rate * 8 / 44100) +#define DSD_FS44(sample_rate) (sample_rate * 8LL / 44100) #define DST_SAMPLES_PER_FRAME(sample_rate) (588 * DSD_FS44(sample_rate)) |