comparison cfg-mplayer.h @ 9291:64b8c5a07c2c

- It adds an option enqueue/noenqueue, so users can choose if they want to have playlist overwritten by files on commandline or just enqueue them at the end ... - Playtree is finally cleared, as such gui has total control! - Autoplay if files are available on commandline and -enqueue is not set! - Fallback on Playlists finally does work with Gui and even with streaming Playlists! [ Before gui was broken as mplayer.c:playtree tried to have control] patch by Fabian Franz <FabianFranz@gmx.de>
author arpi
date Wed, 05 Feb 2003 23:02:35 +0000
parents 398e3fb7c103
children f38fe55d0e05
comparison
equal deleted inserted replaced
9290:0e043196d176 9291:64b8c5a07c2c
104 extern int rtspStreamOverTCP; 104 extern int rtspStreamOverTCP;
105 #endif 105 #endif
106 106
107 #ifdef HAVE_NEW_GUI 107 #ifdef HAVE_NEW_GUI
108 extern char * skinName; 108 extern char * skinName;
109 extern int enqueue;
109 #endif 110 #endif
110 111
111 #ifdef HAVE_ODIVX_POSTPROCESS 112 #ifdef HAVE_ODIVX_POSTPROCESS
112 extern int use_old_pp; 113 extern int use_old_pp;
113 #endif 114 #endif
393 {"gui", &use_gui, CONF_TYPE_FLAG, CONF_GLOBAL|CONF_NOCMD, 0, 1, NULL}, 394 {"gui", &use_gui, CONF_TYPE_FLAG, CONF_GLOBAL|CONF_NOCMD, 0, 1, NULL},
394 // {"nogui", &use_gui, CONF_TYPE_FLAG, CONF_GLOBAL, 1, 0, NULL}, 395 // {"nogui", &use_gui, CONF_TYPE_FLAG, CONF_GLOBAL, 1, 0, NULL},
395 396
396 #ifdef HAVE_NEW_GUI 397 #ifdef HAVE_NEW_GUI
397 {"skin", &skinName, CONF_TYPE_STRING, CONF_GLOBAL, 0, 0, NULL}, 398 {"skin", &skinName, CONF_TYPE_STRING, CONF_GLOBAL, 0, 0, NULL},
399 {"enqueue", &enqueue, CONF_TYPE_FLAG, 0, 0, 1, NULL},
400 {"noenqueue", &enqueue, CONF_TYPE_FLAG, 0, 0, 0, NULL},
398 #endif 401 #endif
399 402
400 {"noloop", &loop_times, CONF_TYPE_FLAG, 0, 0, -1, NULL}, 403 {"noloop", &loop_times, CONF_TYPE_FLAG, 0, 0, -1, NULL},
401 {"loop", &loop_times, CONF_TYPE_INT, CONF_RANGE, -1, 10000, NULL}, 404 {"loop", &loop_times, CONF_TYPE_INT, CONF_RANGE, -1, 10000, NULL},
402 {"playlist", NULL, CONF_TYPE_STRING, 0, 0, 0, NULL}, 405 {"playlist", NULL, CONF_TYPE_STRING, 0, 0, 0, NULL},