summaryrefslogtreecommitdiff
path: root/libavcodec/flacdsp_template.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2020-02-01 22:52:13 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2020-04-07 18:29:20 +0200
commit3935c891e96c0819439da43d1b862652bbbdf065 (patch)
tree8d2d873114ea4fe2e6a95f63d23b78a638547662 /libavcodec/flacdsp_template.c
parent8dee1d7a302221ad0b5a3f11f3766f828c89c78e (diff)
avcodec/flacdsp_template: Fix invalid shifts in decorrelate
Fixes: left shift of negative value -2 Fixes: 20303/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_FLAC_fuzzer-5096829297623040 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/flacdsp_template.c')
-rw-r--r--libavcodec/flacdsp_template.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/flacdsp_template.c b/libavcodec/flacdsp_template.c
index 776c78da71..892418cddc 100644
--- a/libavcodec/flacdsp_template.c
+++ b/libavcodec/flacdsp_template.c
@@ -66,8 +66,8 @@ static void FUNC(flac_decorrelate_ls_c)(uint8_t **out, int32_t **in,
int i;
for (i = 0; i < len; i++) {
- int a = in[0][i];
- int b = in[1][i];
+ unsigned a = in[0][i];
+ unsigned b = in[1][i];
S(samples, 0, i) = a << shift;
S(samples, 1, i) = (a - b) << shift;
}
@@ -80,8 +80,8 @@ static void FUNC(flac_decorrelate_rs_c)(uint8_t **out, int32_t **in,
int i;
for (i = 0; i < len; i++) {
- int a = in[0][i];
- int b = in[1][i];
+ unsigned a = in[0][i];
+ unsigned b = in[1][i];
S(samples, 0, i) = (a + b) << shift;
S(samples, 1, i) = b << shift;
}
@@ -94,7 +94,7 @@ static void FUNC(flac_decorrelate_ms_c)(uint8_t **out, int32_t **in,
int i;
for (i = 0; i < len; i++) {
- int a = in[0][i];
+ unsigned a = in[0][i];
int b = in[1][i];
a -= b >> 1;
S(samples, 0, i) = (a + b) << shift;