Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2010-07-01 03:52:28 +0400
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-07-01 03:52:28 +0400
commit2e79db01414b43e4dee26ad7834ba2f74fc6320a (patch)
tree920fdca964687776dafcb6e023de0bf54f4bb05b /libavfilter/vf_pad.c
parenta74f893b85f3091ad56194a8c7556ae76d321f2d (diff)
Set pad description with NULL_IF_CONFIG_SMALL(), consistent with the
other filters. Originally committed as revision 23923 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/vf_pad.c')
-rw-r--r--libavfilter/vf_pad.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_pad.c b/libavfilter/vf_pad.c
index 4499399dd6..55e83f7882 100644
--- a/libavfilter/vf_pad.c
+++ b/libavfilter/vf_pad.c
@@ -306,7 +306,7 @@ static void draw_slice(AVFilterLink *link, int y, int h, int slice_dir)
AVFilter avfilter_vf_pad = {
.name = "pad",
- .description = "Add paddings to the input image.",
+ .description = NULL_IF_CONFIG_SMALL("Add paddings to the input image."),
.priv_size = sizeof(PadContext),
.init = init,