avfilter: various cosmetics

Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
Paul B Mahol
2013-09-07 12:13:50 +00:00
parent ba5e77814e
commit b211607b5c
109 changed files with 750 additions and 896 deletions

View File

@@ -29,8 +29,8 @@
static const AVFilterPad avfilter_af_anull_inputs[] = {
{
.name = "default",
.type = AVMEDIA_TYPE_AUDIO,
.name = "default",
.type = AVMEDIA_TYPE_AUDIO,
},
{ NULL }
};
@@ -44,9 +44,9 @@ static const AVFilterPad avfilter_af_anull_outputs[] = {
};
AVFilter avfilter_af_anull = {
.name = "anull",
.description = NULL_IF_CONFIG_SMALL("Pass the source unchanged to the output."),
.name = "anull",
.description = NULL_IF_CONFIG_SMALL("Pass the source unchanged to the output."),
.query_formats = ff_query_formats_all,
.inputs = avfilter_af_anull_inputs,
.outputs = avfilter_af_anull_outputs,
.inputs = avfilter_af_anull_inputs,
.outputs = avfilter_af_anull_outputs,
};