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

lavfi/vidstab: consistent descriptions.

parent 01705126
...@@ -223,9 +223,9 @@ static const AVFilterPad avfilter_vf_vidstabdetect_outputs[] = { ...@@ -223,9 +223,9 @@ static const AVFilterPad avfilter_vf_vidstabdetect_outputs[] = {
AVFilter avfilter_vf_vidstabdetect = { AVFilter avfilter_vf_vidstabdetect = {
.name = "vidstabdetect", .name = "vidstabdetect",
.description = NULL_IF_CONFIG_SMALL("pass 1 of 2 for stabilization" .description = NULL_IF_CONFIG_SMALL("Extract relative transformations, "
"extracts relative transformations" "pass 1 of 2 for stabilization "
"(pass 2 see vidstabtransform)"), "(see vidstabtransform for pass 2)."),
.priv_size = sizeof(StabData), .priv_size = sizeof(StabData),
.init = init, .init = init,
.uninit = uninit, .uninit = uninit,
......
...@@ -278,9 +278,9 @@ static const AVFilterPad avfilter_vf_vidstabtransform_outputs[] = { ...@@ -278,9 +278,9 @@ static const AVFilterPad avfilter_vf_vidstabtransform_outputs[] = {
AVFilter avfilter_vf_vidstabtransform = { AVFilter avfilter_vf_vidstabtransform = {
.name = "vidstabtransform", .name = "vidstabtransform",
.description = NULL_IF_CONFIG_SMALL("pass 2 of stabilization" .description = NULL_IF_CONFIG_SMALL("Transform the frames, "
"transforms the frames" "pass 2 of 2 for stabilization "
"(see vidstabdetect for pass 1)"), "(see vidstabdetect for pass 1)."),
.priv_size = sizeof(TransformContext), .priv_size = sizeof(TransformContext),
.init = init, .init = init,
.uninit = uninit, .uninit = uninit,
......
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