summaryrefslogtreecommitdiffstats
path: root/cfg-mplayer.h
diff options
context:
space:
mode:
authoracki2 <acki2@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-06-17 20:38:02 +0000
committeracki2 <acki2@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-06-17 20:38:02 +0000
commit8493d8711b33aec7ffc7dbb10df3f49b2fcc1186 (patch)
tree9e8061b091cfbbe6df0146a8704f790d7c16ee34 /cfg-mplayer.h
parente3e885d7cd12f53a2f85c128630b1d165b047bce (diff)
downloadmpv-8493d8711b33aec7ffc7dbb10df3f49b2fcc1186.tar.bz2
mpv-8493d8711b33aec7ffc7dbb10df3f49b2fcc1186.tar.xz
- new config option -lircconfig (config file for lirc)
- new config option -(no)double (disable/enable doublebuffering in libvo) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@1150 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'cfg-mplayer.h')
-rw-r--r--cfg-mplayer.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/cfg-mplayer.h b/cfg-mplayer.h
index 34961ea9c9..69cffa93de 100644
--- a/cfg-mplayer.h
+++ b/cfg-mplayer.h
@@ -23,6 +23,11 @@ extern char *sdl_adriver;
extern int fakemono; // defined in dec_audio.c
#endif
+#ifdef HAVE_LIRC
+extern char *lirc_configfile;
+#endif
+
+extern int vo_doublebuffering;
extern int vo_dbpp;
extern int osd_level;
extern int sub_unicode;
@@ -150,6 +155,11 @@ struct config conf[]={
{"noflip", &flip, CONF_TYPE_FLAG, 0, -1, 0},
{"bpp", &vo_dbpp, CONF_TYPE_INT, CONF_RANGE, 0, 32},
+ {"double", &vo_doublebuffering, CONF_TYPE_FLAG, 0, 0, 1},
+ {"nodouble", &vo_doublebuffering, CONF_TYPE_FLAG, 0, 1, 0},
+#ifdef HAVE_LIRC
+ {"lircconf", &lirc_configfile, CONF_TYPE_STRING, 0, 0, 0},
+#endif
{"noidx", &index_mode, CONF_TYPE_FLAG, 0, -1, 0},
{"idx", &index_mode, CONF_TYPE_FLAG, 0, -1, 1},