[FFmpeg-cvslog] lavfi: fix mp and mandelbrot descriptions to make them complete sentences

Stefano Sabatini git at videolan.org
Sat Jan 21 14:45:36 CET 2012


ffmpeg | branch: master | Stefano Sabatini <stefasab at gmail.com> | Fri Jan 20 14:16:49 2012 +0100| [a9117c755ec87f2e5fa9cd88d94713ee26031092] | committer: Stefano Sabatini

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

This is consistent with the other filter descriptions.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a9117c755ec87f2e5fa9cd88d94713ee26031092
---

 libavfilter/vf_mp.c           |    2 +-
 libavfilter/vsrc_mandelbrot.c |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavfilter/vf_mp.c b/libavfilter/vf_mp.c
index a61f086..8cc93f7 100644
--- a/libavfilter/vf_mp.c
+++ b/libavfilter/vf_mp.c
@@ -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,
diff --git a/libavfilter/vsrc_mandelbrot.c b/libavfilter/vsrc_mandelbrot.c
index f0ac7e1..27f6671 100644
--- a/libavfilter/vsrc_mandelbrot.c
+++ b/libavfilter/vsrc_mandelbrot.c
@@ -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,



More information about the ffmpeg-cvslog mailing list