diff options
author | wm4 <wm4@nowhere> | 2013-05-16 23:12:52 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2013-05-17 00:16:27 +0200 |
commit | 883d03fffd961bdb47ac8d256cb42a6c56cd5cda (patch) | |
tree | 6ed1d72753b07e3ab381699e94c2ee7900463850 | |
parent | f9ed43077f2878420268bdf8aec23b2688a168c0 (diff) | |
download | mpv-883d03fffd961bdb47ac8d256cb42a6c56cd5cda.tar.bz2 mpv-883d03fffd961bdb47ac8d256cb42a6c56cd5cda.tar.xz |
cfg-mplayer: fix some option flags
-rw-r--r-- | core/cfg-mplayer.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/cfg-mplayer.h b/core/cfg-mplayer.h index 8eb5234f3f..52c1e4891c 100644 --- a/core/cfg-mplayer.h +++ b/core/cfg-mplayer.h @@ -533,7 +533,7 @@ const m_option_t mplayer_opts[]={ OPT_STRINGLIST("ao", audio_driver_list, 0), OPT_FLAG("fixed-vo", fixed_vo, CONF_GLOBAL), OPT_FLAG("ontop", vo.ontop, 0), - OPT_FLAG("border", vo.border, 1), + OPT_FLAG("border", vo.border, 0), OPT_STRING("mixer", mixer_device, 0), OPT_STRING("mixer-channel", mixer_channel, 0), @@ -618,7 +618,7 @@ const m_option_t mplayer_opts[]={ OPT_INTRANGE("contrast", gamma_contrast, 0, -100, 100), OPT_INTRANGE("hue", gamma_hue, 0, -100, 100), OPT_INTRANGE("gamma", gamma_gamma, 0, -100, 100), - OPT_FLAG("keepaspect", vo.keepaspect, 1), + OPT_FLAG("keepaspect", vo.keepaspect, 0), //---------------------- mplayer-only options ------------------------ @@ -690,7 +690,7 @@ const m_option_t mplayer_opts[]={ OPT_FLAG("idle", player_idle_mode, CONF_GLOBAL), OPT_INTRANGE("key-fifo-size", input.key_fifo_size, CONF_GLOBAL, 2, 65000), OPT_FLAG("consolecontrols", consolecontrols, CONF_GLOBAL), - OPT_FLAG("mouse-movements", vo.enable_mouse_movements, 1), + OPT_FLAG("mouse-movements", vo.enable_mouse_movements, CONF_GLOBAL), OPT_INTRANGE("doubleclick-time", doubleclick_time, 0, 0, 1000), #ifdef CONFIG_TV {"tvscan", (void *) tvscan_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL}, |