diff options
author | Clément Bœsch <u@pkh.me> | 2015-09-08 23:46:12 +0200 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2015-09-08 23:46:12 +0200 |
commit | fa83b551610d784afd74ea2e6cd506d465bc5453 (patch) | |
tree | 6a401278fc1a58fc37331f94daa94bbbb39be1bb | |
parent | 7a29d10839f0ce5177226368c433eed422355b31 (diff) | |
download | ffmpeg-fa83b551610d784afd74ea2e6cd506d465bc5453.tar.gz |
avfilter/crop: use AV_OPT_TYPE_BOOL for keep_aspect option
-rw-r--r-- | libavfilter/vf_crop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_crop.c b/libavfilter/vf_crop.c index 5679a44436..b695a6ffe1 100644 --- a/libavfilter/vf_crop.c +++ b/libavfilter/vf_crop.c @@ -342,7 +342,7 @@ static const AVOption crop_options[] = { { "h", "set the height crop area expression", OFFSET(h_expr), AV_OPT_TYPE_STRING, {.str = "ih"}, CHAR_MIN, CHAR_MAX, FLAGS }, { "x", "set the x crop area expression", OFFSET(x_expr), AV_OPT_TYPE_STRING, {.str = "(in_w-out_w)/2"}, CHAR_MIN, CHAR_MAX, FLAGS }, { "y", "set the y crop area expression", OFFSET(y_expr), AV_OPT_TYPE_STRING, {.str = "(in_h-out_h)/2"}, CHAR_MIN, CHAR_MAX, FLAGS }, - { "keep_aspect", "keep aspect ratio", OFFSET(keep_aspect), AV_OPT_TYPE_INT, {.i64=0}, 0, 1, FLAGS }, + { "keep_aspect", "keep aspect ratio", OFFSET(keep_aspect), AV_OPT_TYPE_BOOL, {.i64=0}, 0, 1, FLAGS }, { NULL } }; |