diff options
author | Paul B Mahol <onemda@gmail.com> | 2013-09-07 12:13:50 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2013-09-12 14:01:43 +0000 |
commit | b211607b5c97b9f0c30764c0abacc90abd9a4cc2 (patch) | |
tree | fe3da9fa93ad64df397efb2f6b8da74a617e39ab /libavfilter/af_anull.c | |
parent | ba5e77814e5cb60d8476b831cdb6223cea98a7d4 (diff) | |
download | ffmpeg-b211607b5c97b9f0c30764c0abacc90abd9a4cc2.tar.gz |
avfilter: various cosmetics
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavfilter/af_anull.c')
-rw-r--r-- | libavfilter/af_anull.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libavfilter/af_anull.c b/libavfilter/af_anull.c index 7a0b3f70d7..09791a7aa4 100644 --- a/libavfilter/af_anull.c +++ b/libavfilter/af_anull.c @@ -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, }; |