diff options
author | Anton Khirnov <anton@khirnov.net> | 2022-05-17 11:20:46 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2022-05-24 13:39:48 +0200 |
commit | 58bb83c7edfd0e1e160cb836a2cc5f2ff3500cce (patch) | |
tree | 2449e47e3c06427f152a5e2689099ec3ef0f852a /libavfilter/vf_v360.c | |
parent | 60f948dd55641419ab6d92ecd287cc65d52f0d8e (diff) | |
download | ffmpeg-58bb83c7edfd0e1e160cb836a2cc5f2ff3500cce.tar.gz |
lavfi/vf_v360: drop nonsense inline specifier
This function is always called indirectly, it cannot be inlined.
Diffstat (limited to 'libavfilter/vf_v360.c')
-rw-r--r-- | libavfilter/vf_v360.c | 2 |
1 files changed, 1 insertions, 1 deletions
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]; |