avcodec/screenpresso: Optimize sum_delta_flipped()

553 -> 332 sec

Testcase: 20280/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_SCREENPRESSO_fuzzer-6238663432470528

Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
pull/343/head
Michael Niedermayer 5 years ago
parent 6e8e8431e1
commit 20916f9bc4
  1. 3
      libavcodec/screenpresso.c

@ -94,8 +94,9 @@ static void sum_delta_flipped(uint8_t *dst, int dst_linesize,
{ {
int i; int i;
for (; height > 0; height--) { for (; height > 0; height--) {
const uint8_t *src1 = &src[(height - 1) * src_linesize];
for (i = 0; i < bytewidth; i++) for (i = 0; i < bytewidth; i++)
dst[i] += src[(height - 1) * src_linesize + i]; dst[i] += src1[i];
dst += dst_linesize; dst += dst_linesize;
} }
} }

Loading…
Cancel
Save