summaryrefslogtreecommitdiffstats
path: root/video/out/vo_tct.c
diff options
context:
space:
mode:
Diffstat (limited to 'video/out/vo_tct.c')
-rw-r--r--video/out/vo_tct.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/video/out/vo_tct.c b/video/out/vo_tct.c
index 8018a6ba72..ddd27d0380 100644
--- a/video/out/vo_tct.c
+++ b/video/out/vo_tct.c
@@ -58,12 +58,12 @@ struct vo_tct_opts {
#define OPT_BASE_STRUCT struct vo_tct_opts
static const struct m_sub_options vo_tct_conf = {
.opts = (const m_option_t[]) {
- OPT_CHOICE("vo-tct-algo", algo, 0,
- ({"plain", ALGO_PLAIN},
- {"half-blocks", ALGO_HALF_BLOCKS})),
- OPT_INT("vo-tct-width", width, 0),
- OPT_INT("vo-tct-height", height, 0),
- OPT_FLAG("vo-tct-256", term256, 0),
+ {"vo-tct-algo", OPT_CHOICE(algo,
+ {"plain", ALGO_PLAIN},
+ {"half-blocks", ALGO_HALF_BLOCKS})},
+ {"vo-tct-width", OPT_INT(width)},
+ {"vo-tct-height", OPT_INT(height)},
+ {"vo-tct-256", OPT_FLAG(term256)},
{0}
},
.defaults = &(const struct vo_tct_opts) {