summaryrefslogtreecommitdiff
path: root/libavfilter/af_join.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavfilter/af_join.c')
-rw-r--r--libavfilter/af_join.c12
1 files changed, 4 insertions, 8 deletions
diff --git a/libavfilter/af_join.c b/libavfilter/af_join.c
index e0c5cce99d..d670f81c51 100644
--- a/libavfilter/af_join.c
+++ b/libavfilter/af_join.c
@@ -1,5 +1,4 @@
/*
- *
* This file is part of FFmpeg.
*
* FFmpeg is free software; you can redistribute it and/or
@@ -74,7 +73,7 @@ static const AVOption join_options[] = {
{ "map", "A comma-separated list of channels maps in the format "
"'input_stream.input_channel-output_channel.",
OFFSET(map), AV_OPT_TYPE_STRING, .flags = A|F },
- { NULL },
+ { NULL }
};
AVFILTER_DEFINE_CLASS(join);
@@ -513,13 +512,10 @@ AVFilter avfilter_af_join = {
"multi-channel output."),
.priv_size = sizeof(JoinContext),
.priv_class = &join_class,
-
.init = join_init,
.uninit = join_uninit,
.query_formats = join_query_formats,
-
- .inputs = NULL,
- .outputs = avfilter_af_join_outputs,
-
- .flags = AVFILTER_FLAG_DYNAMIC_INPUTS,
+ .inputs = NULL,
+ .outputs = avfilter_af_join_outputs,
+ .flags = AVFILTER_FLAG_DYNAMIC_INPUTS,
};