From 1fce361d70296cb9f8828f58bf26cd1ce4e8a47a Mon Sep 17 00:00:00 2001 From: Mans Rullgard Date: Sun, 16 Sep 2012 12:58:49 +0100 Subject: lavfi: replace empty input/output lists with null pointers Signed-off-by: Mans Rullgard --- libavfilter/af_channelsplit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavfilter/af_channelsplit.c') 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, }; -- cgit v1.2.3