Commit eaa47e74 authored by Clément Bœsch's avatar Clément Bœsch

lavfi/deshake: small align prettifying.

parent 03778575
...@@ -558,13 +558,11 @@ static const AVFilterPad deshake_outputs[] = { ...@@ -558,13 +558,11 @@ static const AVFilterPad deshake_outputs[] = {
}; };
AVFilter avfilter_vf_deshake = { AVFilter avfilter_vf_deshake = {
.name = "deshake", .name = "deshake",
.description = NULL_IF_CONFIG_SMALL("Stabilize shaky video."), .description = NULL_IF_CONFIG_SMALL("Stabilize shaky video."),
.priv_size = sizeof(DeshakeContext),
.priv_size = sizeof(DeshakeContext), .init = init,
.uninit = uninit,
.init = init,
.uninit = uninit,
.query_formats = query_formats, .query_formats = query_formats,
.inputs = deshake_inputs, .inputs = deshake_inputs,
.outputs = deshake_outputs, .outputs = deshake_outputs,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment