@@ -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" | |||||
"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), | .priv_size = sizeof(StabData), | ||||
.init = init, | .init = init, | ||||
.uninit = uninit, | .uninit = uninit, | ||||
@@ -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" | |||||
"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), | .priv_size = sizeof(TransformContext), | ||||
.init = init, | .init = init, | ||||
.uninit = uninit, | .uninit = uninit, | ||||