summaryrefslogtreecommitdiffstats
path: root/libavfilter/vf_rotate.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2013-09-07 18:34:03 +0000
committerPaul B Mahol <onemda@gmail.com>2013-09-07 18:35:26 +0000
commitd2382903d6f28be8c713c9fa6dbd8f0ab7dab90f (patch)
tree02d4d739ce793f2374456a565ba498c70ab83587 /libavfilter/vf_rotate.c
parentb077d8d9082d057d4c7abd9e0b1a98f9651cfaa8 (diff)
downloadffmpeg-streaming-d2382903d6f28be8c713c9fa6dbd8f0ab7dab90f.zip
ffmpeg-streaming-d2382903d6f28be8c713c9fa6dbd8f0ab7dab90f.tar.gz
avfilter/vf_rotate: fix 'oh' option description
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavfilter/vf_rotate.c')
-rw-r--r--libavfilter/vf_rotate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_rotate.c b/libavfilter/vf_rotate.c
index b967d76..d13f678 100644
--- a/libavfilter/vf_rotate.c
+++ b/libavfilter/vf_rotate.c
@@ -86,7 +86,7 @@ static const AVOption rotate_options[] = {
{ "out_w", "set output width expression", OFFSET(outw_expr_str), AV_OPT_TYPE_STRING, {.str="iw"}, CHAR_MIN, CHAR_MAX, .flags=FLAGS },
{ "ow", "set output width expression", OFFSET(outw_expr_str), AV_OPT_TYPE_STRING, {.str="iw"}, CHAR_MIN, CHAR_MAX, .flags=FLAGS },
{ "out_h", "set output height expression", OFFSET(outh_expr_str), AV_OPT_TYPE_STRING, {.str="ih"}, CHAR_MIN, CHAR_MAX, .flags=FLAGS },
- { "oh", "set output width expression", OFFSET(outh_expr_str), AV_OPT_TYPE_STRING, {.str="ih"}, CHAR_MIN, CHAR_MAX, .flags=FLAGS },
+ { "oh", "set output height expression", OFFSET(outh_expr_str), AV_OPT_TYPE_STRING, {.str="ih"}, CHAR_MIN, CHAR_MAX, .flags=FLAGS },
{ "fillcolor", "set background fill color", OFFSET(fillcolor_str), AV_OPT_TYPE_STRING, {.str="black"}, CHAR_MIN, CHAR_MAX, .flags=FLAGS },
{ "c", "set background fill color", OFFSET(fillcolor_str), AV_OPT_TYPE_STRING, {.str="black"}, CHAR_MIN, CHAR_MAX, .flags=FLAGS },
{ "bilinear", "use bilinear interpolation", OFFSET(use_bilinear), AV_OPT_TYPE_INT, {.i64=1}, 0, 1, .flags=FLAGS },
OpenPOWER on IntegriCloud