From 2e79db01414b43e4dee26ad7834ba2f74fc6320a Mon Sep 17 00:00:00 2001
From: Stefano Sabatini <stefano.sabatini-lala@poste.it>
Date: Wed, 30 Jun 2010 23:52:28 +0000
Subject: [PATCH] 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
---
 libavfilter/vf_pad.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavfilter/vf_pad.c b/libavfilter/vf_pad.c
index 4499399dd6c..55e83f78829 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,
-- 
GitLab