From a9117c755ec87f2e5fa9cd88d94713ee26031092 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Fri, 20 Jan 2012 14:16:49 +0100 Subject: [PATCH] lavfi: fix mp and mandelbrot descriptions to make them complete sentences This is consistent with the other filter descriptions. --- 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 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,