Commit 4f7f7073 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/mlpdsp: Fix undefined shift ff_mlp_pack_output()

Fixes: runtime error: left shift of negative value -7862264
Fixes: 4074/clusterfuzz-testcase-minimized-4516104123711488

Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpegSigned-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 2ab9568a
...@@ -117,7 +117,7 @@ int32_t ff_mlp_pack_output(int32_t lossless_check_data, ...@@ -117,7 +117,7 @@ int32_t ff_mlp_pack_output(int32_t lossless_check_data,
(1U << output_shift[mat_ch]); (1U << output_shift[mat_ch]);
lossless_check_data ^= (sample & 0xffffff) << mat_ch; lossless_check_data ^= (sample & 0xffffff) << mat_ch;
if (is32) if (is32)
*data_32++ = sample << 8; *data_32++ = sample * 256;
else else
*data_16++ = sample >> 8; *data_16++ = sample >> 8;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment