]> git.sesse.net Git - ffmpeg/commitdiff
Add missing uses of NULL_IF_CONFIG_SMALL for the filters descriptions.
authorStefano Sabatini <stefano.sabatini-lala@poste.it>
Fri, 24 Sep 2010 20:41:14 +0000 (20:41 +0000)
committerStefano Sabatini <stefano.sabatini-lala@poste.it>
Fri, 24 Sep 2010 20:41:14 +0000 (20:41 +0000)
Originally committed as revision 25182 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavfilter/vf_format.c
libavfilter/vf_libopencv.c
libavfilter/vf_pixdesctest.c
libavfilter/vf_scale.c
libavfilter/vf_slicify.c
libavfilter/vsink_nullsink.c
libavfilter/vsrc_nullsrc.c

index 36b7d337ecb515ea7076a0ac7158c011af71252c..5e2c09915802af568541d1b9450559486692aa1f 100644 (file)
@@ -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,
 
index 55e49e137795ceef0c6db228cc54cd4cc401da64..c2b59627a8393541a822648e1cc7e869b0ae265b 100644 (file)
@@ -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),
 
index 8779ee0938db35a7b61998831e49d30d3077b46e..1d2f971f039ab0b521ceb172dc184997cc088813 100644 (file)
@@ -109,7 +109,7 @@ static void draw_slice(AVFilterLink *inlink, int y, int h, int slice_dir)
 
 AVFilter avfilter_vf_pixdesctest = {
     .name        = "pixdesctest",
-    .description = "Test pixel format definitions.",
+    .description = NULL_IF_CONFIG_SMALL("Test pixel format definitions."),
 
     .priv_size = sizeof(PixdescTestContext),
     .uninit    = uninit,
index 902060f8c804e29815e5adcd7df9c10beed6efa2..15801970e6f5d0da60a328d9719925edbaf58ab6 100644 (file)
@@ -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,
index dadfd26d8b43f246324f9e8ecc7ec504f1e539dd..82406fe18a3b9a9acbf12d5c81f631f64c027b91 100644 (file)
@@ -97,7 +97,7 @@ static void draw_slice(AVFilterLink *link, int y, int h, int slice_dir)
 
 AVFilter avfilter_vf_slicify = {
     .name      = "slicify",
-    .description = "Pass the images of input video on to next video filter as multiple slices.",
+    .description = NULL_IF_CONFIG_SMALL("Pass the images of input video on to next video filter as multiple slices."),
 
     .init      = init,
 
index 1dea2008e634e53e10a7b0dafcdebb55955c25dd..0998bd0f8968b5d660f86bfaca2877c890ea78fb 100644 (file)
@@ -28,7 +28,7 @@ static void end_frame(AVFilterLink *link)
 
 AVFilter avfilter_vsink_nullsink = {
     .name        = "nullsink",
-    .description = "Do absolutely nothing with the input video.",
+    .description = NULL_IF_CONFIG_SMALL("Do absolutely nothing with the input video."),
 
     .priv_size = 0,
 
index 43561991272d404bb3bda7cec18468525afa5be6..372cae33418cb88a23bc6278a2469f0f568bf73a 100644 (file)
@@ -64,7 +64,7 @@ static int request_frame(AVFilterLink *link)
 
 AVFilter avfilter_vsrc_nullsrc = {
     .name        = "nullsrc",
-    .description = "Null video source, never return images.",
+    .description = NULL_IF_CONFIG_SMALL("Null video source, never return images."),
 
     .init       = init,
     .priv_size = sizeof(NullContext),