aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/scpr.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2019-07-30 00:52:18 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2020-01-06 11:30:42 +0100
commit21b72d8f6c9cb0cb96dab939b28523f9019f8aff (patch)
tree631fe9d98b8f03c5d980ae1f1b1421263d70edab /libavcodec/scpr.c
parent40c0a5a5fac1564eac53140ef1f62868560cb407 (diff)
downloadffmpeg-21b72d8f6c9cb0cb96dab939b28523f9019f8aff.tar.gz
avcodec/scpr: Use av_memcpy_backptr() in type 17 and 33
This makes the changed code-path faster. Change not tested except with the fuzzer testcase as I found no other testcase. Improves: Timeout (136sec -> 74sec) Improves: 16040/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_SCPR_fuzzer-5705876062601216 Reviewed-by: Paul B Mahol <onemda@gmail.com> Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg (cherry picked from commit 950a21e83c742714d6afbecd3e3fd1887e80fa40) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/scpr.c')
-rw-r--r--libavcodec/scpr.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/libavcodec/scpr.c b/libavcodec/scpr.c
index 5714e25170..297fb315e2 100644
--- a/libavcodec/scpr.c
+++ b/libavcodec/scpr.c
@@ -781,7 +781,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
s->current_frame->linesize[0] / 4);
} else if (type == 17) {
uint32_t clr, *dst = (uint32_t *)s->current_frame->data[0];
- int x, y;
+ int y;
frame->key_frame = 1;
bytestream2_skip(gb, 1);
@@ -797,9 +797,8 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
clr = bytestream2_get_le24(gb);
}
for (y = 0; y < avctx->height; y++) {
- for (x = 0; x < avctx->width; x++) {
- dst[x] = clr;
- }
+ dst[0] = clr;
+ av_memcpy_backptr((uint8_t*)(dst+1), 4, 4*avctx->width - 4);
dst += s->current_frame->linesize[0] / 4;
}
} else if (type == 0 || type == 1) {