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/split.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/split.c')
-rw-r--r-- | libavfilter/split.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/split.c b/libavfilter/split.c index 88224092d6..e5ff0e56dc 100644 --- a/libavfilter/split.c +++ b/libavfilter/split.c @@ -124,7 +124,7 @@ AVFilter avfilter_vf_split = { .draw_slice = draw_slice, .end_frame = end_frame, }, { .name = NULL}}, - .outputs = (const AVFilterPad[]) {{ .name = NULL}}, + .outputs = NULL, }; static int filter_samples(AVFilterLink *inlink, AVFilterBufferRef *samplesref) @@ -160,5 +160,5 @@ AVFilter avfilter_af_asplit = { .get_audio_buffer = ff_null_get_audio_buffer, .filter_samples = filter_samples }, { .name = NULL }}, - .outputs = (const AVFilterPad[]) {{ .name = NULL }}, + .outputs = NULL, }; |