diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-05-03 07:21:52 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-05-06 05:19:50 +0200 |
commit | fbe4e825d8001bb6677589c327ea097db4a97db4 (patch) | |
tree | ba16856267583ee7b763eaef39a25eaf540c937b /libavfilter/hflip.h | |
parent | 24936a9fbb220a7ba4b1f3a80ceeca68f4f5f7d4 (diff) | |
download | ffmpeg-fbe4e825d8001bb6677589c327ea097db4a97db4.tar.gz |
avfilter/vf_hflip: Move ff_hflip_init into a header
This removes a dependency of checkasm on lavfi/vf_hflip.o
and also allows to inline ff_hflip_init() irrespectively of
interposing.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter/hflip.h')
-rw-r--r-- | libavfilter/hflip.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavfilter/hflip.h b/libavfilter/hflip.h index a40b98470b..8532dc0f46 100644 --- a/libavfilter/hflip.h +++ b/libavfilter/hflip.h @@ -34,7 +34,6 @@ typedef struct FlipContext { void (*flip_line[4])(const uint8_t *src, uint8_t *dst, int w); } FlipContext; -int ff_hflip_init(FlipContext *s, int step[4], int nb_planes); void ff_hflip_init_x86(FlipContext *s, int step[4], int nb_planes); #endif /* AVFILTER_HFLIP_H */ |