diff cfg-mplayer.h @ 1149:6a0f937b52e6

- new config option -lircconfig (config file for lirc) - new config option -(no)double (disable/enable doublebuffering in libvo)
author acki2
date Sun, 17 Jun 2001 20:38:02 +0000
parents 0e95f30ffd4c
children 9a8058213061
line wrap: on
line diff
--- a/cfg-mplayer.h	Sun Jun 17 18:33:05 2001 +0000
+++ b/cfg-mplayer.h	Sun Jun 17 20:38:02 2001 +0000
@@ -23,6 +23,11 @@
 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 @@
         {"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},