summaryrefslogtreecommitdiff
path: root/libavfilter/vf_pad.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2010-07-03 19:41:22 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-07-03 19:41:22 +0000
commit478b9d74d4ad42a1cfa822fe32bbd27975feb86b (patch)
treeb969600629d04cb535c80bfa37bad66997a703c6 /libavfilter/vf_pad.c
parentf2a30bd84071eeb5000dd916ec16418851686254 (diff)
Enhance pad filter command-line description.
Based on a patch by John Calcote $name.$surname@gmail.com. Originally committed as revision 24030 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 786546de83..d4b7cecd3e 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 = NULL_IF_CONFIG_SMALL("Add paddings to the input image."),
+ .description = NULL_IF_CONFIG_SMALL("Pad input image to width:height[:x:y[:color]] (default x and y: 0, default color: black)."),
.priv_size = sizeof(PadContext),
.init = init,