[FFmpeg-cvslog] avfilter/vignette: use AV_OPT_TYPE_BOOL for dither option
Clément Bœsch
git at videolan.org
Wed Sep 9 01:02:15 CEST 2015
ffmpeg | branch: master | Clément Bœsch <u at pkh.me> | Wed Sep 9 01:02:07 2015 +0200| [9f4e096496132f3d42252f04187ad07234913c31] | committer: Clément Bœsch
avfilter/vignette: use AV_OPT_TYPE_BOOL for dither option
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9f4e096496132f3d42252f04187ad07234913c31
---
libavfilter/vf_vignette.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavfilter/vf_vignette.c b/libavfilter/vf_vignette.c
index c1bafa8..54515e6 100644
--- a/libavfilter/vf_vignette.c
+++ b/libavfilter/vf_vignette.c
@@ -90,7 +90,7 @@ static const AVOption vignette_options[] = {
{ "eval", "specify when to evaluate expressions", OFFSET(eval_mode), AV_OPT_TYPE_INT, {.i64 = EVAL_MODE_INIT}, 0, EVAL_MODE_NB-1, FLAGS, "eval" },
{ "init", "eval expressions once during initialization", 0, AV_OPT_TYPE_CONST, {.i64=EVAL_MODE_INIT}, .flags = FLAGS, .unit = "eval" },
{ "frame", "eval expressions for each frame", 0, AV_OPT_TYPE_CONST, {.i64=EVAL_MODE_FRAME}, .flags = FLAGS, .unit = "eval" },
- { "dither", "set dithering", OFFSET(do_dither), AV_OPT_TYPE_INT, {.i64 = 1}, 0, 1, FLAGS },
+ { "dither", "set dithering", OFFSET(do_dither), AV_OPT_TYPE_BOOL, {.i64 = 1}, 0, 1, FLAGS },
{ "aspect", "set aspect ratio", OFFSET(aspect), AV_OPT_TYPE_RATIONAL, {.dbl = 1}, 0, DBL_MAX, .flags = FLAGS },
{ NULL }
};
More information about the ffmpeg-cvslog
mailing list