summaryrefslogtreecommitdiff
path: root/libavfilter/vf_framestep.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2013-06-06 17:19:16 +0000
committerPaul B Mahol <onemda@gmail.com>2013-06-06 17:19:16 +0000
commit7d01533371aac2ee91fce29b2ec1c6c8a8790cff (patch)
tree54fb698e6561848dc83a24fd711204b1f1d81a56 /libavfilter/vf_framestep.c
parent27d3d61343eee0613b0500aafe1892075c4fc5e1 (diff)
downloadffmpeg-7d01533371aac2ee91fce29b2ec1c6c8a8790cff.tar.gz
lavfi/framestep: cosmetics: reindent AVFilter
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavfilter/vf_framestep.c')
-rw-r--r--libavfilter/vf_framestep.c10
1 files 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,
};