comparison cfg-mplayer.h @ 14935:b3274e6b88ef

Convert vo_aa suboption parser to using the subopt-helper. This obsoletes all -aa* commandline options. Use -vo aa:* instead.
author ivo
date Fri, 11 Mar 2005 02:09:24 +0000
parents 29a09f111b41
children 7e7b077b7a50
comparison
equal deleted inserted replaced
14934:89031188b7b2 14935:b3274e6b88ef
69 #endif 69 #endif
70 extern int WinID; 70 extern int WinID;
71 71
72 #ifdef HAVE_MENU 72 #ifdef HAVE_MENU
73 extern int menu_startup; 73 extern int menu_startup;
74 #endif
75
76 #ifdef HAVE_AA
77 extern int vo_aa_parseoption(m_option_t* conf, char *opt, char * param);
78 extern void vo_aa_revertoption(m_option_t* opt,char* param);
79 #endif 74 #endif
80 75
81 #ifdef HAVE_ZR 76 #ifdef HAVE_ZR
82 extern int vo_zr_parseoption(m_option_t* conf, char *opt, char * param); 77 extern int vo_zr_parseoption(m_option_t* conf, char *opt, char * param);
83 extern void vo_zr_revertoption(m_option_t* opt,char* pram); 78 extern void vo_zr_revertoption(m_option_t* opt,char* pram);
282 {"vaa_dr", "-vaa_dr is obsolete, use -dr.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL}, 277 {"vaa_dr", "-vaa_dr is obsolete, use -dr.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
283 {"vaa_nodr", "-vaa_nodr is obsolete, use -nodr.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL}, 278 {"vaa_nodr", "-vaa_nodr is obsolete, use -nodr.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
284 279
285 #ifdef HAVE_AA 280 #ifdef HAVE_AA
286 // -vo aa 281 // -vo aa
287 {"aa*", vo_aa_parseoption, CONF_TYPE_FUNC_FULL, 0, 0, 0 , &vo_aa_revertoption}, 282 {"aa*", "-aa* is deprecated. Use -vo aa:suboption instead.\n", CONF_TYPE_PRINT, 0, 0, 0, NULL},
288 #endif 283 #endif
289 284
290 #ifdef HAVE_ZR 285 #ifdef HAVE_ZR
291 // -vo zr 286 // -vo zr
292 {"zr*", vo_zr_parseoption, CONF_TYPE_FUNC_FULL, 0, 0, 0, &vo_zr_revertoption }, 287 {"zr*", vo_zr_parseoption, CONF_TYPE_FUNC_FULL, 0, 0, 0, &vo_zr_revertoption },