From eaa47e745492c8368384c7aec987a7c8799417c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20B=C5=93sch?= Date: Thu, 6 Dec 2012 16:16:42 +0100 Subject: [PATCH] lavfi/deshake: small align prettifying. --- libavfilter/vf_deshake.c | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/libavfilter/vf_deshake.c b/libavfilter/vf_deshake.c index a12de8e40f..236c0d494f 100644 --- a/libavfilter/vf_deshake.c +++ b/libavfilter/vf_deshake.c @@ -558,13 +558,11 @@ static const AVFilterPad deshake_outputs[] = { }; AVFilter avfilter_vf_deshake = { - .name = "deshake", - .description = NULL_IF_CONFIG_SMALL("Stabilize shaky video."), - - .priv_size = sizeof(DeshakeContext), - - .init = init, - .uninit = uninit, + .name = "deshake", + .description = NULL_IF_CONFIG_SMALL("Stabilize shaky video."), + .priv_size = sizeof(DeshakeContext), + .init = init, + .uninit = uninit, .query_formats = query_formats, .inputs = deshake_inputs, .outputs = deshake_outputs,