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/vf_setfield.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'libavfilter/vf_setfield.c') diff --git a/libavfilter/vf_setfield.c b/libavfilter/vf_setfield.c index c45dbf3100..63c80caca4 100644 --- a/libavfilter/vf_setfield.c +++ b/libavfilter/vf_setfield.c @@ -69,9 +69,9 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *picref) static const AVFilterPad setfield_inputs[] = { { - .name = "default", - .type = AVMEDIA_TYPE_VIDEO, - .filter_frame = filter_frame, + .name = "default", + .type = AVMEDIA_TYPE_VIDEO, + .filter_frame = filter_frame, }, { NULL } }; @@ -85,10 +85,10 @@ static const AVFilterPad setfield_outputs[] = { }; AVFilter avfilter_vf_setfield = { - .name = "setfield", + .name = "setfield", .description = NULL_IF_CONFIG_SMALL("Force field for the output video frame."), - .priv_size = sizeof(SetFieldContext), - .inputs = setfield_inputs, - .outputs = setfield_outputs, - .priv_class = &setfield_class, + .priv_size = sizeof(SetFieldContext), + .priv_class = &setfield_class, + .inputs = setfield_inputs, + .outputs = setfield_outputs, }; -- cgit v1.2.3