mirror of
https://github.com/mpv-player/mpv
synced 2024-12-20 05:42:19 +00:00
Added an option to select the input config file
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4837 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
e016ed4fc4
commit
f0d1217cde
@ -228,8 +228,10 @@ static mp_cmd_t* ar_cmd = NULL;
|
|||||||
static unsigned int ar_delay = 100, ar_rate = 8, last_ar = 0;
|
static unsigned int ar_delay = 100, ar_rate = 8, last_ar = 0;
|
||||||
|
|
||||||
static int use_joystick = 1, use_lirc = 1;
|
static int use_joystick = 1, use_lirc = 1;
|
||||||
|
static char* config_file = "input.conf";
|
||||||
|
|
||||||
static config_t input_conf[] = {
|
static config_t input_conf[] = {
|
||||||
|
{ "conf", &config_file, CONF_TYPE_STRING, CONF_GLOBAL, 0, 0, NULL },
|
||||||
{ "ar-delay", &ar_delay, CONF_TYPE_INT, CONF_GLOBAL, 0, 0, NULL },
|
{ "ar-delay", &ar_delay, CONF_TYPE_INT, CONF_GLOBAL, 0, 0, NULL },
|
||||||
{ "ar-rate", &ar_rate, CONF_TYPE_INT, CONF_GLOBAL, 0, 0, NULL },
|
{ "ar-rate", &ar_rate, CONF_TYPE_INT, CONF_GLOBAL, 0, 0, NULL },
|
||||||
{ NULL, NULL, 0, 0, 0, 0, NULL}
|
{ NULL, NULL, 0, 0, 0, 0, NULL}
|
||||||
@ -1081,7 +1083,7 @@ void
|
|||||||
mp_input_init(void) {
|
mp_input_init(void) {
|
||||||
char* file;
|
char* file;
|
||||||
|
|
||||||
file = get_path("input.conf");
|
file = config_file[0] != '/' ? get_path(config_file) : config_file;
|
||||||
if(!file)
|
if(!file)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user