From a6881c6a385284f89188b11021a13cc7c592c4f9 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Fri, 24 Sep 2010 20:41:14 +0000 Subject: Add missing uses of NULL_IF_CONFIG_SMALL for the filters descriptions. Originally committed as revision 25182 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavfilter/vf_format.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavfilter/vf_format.c') diff --git a/libavfilter/vf_format.c b/libavfilter/vf_format.c index 36b7d337ec..5e2c099158 100644 --- a/libavfilter/vf_format.c +++ b/libavfilter/vf_format.c @@ -94,7 +94,7 @@ static int query_formats_format(AVFilterContext *ctx) AVFilter avfilter_vf_format = { .name = "format", - .description = "Convert the input video to one of the specified pixel formats.", + .description = NULL_IF_CONFIG_SMALL("Convert the input video to one of the specified pixel formats."), .init = init, @@ -124,7 +124,7 @@ static int query_formats_noformat(AVFilterContext *ctx) AVFilter avfilter_vf_noformat = { .name = "noformat", - .description = "Force libavfilter not to use any of the specified pixel formats for the input to the next filter.", + .description = NULL_IF_CONFIG_SMALL("Force libavfilter not to use any of the specified pixel formats for the input to the next filter."), .init = init, -- cgit v1.2.3