summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2021-04-25 20:12:13 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2021-06-18 18:58:25 +0200
commit88fc295838b3cf16b43c0bbea5766fe92b18dd17 (patch)
tree4694fc35103510a06bb89e8923b2a3938f777002
parent1ca00b5e44f21840b608e238fa135a1aab6e576b (diff)
avformat/pp_bnk: Use 64bit in bitrate computation
Fixes: signed integer overflow: 1207959552 * 4 cannot be represented in type 'int' Fixes: 29102/clusterfuzz-testcase-minimized-ffmpeg_dem_PP_BNK_fuzzer-6747301169201152 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--libavformat/pp_bnk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/pp_bnk.c b/libavformat/pp_bnk.c
index 9455a575b7..18961e301a 100644
--- a/libavformat/pp_bnk.c
+++ b/libavformat/pp_bnk.c
@@ -223,7 +223,7 @@ static int pp_bnk_read_header(AVFormatContext *s)
par->bits_per_coded_sample = 4;
par->bits_per_raw_sample = 16;
par->block_align = 1;
- par->bit_rate = par->sample_rate * par->bits_per_coded_sample * par->channels;
+ par->bit_rate = par->sample_rate * (int64_t)par->bits_per_coded_sample * par->channels;
avpriv_set_pts_info(st, 64, 1, par->sample_rate);
st->start_time = 0;