From 7d01533371aac2ee91fce29b2ec1c6c8a8790cff Mon Sep 17 00:00:00 2001 From: Paul B Mahol Date: Thu, 6 Jun 2013 17:19:16 +0000 Subject: [PATCH] lavfi/framestep: cosmetics: reindent AVFilter Signed-off-by: Paul B Mahol --- libavfilter/vf_framestep.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libavfilter/vf_framestep.c b/libavfilter/vf_framestep.c index fbbb899483..5c38d90859 100644 --- a/libavfilter/vf_framestep.c +++ b/libavfilter/vf_framestep.c @@ -91,11 +91,11 @@ static const AVFilterPad framestep_outputs[] = { }; AVFilter avfilter_vf_framestep = { - .name = "framestep", + .name = "framestep", .description = NULL_IF_CONFIG_SMALL("Select one frame every N frames."), - .priv_size = sizeof(FrameStepContext), - .priv_class = &framestep_class, - .inputs = framestep_inputs, - .outputs = framestep_outputs, + .priv_size = sizeof(FrameStepContext), + .priv_class = &framestep_class, + .inputs = framestep_inputs, + .outputs = framestep_outputs, .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC, };