diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-05-03 07:19:35 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-05-06 05:19:49 +0200 |
commit | 24936a9fbb220a7ba4b1f3a80ceeca68f4f5f7d4 (patch) | |
tree | b3ed25ccebdcdcc51a69cb290a83637815fc8741 /tests/checkasm/vf_gblur.c | |
parent | 8cd57648d113827da046a5361c2497a3e4413acb (diff) | |
download | ffmpeg-24936a9fbb220a7ba4b1f3a80ceeca68f4f5f7d4.tar.gz |
avfilter/vf_gblur: Move ff_gblur_init into a header
This removes a dependency of checkasm on lavfi/vf_gblur.o
and also allows to inline ff_gblur_init() irrespectively of
interposing.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'tests/checkasm/vf_gblur.c')
-rw-r--r-- | tests/checkasm/vf_gblur.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/checkasm/vf_gblur.c b/tests/checkasm/vf_gblur.c index a7a1c1a24e..3686a6c9f6 100644 --- a/tests/checkasm/vf_gblur.c +++ b/tests/checkasm/vf_gblur.c @@ -19,7 +19,7 @@ #include <float.h> #include <string.h> #include "checkasm.h" -#include "libavfilter/gblur.h" +#include "libavfilter/vf_gblur_init.h" #define WIDTH 256 #define HEIGHT 256 |