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:
authorPaul B Mahol <onemda@gmail.com>2013-09-19 21:39:08 +0400
committerPaul B Mahol <onemda@gmail.com>2013-09-21 16:50:02 +0400
commit59d72f8b16472fa962f7305577d0dd33dd3f5a49 (patch)
treeaf3cc25bb0afc1d435ebda3aa1c1850ac55bd6c7 /libavfilter/vf_crop.c
parent8ac0eb2cd7ce2f9cd16be56bf979d8c9a7e49131 (diff)
lavfi/pad,crop,scale: remove options description from filter description
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavfilter/vf_crop.c')
-rw-r--r--libavfilter/vf_crop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_crop.c b/libavfilter/vf_crop.c
index a342e9b4bf..f9ffc8e262 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,