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/buffersink.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/buffersink.c')
-rw-r--r-- | libavfilter/buffersink.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/buffersink.c b/libavfilter/buffersink.c index d62b08128a..ca732fc936 100644 --- a/libavfilter/buffersink.c +++ b/libavfilter/buffersink.c @@ -152,7 +152,7 @@ AVFilter avfilter_vsink_buffer = { .min_perms = AV_PERM_READ, .needs_fifo = 1 }, { .name = NULL }}, - .outputs = (const AVFilterPad[]) {{ .name = NULL }}, + .outputs = NULL, }; AVFilter avfilter_asink_abuffer = { @@ -167,5 +167,5 @@ AVFilter avfilter_asink_abuffer = { .min_perms = AV_PERM_READ, .needs_fifo = 1 }, { .name = NULL }}, - .outputs = (const AVFilterPad[]) {{ .name = NULL }}, + .outputs = NULL, }; |