diff mbox series

[FFmpeg-devel,1/4] lavfi/vf_v360: drop nonsense inline specifier

Message ID 20220519134728.15354-1-anton@khirnov.net
State Accepted
Commit 58bb83c7edfd0e1e160cb836a2cc5f2ff3500cce
Headers show
Series [FFmpeg-devel,1/4] lavfi/vf_v360: drop nonsense inline specifier | expand

Checks

Context Check Description
yinshiyou/make_loongarch64 success Make finished
yinshiyou/make_fate_loongarch64 success Make fate finished
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished

Commit Message

Anton Khirnov May 19, 2022, 1:47 p.m. UTC
This function is always called indirectly, it cannot be inlined.
---
 libavfilter/vf_v360.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Anton Khirnov May 24, 2022, 11:57 a.m. UTC | #1
set approved by Paul on IRC and pushed with trivial changes
diff mbox series

Patch

diff --git a/libavfilter/vf_v360.c b/libavfilter/vf_v360.c
index 7f377dd8f2..8f36d207c9 100644
--- a/libavfilter/vf_v360.c
+++ b/libavfilter/vf_v360.c
@@ -4239,7 +4239,7 @@  static void set_dimensions(int *outw, int *outh, int w, int h, const AVPixFmtDes
 }
 
 // Calculate remap data
-static av_always_inline int v360_slice(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
+static int v360_slice(AVFilterContext *ctx, void *arg, int jobnr, int nb_jobs)
 {
     V360Context *s = ctx->priv;
     SliceXYRemap *r = &s->slice_remap[jobnr];