[FFmpeg-cvslog] lavfi/crop: fix help message for the keep_aspect option
Stefano Sabatini
git at videolan.org
Sat Feb 2 15:35:25 CET 2013
ffmpeg | branch: master | Stefano Sabatini <stefasab at gmail.com> | Sat Feb 2 00:41:24 2013 +0100| [fd6b6efbd212fc235c7a511ae37161869c1fa79f] | committer: Stefano Sabatini
lavfi/crop: fix help message for the keep_aspect option
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=fd6b6efbd212fc235c7a511ae37161869c1fa79f
---
libavfilter/vf_crop.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavfilter/vf_crop.c b/libavfilter/vf_crop.c
index 1ff9493..8df9595 100644
--- a/libavfilter/vf_crop.c
+++ b/libavfilter/vf_crop.c
@@ -102,7 +102,7 @@ static const AVOption crop_options[] = {
{ "w", "set the width crop area expression", OFFSET(w_expr), AV_OPT_TYPE_STRING, {.str = "iw"}, CHAR_MIN, CHAR_MAX, FLAGS },
{ "out_h", "set the height crop area expression", OFFSET(h_expr), AV_OPT_TYPE_STRING, {.str = "ih"}, CHAR_MIN, CHAR_MAX, FLAGS },
{ "h", "set the height crop area expression", OFFSET(h_expr), AV_OPT_TYPE_STRING, {.str = "ih"}, CHAR_MIN, CHAR_MAX, FLAGS },
- { "keep_aspect", "force packed RGB in input and output", OFFSET(keep_aspect), AV_OPT_TYPE_INT, {.i64=0}, 0, 1, FLAGS },
+ { "keep_aspect", "keep aspect ratio", OFFSET(keep_aspect), AV_OPT_TYPE_INT, {.i64=0}, 0, 1, FLAGS },
{NULL}
};
More information about the ffmpeg-cvslog
mailing list