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