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 01:11:05 +0300
committerClément Bœsch <u@pkh.me>2015-09-09 01:11:05 +0300
commitf5436ebe22e95c2a0cf46a3be33d85d80f7d9926 (patch)
tree6fa1dfd13825091b50683f1939995400d0d97045 /libavfilter/vf_fspp.c
parent96651e41b0ec715f0d2e60d670dfa47dc078929a (diff)
avfilter/fspp: use AV_OPT_TYPE_BOOL for use_bframe_qp option
Diffstat (limited to 'libavfilter/vf_fspp.c')
-rw-r--r--libavfilter/vf_fspp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_fspp.c b/libavfilter/vf_fspp.c
index 7bdaa91b06..e346294eee 100644
--- a/libavfilter/vf_fspp.c
+++ b/libavfilter/vf_fspp.c
@@ -48,7 +48,7 @@ static const AVOption fspp_options[] = {
{ "quality", "set quality", OFFSET(log2_count), AV_OPT_TYPE_INT, {.i64 = 4}, 4, MAX_LEVEL, FLAGS },
{ "qp", "force a constant quantizer parameter", OFFSET(qp), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 64, FLAGS },
{ "strength", "set filter strength", OFFSET(strength), AV_OPT_TYPE_INT, {.i64 = 0}, -15, 32, FLAGS },
- { "use_bframe_qp", "use B-frames' QP", OFFSET(use_bframe_qp), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 1, FLAGS },
+ { "use_bframe_qp", "use B-frames' QP", OFFSET(use_bframe_qp), AV_OPT_TYPE_BOOL,{.i64 = 0}, 0, 1, FLAGS },
{ NULL }
};