summaryrefslogtreecommitdiff
path: root/libavfilter/vf_libopencv.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_libopencv.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_libopencv.c')
-rw-r--r--libavfilter/vf_libopencv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_libopencv.c b/libavfilter/vf_libopencv.c
index 55e49e1377..c2b59627a8 100644
--- a/libavfilter/vf_libopencv.c
+++ b/libavfilter/vf_libopencv.c
@@ -134,7 +134,7 @@ static void smooth_end_frame(AVFilterLink *inlink)
AVFilter avfilter_vf_ocv_smooth = {
.name = "ocv_smooth",
- .description = "Apply smooth transform using libopencv.",
+ .description = NULL_IF_CONFIG_SMALL("Apply smooth transform using libopencv."),
.priv_size = sizeof(SmoothContext),