From b211607b5c97b9f0c30764c0abacc90abd9a4cc2 Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Sat, 7 Sep 2013 12:13:50 +0000 Subject: avfilter: various cosmetics Signed-off-by: Paul B Mahol --- libavfilter/af_volumedetect.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'libavfilter/af_volumedetect.c') diff --git a/libavfilter/af_volumedetect.c b/libavfilter/af_volumedetect.c index da1fb4ba10..20e5a352e7 100644 --- a/libavfilter/af_volumedetect.c +++ b/libavfilter/af_volumedetect.c @@ -133,9 +133,9 @@ static av_cold void uninit(AVFilterContext *ctx) static const AVFilterPad volumedetect_inputs[] = { { - .name = "default", - .type = AVMEDIA_TYPE_AUDIO, - .filter_frame = filter_frame, + .name = "default", + .type = AVMEDIA_TYPE_AUDIO, + .filter_frame = filter_frame, }, { NULL } }; @@ -151,7 +151,6 @@ static const AVFilterPad volumedetect_outputs[] = { AVFilter avfilter_af_volumedetect = { .name = "volumedetect", .description = NULL_IF_CONFIG_SMALL("Detect audio volume."), - .priv_size = sizeof(VolDetectContext), .query_formats = query_formats, .uninit = uninit, -- cgit v1.2.1