[FFmpeg-cvslog] r25182 - in trunk/libavfilter: vf_format.c vf_libopencv.c vf_pixdesctest.c vf_scale.c vf_slicify.c vsink_nullsink.c vsrc_nullsrc.c

stefano subversion
Fri Sep 24 22:41:15 CEST 2010


Author: stefano
Date: Fri Sep 24 22:41:14 2010
New Revision: 25182

Log:
Add missing uses of NULL_IF_CONFIG_SMALL for the filters descriptions.

Modified:
   trunk/libavfilter/vf_format.c
   trunk/libavfilter/vf_libopencv.c
   trunk/libavfilter/vf_pixdesctest.c
   trunk/libavfilter/vf_scale.c
   trunk/libavfilter/vf_slicify.c
   trunk/libavfilter/vsink_nullsink.c
   trunk/libavfilter/vsrc_nullsrc.c

Modified: trunk/libavfilter/vf_format.c
==============================================================================
--- trunk/libavfilter/vf_format.c	Fri Sep 24 22:01:38 2010	(r25181)
+++ trunk/libavfilter/vf_format.c	Fri Sep 24 22:41:14 2010	(r25182)
@@ -94,7 +94,7 @@ static int query_formats_format(AVFilter
 
 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(AVFilt
 
 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,
 

Modified: trunk/libavfilter/vf_libopencv.c
==============================================================================
--- trunk/libavfilter/vf_libopencv.c	Fri Sep 24 22:01:38 2010	(r25181)
+++ trunk/libavfilter/vf_libopencv.c	Fri Sep 24 22:41:14 2010	(r25182)
@@ -134,7 +134,7 @@ static void smooth_end_frame(AVFilterLin
 
 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),
 

Modified: trunk/libavfilter/vf_pixdesctest.c
==============================================================================
--- trunk/libavfilter/vf_pixdesctest.c	Fri Sep 24 22:01:38 2010	(r25181)
+++ trunk/libavfilter/vf_pixdesctest.c	Fri Sep 24 22:41:14 2010	(r25182)
@@ -109,7 +109,7 @@ static void draw_slice(AVFilterLink *inl
 
 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,

Modified: trunk/libavfilter/vf_scale.c
==============================================================================
--- trunk/libavfilter/vf_scale.c	Fri Sep 24 22:01:38 2010	(r25181)
+++ trunk/libavfilter/vf_scale.c	Fri Sep 24 22:41:14 2010	(r25182)
@@ -197,7 +197,7 @@ static void draw_slice(AVFilterLink *lin
 
 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,

Modified: trunk/libavfilter/vf_slicify.c
==============================================================================
--- trunk/libavfilter/vf_slicify.c	Fri Sep 24 22:01:38 2010	(r25181)
+++ trunk/libavfilter/vf_slicify.c	Fri Sep 24 22:41:14 2010	(r25182)
@@ -97,7 +97,7 @@ static void draw_slice(AVFilterLink *lin
 
 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,
 

Modified: trunk/libavfilter/vsink_nullsink.c
==============================================================================
--- trunk/libavfilter/vsink_nullsink.c	Fri Sep 24 22:01:38 2010	(r25181)
+++ trunk/libavfilter/vsink_nullsink.c	Fri Sep 24 22:41:14 2010	(r25182)
@@ -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,
 

Modified: trunk/libavfilter/vsrc_nullsrc.c
==============================================================================
--- trunk/libavfilter/vsrc_nullsrc.c	Fri Sep 24 22:01:38 2010	(r25181)
+++ trunk/libavfilter/vsrc_nullsrc.c	Fri Sep 24 22:41:14 2010	(r25182)
@@ -64,7 +64,7 @@ static int request_frame(AVFilterLink *l
 
 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),



More information about the ffmpeg-cvslog mailing list