summaryrefslogtreecommitdiff
path: root/libavfilter/vf_scale.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_scale.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_scale.c')
-rw-r--r--libavfilter/vf_scale.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_scale.c b/libavfilter/vf_scale.c
index 902060f8c8..15801970e6 100644
--- a/libavfilter/vf_scale.c
+++ b/libavfilter/vf_scale.c
@@ -197,7 +197,7 @@ static void draw_slice(AVFilterLink *link, int y, int h, int slice_dir)
AVFilter avfilter_vf_scale = {
.name = "scale",
- .description = "Scale the input video to width:height size and/or convert the image format.",
+ .description = NULL_IF_CONFIG_SMALL("Scale the input video to width:height size and/or convert the image format."),
.init = init,
.uninit = uninit,