[SCM] libav/experimental: Add missing uses of NULL_IF_CONFIG_SMALL for the filters descriptions.
siretart at users.alioth.debian.org
siretart at users.alioth.debian.org
Sun Jun 30 17:16:08 UTC 2013
The following commit has been merged in the experimental branch:
commit a6881c6a385284f89188b11021a13cc7c592c4f9
Author: Stefano Sabatini <stefano.sabatini-lala at poste.it>
Date: Fri Sep 24 20:41:14 2010 +0000
Add missing uses of NULL_IF_CONFIG_SMALL for the filters descriptions.
Originally committed as revision 25182 to svn://svn.ffmpeg.org/ffmpeg/trunk
diff --git a/libavfilter/vf_format.c b/libavfilter/vf_format.c
index 36b7d33..5e2c099 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,
diff --git a/libavfilter/vf_libopencv.c b/libavfilter/vf_libopencv.c
index 55e49e1..c2b5962 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),
diff --git a/libavfilter/vf_pixdesctest.c b/libavfilter/vf_pixdesctest.c
index 8779ee0..1d2f971 100644
--- a/libavfilter/vf_pixdesctest.c
+++ b/libavfilter/vf_pixdesctest.c
@@ -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,
diff --git a/libavfilter/vf_scale.c b/libavfilter/vf_scale.c
index 902060f..1580197 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,
diff --git a/libavfilter/vf_slicify.c b/libavfilter/vf_slicify.c
index dadfd26..82406fe 100644
--- a/libavfilter/vf_slicify.c
+++ b/libavfilter/vf_slicify.c
@@ -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,
diff --git a/libavfilter/vsink_nullsink.c b/libavfilter/vsink_nullsink.c
index 1dea200..0998bd0 100644
--- a/libavfilter/vsink_nullsink.c
+++ b/libavfilter/vsink_nullsink.c
@@ -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,
diff --git a/libavfilter/vsrc_nullsrc.c b/libavfilter/vsrc_nullsrc.c
index 4356199..372cae3 100644
--- a/libavfilter/vsrc_nullsrc.c
+++ b/libavfilter/vsrc_nullsrc.c
@@ -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),
--
Libav/FFmpeg packaging
More information about the pkg-multimedia-commits
mailing list