comparison cfg-mplayer.h @ 19850:4919b3ce8d5e

report to mplayer with a slave command the coordinates of the pointer reported by x11; rescale coordinates to [0,1]x[0,1] range - patch by Jonas Jermann and me
author nicodvb
date Sat, 16 Sep 2006 15:13:41 +0000
parents 9127ccdcf4af
children d73844253323
comparison
equal deleted inserted replaced
19849:f4504b07bdbd 19850:4919b3ce8d5e
99 99
100 extern int sws_flags; 100 extern int sws_flags;
101 extern int readPPOpt(void *conf, char *arg); 101 extern int readPPOpt(void *conf, char *arg);
102 extern void revertPPOpt(void *conf, char* opt); 102 extern void revertPPOpt(void *conf, char* opt);
103 extern char* pp_help; 103 extern char* pp_help;
104 extern int enable_mouse_movements;
104 105
105 m_option_t vd_conf[]={ 106 m_option_t vd_conf[]={
106 {"help", "Use MPlayer with an appropriate video file instead of live partners to avoid vd.\n", CONF_TYPE_PRINT, CONF_NOCFG|CONF_GLOBAL, 0, 0, NULL}, 107 {"help", "Use MPlayer with an appropriate video file instead of live partners to avoid vd.\n", CONF_TYPE_PRINT, CONF_NOCFG|CONF_GLOBAL, 0, 0, NULL},
107 {NULL, NULL, 0, 0, 0, 0, NULL} 108 {NULL, NULL, 0, 0, 0, 0, NULL}
108 }; 109 };
364 {"noidle", &player_idle_mode, CONF_TYPE_FLAG,CONF_GLOBAL , 0, 0, NULL}, 365 {"noidle", &player_idle_mode, CONF_TYPE_FLAG,CONF_GLOBAL , 0, 0, NULL},
365 {"use-stdin", "-use-stdin has been renamed to -noconsolecontrols, use that instead.", CONF_TYPE_PRINT, 0, 0, 0, NULL}, 366 {"use-stdin", "-use-stdin has been renamed to -noconsolecontrols, use that instead.", CONF_TYPE_PRINT, 0, 0, 0, NULL},
366 {"key-fifo-size", &key_fifo_size, CONF_TYPE_INT, CONF_RANGE, 2, 65000, NULL}, 367 {"key-fifo-size", &key_fifo_size, CONF_TYPE_INT, CONF_RANGE, 2, 65000, NULL},
367 {"noconsolecontrols", &noconsolecontrols, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL}, 368 {"noconsolecontrols", &noconsolecontrols, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL},
368 {"consolecontrols", &noconsolecontrols, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 0, NULL}, 369 {"consolecontrols", &noconsolecontrols, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 0, NULL},
370 {"mouse-movements", &enable_mouse_movements, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL},
371 {"nomouse-movements", &enable_mouse_movements, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 0, NULL},
369 372
370 #define MAIN_CONF 373 #define MAIN_CONF
371 #include "cfg-common.h" 374 #include "cfg-common.h"
372 #undef MAIN_CONF 375 #undef MAIN_CONF
373 376