]> git.sesse.net Git - ffmpeg/commitdiff
lavfi: fix mp and mandelbrot descriptions to make them complete sentences
authorStefano Sabatini <stefasab@gmail.com>
Fri, 20 Jan 2012 13:16:49 +0000 (14:16 +0100)
committerStefano Sabatini <stefasab@gmail.com>
Sat, 21 Jan 2012 13:40:46 +0000 (14:40 +0100)
This is consistent with the other filter descriptions.

libavfilter/vf_mp.c
libavfilter/vsrc_mandelbrot.c

index a61f0866c1dd9f3f49442fa00044a0a37c731cd2..8cc93f7d859d868317eb4ae89bd2820c79215bc8 100644 (file)
@@ -878,7 +878,7 @@ static void end_frame(AVFilterLink *inlink)
 
 AVFilter avfilter_vf_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,
     .priv_size = sizeof(MPContext),
     .query_formats = query_formats,
index f0ac7e1bccde7614b6f576fc8d03e265a17d9d37..27f6671f76f6cf2fcbbe055b02019b66efc8dfe0 100644 (file)
@@ -411,7 +411,7 @@ static int request_frame(AVFilterLink *link)
 
 AVFilter avfilter_vsrc_mandelbrot = {
     .name        = "mandelbrot",
-    .description = NULL_IF_CONFIG_SMALL("Mandelbrot fractal renderer."),
+    .description = NULL_IF_CONFIG_SMALL("Render a Mandelbrot fractal."),
 
     .priv_size = sizeof(MBContext),
     .init      = init,