diff options
author | Mans Rullgard <mans@mansr.com> | 2012-07-24 14:14:01 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2012-10-10 22:26:12 +0100 |
commit | 568c70e79ee267426c15ef4603c69703f6a5884a (patch) | |
tree | f5898fd564b41f8b200cdddc71c2dc5a5fd90642 /libavfilter/buffersrc.c | |
parent | b404c6605627dbbc07d680803e1a3f70cb4704a0 (diff) | |
download | ffmpeg-568c70e79ee267426c15ef4603c69703f6a5884a.tar.gz |
lavfi: convert input/ouput list compound literals to named objects
A number of compilers, for example those from TI and IBM, choke on
these initialisers. The current style is also quite ugly.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavfilter/buffersrc.c')
-rw-r--r-- | libavfilter/buffersrc.c | 36 |
1 files changed, 24 insertions, 12 deletions
diff --git a/libavfilter/buffersrc.c b/libavfilter/buffersrc.c index b33aa0aba9..2157ec8a1f 100644 --- a/libavfilter/buffersrc.c +++ b/libavfilter/buffersrc.c @@ -355,6 +355,17 @@ static int poll_frame(AVFilterLink *link) return size/sizeof(AVFilterBufferRef*); } +static const AVFilterPad avfilter_vsrc_buffer_outputs[] = { + { + .name = "default", + .type = AVMEDIA_TYPE_VIDEO, + .request_frame = request_frame, + .poll_frame = poll_frame, + .config_props = config_props, + }, + { NULL } +}; + AVFilter avfilter_vsrc_buffer = { .name = "buffer", .description = NULL_IF_CONFIG_SMALL("Buffer video frames, and make them accessible to the filterchain."), @@ -365,12 +376,18 @@ AVFilter avfilter_vsrc_buffer = { .uninit = uninit, .inputs = NULL, - .outputs = (const AVFilterPad[]) {{ .name = "default", - .type = AVMEDIA_TYPE_VIDEO, - .request_frame = request_frame, - .poll_frame = poll_frame, - .config_props = config_props, }, - { .name = NULL}}, + .outputs = avfilter_vsrc_buffer_outputs, +}; + +static const AVFilterPad avfilter_asrc_abuffer_outputs[] = { + { + .name = "default", + .type = AVMEDIA_TYPE_AUDIO, + .request_frame = request_frame, + .poll_frame = poll_frame, + .config_props = config_props, + }, + { NULL } }; AVFilter avfilter_asrc_abuffer = { @@ -383,10 +400,5 @@ AVFilter avfilter_asrc_abuffer = { .uninit = uninit, .inputs = NULL, - .outputs = (const AVFilterPad[]) {{ .name = "default", - .type = AVMEDIA_TYPE_AUDIO, - .request_frame = request_frame, - .poll_frame = poll_frame, - .config_props = config_props, }, - { .name = NULL}}, + .outputs = avfilter_asrc_abuffer_outputs, }; |