comparison cfg-mplayer.h @ 14776:19993691ca6b

a helpful new message about vd.
author joey
date Wed, 23 Feb 2005 01:37:03 +0000
parents c10a234ac711
children 05377e7baf4f
comparison
equal deleted inserted replaced
14775:5b5417f6b598 14776:19993691ca6b
124 124
125 extern int sws_flags; 125 extern int sws_flags;
126 extern int readPPOpt(void *conf, char *arg); 126 extern int readPPOpt(void *conf, char *arg);
127 extern void revertPPOpt(void *conf, char* opt); 127 extern void revertPPOpt(void *conf, char* opt);
128 extern char* pp_help; 128 extern char* pp_help;
129
130 m_option_t vd_conf[]={
131 {"help", "To avoid vd, always use MPlayer with an appropriate video file instead of a live partner.\n", CONF_TYPE_PRINT, CONF_NOCFG|CONF_GLOBAL, 0, 0, NULL},
132 {NULL, NULL, 0, 0, 0, 0, NULL}
133 };
129 134
130 /* 135 /*
131 * CONF_TYPE_FUNC_FULL : 136 * CONF_TYPE_FUNC_FULL :
132 * allows own implementations for passing the params 137 * allows own implementations for passing the params
133 * 138 *
404 {"identify", &identify, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL}, 409 {"identify", &identify, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL},
405 {"really-quiet", &verbose, CONF_TYPE_FLAG, CONF_GLOBAL, 0, -10, NULL}, 410 {"really-quiet", &verbose, CONF_TYPE_FLAG, CONF_GLOBAL, 0, -10, NULL},
406 {"-help", help_text, CONF_TYPE_PRINT, CONF_NOCFG|CONF_GLOBAL, 0, 0, NULL}, 411 {"-help", help_text, CONF_TYPE_PRINT, CONF_NOCFG|CONF_GLOBAL, 0, 0, NULL},
407 {"help", help_text, CONF_TYPE_PRINT, CONF_NOCFG|CONF_GLOBAL, 0, 0, NULL}, 412 {"help", help_text, CONF_TYPE_PRINT, CONF_NOCFG|CONF_GLOBAL, 0, 0, NULL},
408 {"h", help_text, CONF_TYPE_PRINT, CONF_NOCFG|CONF_GLOBAL, 0, 0, NULL}, 413 {"h", help_text, CONF_TYPE_PRINT, CONF_NOCFG|CONF_GLOBAL, 0, 0, NULL},
414
415 {"vd", vd_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL},
409 {NULL, NULL, 0, 0, 0, 0, NULL} 416 {NULL, NULL, 0, 0, 0, 0, NULL}
410 }; 417 };