summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2012-01-20 14:16:49 +0100
committerStefano Sabatini <stefasab@gmail.com>2012-01-21 14:40:46 +0100
commita9117c755ec87f2e5fa9cd88d94713ee26031092 (patch)
treee47517a0b7206f976800f7155322ed26fb14d3b3 /libavfilter
parent8650d5faf95e319a59f40e08b2eff67bcbb4bc1a (diff)
lavfi: fix mp and mandelbrot descriptions to make them complete sentences
This is consistent with the other filter descriptions.
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/vf_mp.c2
-rw-r--r--libavfilter/vsrc_mandelbrot.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/vf_mp.c b/libavfilter/vf_mp.c
index a61f0866c1..8cc93f7d85 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 f0ac7e1bcc..27f6671f76 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,