[FFmpeg-cvslog] lavfi/pad, crop, scale: remove options description from filter description

Paul B Mahol git at videolan.org
Sat Sep 21 14:51:03 CEST 2013


ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Thu Sep 19 17:39:08 2013 +0000| [59d72f8b16472fa962f7305577d0dd33dd3f5a49] | committer: Paul B Mahol

lavfi/pad,crop,scale: remove options description from filter description

Signed-off-by: Paul B Mahol <onemda at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=59d72f8b16472fa962f7305577d0dd33dd3f5a49
---

 libavfilter/vf_crop.c  |    2 +-
 libavfilter/vf_pad.c   |    2 +-
 libavfilter/vf_scale.c |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/libavfilter/vf_crop.c b/libavfilter/vf_crop.c
index a342e9b..f9ffc8e 100644
--- a/libavfilter/vf_crop.c
+++ b/libavfilter/vf_crop.c
@@ -334,7 +334,7 @@ static const AVFilterPad avfilter_vf_crop_outputs[] = {
 
 AVFilter avfilter_vf_crop = {
     .name          = "crop",
-    .description   = NULL_IF_CONFIG_SMALL("Crop the input video to width:height:x:y."),
+    .description   = NULL_IF_CONFIG_SMALL("Crop the input video."),
     .priv_size     = sizeof(CropContext),
     .priv_class    = &crop_class,
     .query_formats = query_formats,
diff --git a/libavfilter/vf_pad.c b/libavfilter/vf_pad.c
index 45b32e6..823c6f0 100644
--- a/libavfilter/vf_pad.c
+++ b/libavfilter/vf_pad.c
@@ -394,7 +394,7 @@ static const AVFilterPad avfilter_vf_pad_outputs[] = {
 
 AVFilter avfilter_vf_pad = {
     .name          = "pad",
-    .description   = NULL_IF_CONFIG_SMALL("Pad input image to width:height[:x:y[:color]] (default x and y: 0, default color: black)."),
+    .description   = NULL_IF_CONFIG_SMALL("Pad the input video."),
     .priv_size     = sizeof(PadContext),
     .priv_class    = &pad_class,
     .query_formats = query_formats,
diff --git a/libavfilter/vf_scale.c b/libavfilter/vf_scale.c
index 9115c23..21c9d13 100644
--- a/libavfilter/vf_scale.c
+++ b/libavfilter/vf_scale.c
@@ -569,7 +569,7 @@ static const AVFilterPad avfilter_vf_scale_outputs[] = {
 
 AVFilter avfilter_vf_scale = {
     .name          = "scale",
-    .description   = NULL_IF_CONFIG_SMALL("Scale the input video to width:height size and/or convert the image format."),
+    .description   = NULL_IF_CONFIG_SMALL("Scale the input video size and/or convert the image format."),
     .init_dict     = init_dict,
     .uninit        = uninit,
     .query_formats = query_formats,



More information about the ffmpeg-cvslog mailing list