mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-04-19 09:02:26 +02:00
avcodec/ivi_dsp: Fix multiple left shift of negative value -2
Fixes: 1385/clusterfuzz-testcase-minimized-5552882663292928 Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 9e88cc94e58e9e4d1293f9f56c973510e30495fd) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
bd739bce1c
commit
fca86d3e28
@ -243,7 +243,7 @@ void ff_ivi_recompose_haar(const IVIPlaneDesc *plane, uint8_t *dst,
|
|||||||
#define INV_HAAR8(s1, s5, s3, s7, s2, s4, s6, s8,\
|
#define INV_HAAR8(s1, s5, s3, s7, s2, s4, s6, s8,\
|
||||||
d1, d2, d3, d4, d5, d6, d7, d8,\
|
d1, d2, d3, d4, d5, d6, d7, d8,\
|
||||||
t0, t1, t2, t3, t4, t5, t6, t7, t8) {\
|
t0, t1, t2, t3, t4, t5, t6, t7, t8) {\
|
||||||
t1 = (s1) << 1; t5 = (s5) << 1;\
|
t1 = (s1) * 2; t5 = (s5) * 2;\
|
||||||
IVI_HAAR_BFLY(t1, t5, t1, t5, t0); IVI_HAAR_BFLY(t1, s3, t1, t3, t0);\
|
IVI_HAAR_BFLY(t1, t5, t1, t5, t0); IVI_HAAR_BFLY(t1, s3, t1, t3, t0);\
|
||||||
IVI_HAAR_BFLY(t5, s7, t5, t7, t0); IVI_HAAR_BFLY(t1, s2, t1, t2, t0);\
|
IVI_HAAR_BFLY(t5, s7, t5, t7, t0); IVI_HAAR_BFLY(t1, s2, t1, t2, t0);\
|
||||||
IVI_HAAR_BFLY(t3, s4, t3, t4, t0); IVI_HAAR_BFLY(t5, s6, t5, t6, t0);\
|
IVI_HAAR_BFLY(t3, s4, t3, t4, t0); IVI_HAAR_BFLY(t5, s6, t5, t6, t0);\
|
||||||
@ -284,10 +284,10 @@ void ff_ivi_inverse_haar_8x8(const int32_t *in, int16_t *out, ptrdiff_t pitch,
|
|||||||
if (flags[i]) {
|
if (flags[i]) {
|
||||||
/* pre-scaling */
|
/* pre-scaling */
|
||||||
shift = !(i & 4);
|
shift = !(i & 4);
|
||||||
sp1 = src[ 0] << shift;
|
sp1 = src[ 0] * (1 << shift);
|
||||||
sp2 = src[ 8] << shift;
|
sp2 = src[ 8] * (1 << shift);
|
||||||
sp3 = src[16] << shift;
|
sp3 = src[16] * (1 << shift);
|
||||||
sp4 = src[24] << shift;
|
sp4 = src[24] * (1 << shift);
|
||||||
INV_HAAR8( sp1, sp2, sp3, sp4,
|
INV_HAAR8( sp1, sp2, sp3, sp4,
|
||||||
src[32], src[40], src[48], src[56],
|
src[32], src[40], src[48], src[56],
|
||||||
dst[ 0], dst[ 8], dst[16], dst[24],
|
dst[ 0], dst[ 8], dst[16], dst[24],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user