summaryrefslogtreecommitdiffstats
path: root/cfg-mplayer.h
diff options
context:
space:
mode:
authoralbeu <albeu@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-11-16 16:51:48 +0000
committeralbeu <albeu@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-11-16 16:51:48 +0000
commitf99cc19968b2ad92a25c8812fdaf804dd32f43cc (patch)
tree3e9e73542e79417ab9995ae8558f63ea33d25cab /cfg-mplayer.h
parentac00b6bc33afd7398ae1dd0f2ad4e960356fb1a4 (diff)
downloadmpv-f99cc19968b2ad92a25c8812fdaf804dd32f43cc.tar.bz2
mpv-f99cc19968b2ad92a25c8812fdaf804dd32f43cc.tar.xz
Big OSD cleanup. Replace the mess with 100's of counter vars
with a clean and simple interface. As a bonus osd messages can now be displayed on the console if there is no vo (or osd is disabled in libvo). git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16993 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'cfg-mplayer.h')
-rw-r--r--cfg-mplayer.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/cfg-mplayer.h b/cfg-mplayer.h
index 37ca4b4292..20e3f3e826 100644
--- a/cfg-mplayer.h
+++ b/cfg-mplayer.h
@@ -307,6 +307,7 @@ m_option_t mplayer_opts[]={
{"nocrash-debug", &crash_debug, CONF_TYPE_FLAG, CONF_GLOBAL, 1, 0, NULL},
#endif
{"osdlevel", &osd_level, CONF_TYPE_INT, CONF_RANGE, 0, 3, NULL},
+ {"osd-duration", &osd_duration, CONF_TYPE_INT, CONF_MIN, 0, 0, NULL},
#ifdef HAVE_MENU
{"menu", &use_menu, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL},
{"nomenu", &use_menu, CONF_TYPE_FLAG, CONF_GLOBAL, 1, 0, NULL},
@@ -376,6 +377,10 @@ m_option_t mplayer_opts[]={
{"rtc-device", &rtc_device, CONF_TYPE_STRING, 0, 0, 0, NULL},
#endif
+ {"term-osd", &term_osd, CONF_TYPE_FLAG, 0, 0, 1, NULL},
+ {"noterm-osd", &term_osd, CONF_TYPE_FLAG, 0, 0, 0, NULL},
+ {"term-osd-esc", &term_osd_esc, CONF_TYPE_STRING, 0, 0, 1, NULL},
+
{"slave", &slave_mode, CONF_TYPE_FLAG,CONF_GLOBAL , 0, 1, NULL},
{"idle", &player_idle_mode, CONF_TYPE_FLAG,CONF_GLOBAL , 0, 1, NULL},
{"noidle", &player_idle_mode, CONF_TYPE_FLAG,CONF_GLOBAL , 0, 0, NULL},