comparison libmpcodecs/ve_vfw.c @ 10594:57bdcdb061d7

Removed the historic cfgparser and switched full to the new config parser (altought some macros still remain for compatibility). As a side effect 90% of the warning messages are gone from the core. Things should be cleaner now and less confusing for newbies.
author alex
date Wed, 13 Aug 2003 16:29:32 +0000
parents c671e9adbe22
children 656a1b45b309
comparison
equal deleted inserted replaced
10593:27711ab2889f 10594:57bdcdb061d7
27 27
28 //===========================================================================// 28 //===========================================================================//
29 29
30 static char *vfw_param_codec = NULL; 30 static char *vfw_param_codec = NULL;
31 31
32 #include "cfgparser.h" 32 #include "m_option.h"
33 33
34 struct config vfwopts_conf[]={ 34 m_option_t vfwopts_conf[]={
35 {"codec", &vfw_param_codec, CONF_TYPE_STRING, 0, 0, 0, NULL}, 35 {"codec", &vfw_param_codec, CONF_TYPE_STRING, 0, 0, 0, NULL},
36 {NULL, NULL, 0, 0, 0, 0, NULL} 36 {NULL, NULL, 0, 0, 0, 0, NULL}
37 }; 37 };
38 38
39 struct vf_priv_s { 39 struct vf_priv_s {