diff mbox series

[FFmpeg-devel,1/2] avcodec/agm: Mark fill_pixels() as av_always_inline

Message ID 20200811083215.27797-1-michael@niedermayer.cc
State Accepted
Commit 6d7e522103f3b36103f30329ea3ce152223f8329
Headers show
Series [FFmpeg-devel,1/2] avcodec/agm: Mark fill_pixels() as av_always_inline | expand

Checks

Context Check Description
andriy/default pending
andriy/make success Make finished
andriy/make_fate success Make fate finished

Commit Message

Michael Niedermayer Aug. 11, 2020, 8:32 a.m. UTC
Speedup from 275sec to 142sec
Testcase: 24426/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_AGM_fuzzer-5639724379930624

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
---
 libavcodec/agm.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Michael Niedermayer Aug. 11, 2020, 12:17 p.m. UTC | #1
On Tue, Aug 11, 2020 at 10:45:46AM +0200, Paul B Mahol wrote:
> LGTM

will apply

thx

[...]
diff mbox series

Patch

diff --git a/libavcodec/agm.c b/libavcodec/agm.c
index bc9dfc02f3..19490c5456 100644
--- a/libavcodec/agm.c
+++ b/libavcodec/agm.c
@@ -591,7 +591,7 @@  static int decode_raw_intra_rgb(AVCodecContext *avctx, GetByteContext *gbyte, AV
     return 0;
 }
 
-static int fill_pixels(uint8_t **y0, uint8_t **y1,
+av_always_inline static int fill_pixels(uint8_t **y0, uint8_t **y1,
                        uint8_t **u, uint8_t **v,
                        int ylinesize, int ulinesize, int vlinesize,
                        uint8_t *fill,