mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-03 05:10:03 +02:00
avcodec/truemotion2: Fix integer overflow in tm2_decode_blocks()
Fixes: signed integer overflow: 255 + 2147483634 cannot be represented in type 'int'
Fixes: 13472/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_TRUEMOTION2_fuzzer-5712444142387200
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit 0ad0533e91
)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
b5229a0b3e
commit
6a0895bdf3
@ -828,7 +828,7 @@ static int tm2_decode_blocks(TM2Context *ctx, AVFrame *p)
|
||||
dst = p->data[0];
|
||||
for (j = 0; j < h; j++) {
|
||||
for (i = 0; i < w; i++) {
|
||||
int y = Y[i], u = U[i >> 1], v = V[i >> 1];
|
||||
unsigned y = Y[i], u = U[i >> 1], v = V[i >> 1];
|
||||
dst[3*i+0] = av_clip_uint8(y + v);
|
||||
dst[3*i+1] = av_clip_uint8(y);
|
||||
dst[3*i+2] = av_clip_uint8(y + u);
|
||||
|
Loading…
Reference in New Issue
Block a user