[FFmpeg-cvslog] avcodec/agm: Mark fill_pixels() as av_always_inline

Michael Niedermayer git at videolan.org
Tue Aug 11 15:22:16 EEST 2020


ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Mon Aug 10 23:47:29 2020 +0200| [6d7e522103f3b36103f30329ea3ce152223f8329] | committer: Michael Niedermayer

avcodec/agm: Mark fill_pixels() as av_always_inline

Speedup from 275sec to 142sec
Testcase: 24426/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_AGM_fuzzer-5639724379930624

Reviewed-by: Paul B Mahol <onemda at gmail.com>
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=6d7e522103f3b36103f30329ea3ce152223f8329
---

 libavcodec/agm.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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,



More information about the ffmpeg-cvslog mailing list