summaryrefslogtreecommitdiff
path: root/libavfilter/vf_deshake.c
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2012-12-06 16:16:42 +0100
committerClément Bœsch <ubitux@gmail.com>2012-12-06 16:20:31 +0100
commiteaa47e745492c8368384c7aec987a7c8799417c4 (patch)
tree586314a6654841469d3915efcbc56e9c09c8c052 /libavfilter/vf_deshake.c
parent03778575b99fd04e95a03786f5109e5d8293eb13 (diff)
lavfi/deshake: small align prettifying.
Diffstat (limited to 'libavfilter/vf_deshake.c')
-rw-r--r--libavfilter/vf_deshake.c12
1 files 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,