[FFmpeg-cvslog] avfilter/showvolume: use AV_OPT_TYPE_BOOL for channel name displaying option (t)
Clément Bœsch
git at videolan.org
Tue Sep 8 23:30:52 CEST 2015
ffmpeg | branch: master | Clément Bœsch <u at pkh.me> | Tue Sep 8 23:28:44 2015 +0200| [286d625b43bda4fc232037bba9f71088fc1c2a7a] | committer: Clément Bœsch
avfilter/showvolume: use AV_OPT_TYPE_BOOL for channel name displaying option (t)
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=286d625b43bda4fc232037bba9f71088fc1c2a7a
---
libavfilter/avf_showvolume.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavfilter/avf_showvolume.c b/libavfilter/avf_showvolume.c
index 24f3c14..9accfb0 100644
--- a/libavfilter/avf_showvolume.c
+++ b/libavfilter/avf_showvolume.c
@@ -53,7 +53,7 @@ static const AVOption showvolume_options[] = {
{ "h", "set channel height", OFFSET(h), AV_OPT_TYPE_INT, {.i64=20}, 1, 100, FLAGS },
{ "f", "set fade", OFFSET(f), AV_OPT_TYPE_INT, {.i64=20}, 1, 255, FLAGS },
{ "c", "set volume color expression", OFFSET(color), AV_OPT_TYPE_STRING, {.str="if(gte(VOLUME,-2), if(gte(VOLUME,-1),0xff0000ff, 0xff00ffff),0xff00ff00)"}, 0, 0, FLAGS },
- { "t", "display channel names", OFFSET(draw_text), AV_OPT_TYPE_INT, {.i64=1}, 0, 1, FLAGS },
+ { "t", "display channel names", OFFSET(draw_text), AV_OPT_TYPE_BOOL, {.i64=1}, 0, 1, FLAGS },
{ NULL }
};
More information about the ffmpeg-cvslog
mailing list