summaryrefslogtreecommitdiff
path: root/libavfilter/vf_hflip.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavfilter/vf_hflip.c')
-rw-r--r--libavfilter/vf_hflip.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/libavfilter/vf_hflip.c b/libavfilter/vf_hflip.c
index 09f4e08ea3..9f5958a392 100644
--- a/libavfilter/vf_hflip.c
+++ b/libavfilter/vf_hflip.c
@@ -26,7 +26,6 @@
#include <string.h>
-#include "libavutil/opt.h"
#include "avfilter.h"
#include "formats.h"
#include "hflip.h"
@@ -38,12 +37,6 @@
#include "libavutil/intreadwrite.h"
#include "libavutil/imgutils.h"
-static const AVOption hflip_options[] = {
- { NULL }
-};
-
-AVFILTER_DEFINE_CLASS(hflip);
-
static int query_formats(AVFilterContext *ctx)
{
AVFilterFormats *pix_fmts = NULL;
@@ -155,7 +148,6 @@ const AVFilter ff_vf_hflip = {
.name = "hflip",
.description = NULL_IF_CONFIG_SMALL("Horizontally flip the input video."),
.priv_size = sizeof(FlipContext),
- .priv_class = &hflip_class,
FILTER_INPUTS(avfilter_vf_hflip_inputs),
FILTER_OUTPUTS(ff_video_default_filterpad),
FILTER_QUERY_FUNC(query_formats),