mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avcodec/dxtory: Fix negative stride shift in dx2_decode_slice_420()
Fixes: left shift of negative value -640
Fixes: 26044/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_DXTORY_fuzzer-5631057602543616
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>
(cherry picked from commit 3291d994b7
)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
ef3fee893d
commit
d9b610ee71
@ -487,7 +487,7 @@ static int dx2_decode_slice_420(GetBitContext *gb, AVFrame *frame,
|
|||||||
V[x >> 1] = decode_sym(gb, lru[2]) ^ 0x80;
|
V[x >> 1] = decode_sym(gb, lru[2]) ^ 0x80;
|
||||||
}
|
}
|
||||||
|
|
||||||
Y += ystride << 1;
|
Y += ystride * 2;
|
||||||
U += ustride;
|
U += ustride;
|
||||||
V += vstride;
|
V += vstride;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user