summaryrefslogtreecommitdiffstats
path: root/cfg-mplayer.h
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-11-14 00:26:28 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-11-14 00:26:28 +0000
commit5728504c7f36da65ffcd9b5d65362a189d4e2a2c (patch)
tree1ef8a07a6453349fffccdd961ee77ebf7e5a52d1 /cfg-mplayer.h
parent503e4ff9c0e0738332db1c32a138baef3321ef6b (diff)
downloadmpv-5728504c7f36da65ffcd9b5d65362a189d4e2a2c.tar.bz2
mpv-5728504c7f36da65ffcd9b5d65362a189d4e2a2c.tar.xz
RTC support, softsleep and optional new timing code by Dap
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2890 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'cfg-mplayer.h')
-rw-r--r--cfg-mplayer.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/cfg-mplayer.h b/cfg-mplayer.h
index 57b36c33a9..2292eafff3 100644
--- a/cfg-mplayer.h
+++ b/cfg-mplayer.h
@@ -216,6 +216,12 @@ struct config conf[]={
{"skin", &skinName, CONF_TYPE_STRING, 0, 0, 0},
#endif
+ {"playlist", &playlist_file, CONF_TYPE_STRING, 0, 0, 0},
+ {"dapsync", &dapsync, CONF_TYPE_FLAG, 0, 0, 1},
+ {"nodapsync", &dapsync, CONF_TYPE_FLAG, 0, 1, 0},
+ {"softsleep", &softsleep, CONF_TYPE_FLAG, 0, 0, 1},
+
+
#define MAIN_CONF
#include "cfg-common.h"
#undef MAIN_CONF
@@ -226,6 +232,5 @@ struct config conf[]={
{"-help", help_text, CONF_TYPE_PRINT, CONF_NOCFG, 0, 0},
{"help", help_text, CONF_TYPE_PRINT, CONF_NOCFG, 0, 0},
{"h", help_text, CONF_TYPE_PRINT, CONF_NOCFG, 0, 0},
- {"playlist", &playlist_file, CONF_TYPE_STRING, 0, 0, 0},
{NULL, NULL, 0, 0, 0, 0}
};