summaryrefslogtreecommitdiff
path: root/libavfilter/af_axcorrelate.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavfilter/af_axcorrelate.c')
-rw-r--r--libavfilter/af_axcorrelate.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/libavfilter/af_axcorrelate.c b/libavfilter/af_axcorrelate.c
index ffb90fce7f..18fc3004b1 100644
--- a/libavfilter/af_axcorrelate.c
+++ b/libavfilter/af_axcorrelate.c
@@ -326,7 +326,6 @@ static const AVFilterPad inputs[] = {
.name = "axcorrelate1",
.type = AVMEDIA_TYPE_AUDIO,
},
- { NULL }
};
static const AVFilterPad outputs[] = {
@@ -335,7 +334,6 @@ static const AVFilterPad outputs[] = {
.type = AVMEDIA_TYPE_AUDIO,
.config_props = config_output,
},
- { NULL }
};
#define AF AV_OPT_FLAG_AUDIO_PARAM|AV_OPT_FLAG_FILTERING_PARAM
@@ -359,6 +357,6 @@ const AVFilter ff_af_axcorrelate = {
.query_formats = query_formats,
.activate = activate,
.uninit = uninit,
- .inputs = inputs,
- .outputs = outputs,
+ FILTER_INPUTS(inputs),
+ FILTER_OUTPUTS(outputs),
};