lavfi/deshake: small align prettifying.

This commit is contained in:
Clément Bœsch 2012-12-06 16:16:42 +01:00
parent 03778575b9
commit eaa47e7454
1 changed files with 5 additions and 7 deletions

View File

@ -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,