[FFmpeg-cvslog] lavfi/deshake: small align prettifying.

Clément Bœsch git at videolan.org
Thu Dec 6 16:20:48 CET 2012


ffmpeg | branch: master | Clément Bœsch <ubitux at gmail.com> | Thu Dec  6 16:16:42 2012 +0100| [eaa47e745492c8368384c7aec987a7c8799417c4] | committer: Clément Bœsch

lavfi/deshake: small align prettifying.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=eaa47e745492c8368384c7aec987a7c8799417c4
---

 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 a12de8e..236c0d4 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,



More information about the ffmpeg-cvslog mailing list