summaryrefslogtreecommitdiff
path: root/libavfilter/avf_showwaves.c
diff options
context:
space:
mode:
authorClément Bœsch <clement@stupeflix.com>2015-11-21 22:04:54 +0100
committerClément Bœsch <clement@stupeflix.com>2015-12-04 15:37:06 +0100
commit0e62b5d1ef1312adb2c4815fcd59c5bcd6dc4419 (patch)
treeda0fb45774fa983b6d64c5e35772f041d4627e7c /libavfilter/avf_showwaves.c
parentfb99ef0bd39a1859d0e65c6c16caa8e17dd3cfbe (diff)
avfilter: use AV_OPT_TYPE_BOOL in a bunch of places
Diffstat (limited to 'libavfilter/avf_showwaves.c')
-rw-r--r--libavfilter/avf_showwaves.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/avf_showwaves.c b/libavfilter/avf_showwaves.c
index 77ff913f3a..4c46d8e920 100644
--- a/libavfilter/avf_showwaves.c
+++ b/libavfilter/avf_showwaves.c
@@ -436,7 +436,7 @@ AVFilter ff_avf_showwaves = {
static const AVOption showwavespic_options[] = {
{ "size", "set video size", OFFSET(w), AV_OPT_TYPE_IMAGE_SIZE, {.str = "600x240"}, 0, 0, FLAGS },
{ "s", "set video size", OFFSET(w), AV_OPT_TYPE_IMAGE_SIZE, {.str = "600x240"}, 0, 0, FLAGS },
- { "split_channels", "draw channels separately", OFFSET(split_channels), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 1, FLAGS },
+ { "split_channels", "draw channels separately", OFFSET(split_channels), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, FLAGS },
{ NULL }
};