Commit a9117c75 authored by Stefano Sabatini's avatar Stefano Sabatini

lavfi: fix mp and mandelbrot descriptions to make them complete sentences

This is consistent with the other filter descriptions.
parent 8650d5fa
...@@ -878,7 +878,7 @@ static void end_frame(AVFilterLink *inlink) ...@@ -878,7 +878,7 @@ static void end_frame(AVFilterLink *inlink)
AVFilter avfilter_vf_mp = { AVFilter avfilter_vf_mp = {
.name = "mp", .name = "mp",
.description = NULL_IF_CONFIG_SMALL("libmpcodecs wrapper."), .description = NULL_IF_CONFIG_SMALL("Apply a libmpcodecs filter to the input video."),
.init = init, .init = init,
.priv_size = sizeof(MPContext), .priv_size = sizeof(MPContext),
.query_formats = query_formats, .query_formats = query_formats,
......
...@@ -411,7 +411,7 @@ static int request_frame(AVFilterLink *link) ...@@ -411,7 +411,7 @@ static int request_frame(AVFilterLink *link)
AVFilter avfilter_vsrc_mandelbrot = { AVFilter avfilter_vsrc_mandelbrot = {
.name = "mandelbrot", .name = "mandelbrot",
.description = NULL_IF_CONFIG_SMALL("Mandelbrot fractal renderer."), .description = NULL_IF_CONFIG_SMALL("Render a Mandelbrot fractal."),
.priv_size = sizeof(MBContext), .priv_size = sizeof(MBContext),
.init = init, .init = init,
......
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