summaryrefslogtreecommitdiff
path: root/libavfilter/vf_format.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2010-09-24 20:41:14 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-09-24 20:41:14 +0000
commita6881c6a385284f89188b11021a13cc7c592c4f9 (patch)
tree1d1632e8d95a4c57228567d264d9ae803e658c7f /libavfilter/vf_format.c
parent120119225a5363f89822addb472085631d2157bc (diff)
Add missing uses of NULL_IF_CONFIG_SMALL for the filters descriptions.
Originally committed as revision 25182 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/vf_format.c')
-rw-r--r--libavfilter/vf_format.c4
1 files changed, 2 insertions, 2 deletions
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,