diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-05-03 07:14:49 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-05-06 05:19:49 +0200 |
commit | 364fab1fdcf9fe9490302352b755713679143e7c (patch) | |
tree | 7758b309fd34be12472359c059c83eba58ddec0a /libavfilter/blend.h | |
parent | ea398201f9db227ee5ff19158b34448aae0a3b5c (diff) | |
download | ffmpeg-364fab1fdcf9fe9490302352b755713679143e7c.tar.gz |
avfilter/vf_blend: Move ff_blend_init into a header
This removes a dependency of checkasm on lavfi/vf_blend.o
and also allows to inline ff_blend_init() irrespectively of
interposing.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter/blend.h')
-rw-r--r-- | libavfilter/blend.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavfilter/blend.h b/libavfilter/blend.h index ff417650cf..b046e062bc 100644 --- a/libavfilter/blend.h +++ b/libavfilter/blend.h @@ -81,7 +81,6 @@ typedef struct FilterParams { struct FilterParams *param, double *values, int starty); } FilterParams; -void ff_blend_init(FilterParams *param, int depth); void ff_blend_init_x86(FilterParams *param, int depth); #endif /* AVFILTER_BLEND_H */ |