summaryrefslogtreecommitdiff
path: root/libavfilter/af_channelsplit.c
diff options
context:
space:
mode:
authorMans Rullgard <mans@mansr.com>2012-09-16 12:58:49 +0100
committerMans Rullgard <mans@mansr.com>2012-09-17 14:35:06 +0100
commit1fce361d70296cb9f8828f58bf26cd1ce4e8a47a (patch)
tree00e96b6d6ea36b266dc7d107bfd506002485ffd9 /libavfilter/af_channelsplit.c
parent2f34021d57b1343bb01b377a4797bef7cbc7be3c (diff)
lavfi: replace empty input/output lists with null pointers
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavfilter/af_channelsplit.c')
-rw-r--r--libavfilter/af_channelsplit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/af_channelsplit.c b/libavfilter/af_channelsplit.c
index 68615aa609..fc044d0f87 100644
--- a/libavfilter/af_channelsplit.c
+++ b/libavfilter/af_channelsplit.c
@@ -148,5 +148,5 @@ AVFilter avfilter_af_channelsplit = {
.type = AVMEDIA_TYPE_AUDIO,
.filter_samples = filter_samples, },
{ NULL }},
- .outputs = (const AVFilterPad[]){{ NULL }},
+ .outputs = NULL,
};