diff options
author | Mans Rullgard <mans@mansr.com> | 2012-09-16 12:58:49 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2012-09-17 14:35:06 +0100 |
commit | 1fce361d70296cb9f8828f58bf26cd1ce4e8a47a (patch) | |
tree | 00e96b6d6ea36b266dc7d107bfd506002485ffd9 /libavfilter/af_amix.c | |
parent | 2f34021d57b1343bb01b377a4797bef7cbc7be3c (diff) | |
download | ffmpeg-1fce361d70296cb9f8828f58bf26cd1ce4e8a47a.tar.gz |
lavfi: replace empty input/output lists with null pointers
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavfilter/af_amix.c')
-rw-r--r-- | libavfilter/af_amix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/af_amix.c b/libavfilter/af_amix.c index a2eb911b4b..202d67541c 100644 --- a/libavfilter/af_amix.c +++ b/libavfilter/af_amix.c @@ -556,7 +556,7 @@ AVFilter avfilter_af_amix = { .uninit = uninit, .query_formats = query_formats, - .inputs = (const AVFilterPad[]) {{ .name = NULL}}, + .inputs = NULL, .outputs = (const AVFilterPad[]) {{ .name = "default", .type = AVMEDIA_TYPE_AUDIO, .config_props = config_output, |