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:
authorClément Bœsch <u@pkh.me>2015-09-09 00:04:13 +0300
committerClément Bœsch <u@pkh.me>2015-09-09 00:04:13 +0300
commit2d7726f7ab6c7939aa76c4ab6b22a9d6b2308c17 (patch)
treee777c21381340fadd5ab728ccc1f503e8f968d96 /libavfilter/vf_rotate.c
parent9571a56009f332c3810fe70a5c5295581256e5d1 (diff)
avfilter/rotate: use AV_OPT_TYPE_BOOL for bilinear option
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 46ab796c7a..f12a103bf9 100644
--- a/libavfilter/vf_rotate.c
+++ b/libavfilter/vf_rotate.c
@@ -101,7 +101,7 @@ static const AVOption rotate_options[] = {
{ "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 },
+ { "bilinear", "use bilinear interpolation", OFFSET(use_bilinear), AV_OPT_TYPE_BOOL, {.i64=1}, 0, 1, .flags=FLAGS },
{ NULL }
};