QuickTime in24 and in32 PCM audio support
[mplayer/glamo.git] / m_option.h
blob55a26765bda722402253d5b5af13e81867d4686e
1 #ifndef _M_OPTION_H
2 #define _M_OPTION_H
4 typedef struct m_option_type m_option_type_t;
5 typedef struct m_option m_option_t;
6 struct m_struct_st;
8 ///////////////////////////// Options types declarations ////////////////////////////
10 // Simple types
11 extern m_option_type_t m_option_type_flag;
12 extern m_option_type_t m_option_type_int;
13 extern m_option_type_t m_option_type_float;
14 extern m_option_type_t m_option_type_double;
15 extern m_option_type_t m_option_type_string;
16 extern m_option_type_t m_option_type_string_list;
17 extern m_option_type_t m_option_type_position;
19 extern m_option_type_t m_option_type_print;
20 extern m_option_type_t m_option_type_print_indirect;
21 extern m_option_type_t m_option_type_print_func;
22 extern m_option_type_t m_option_type_subconfig;
23 extern m_option_type_t m_option_type_imgfmt;
24 extern m_option_type_t m_option_type_afmt;
26 // Func based types
27 extern m_option_type_t m_option_type_func_full;
28 extern m_option_type_t m_option_type_func_param;
29 extern m_option_type_t m_option_type_func;
31 typedef void (*m_opt_default_func_t)(m_option_t *, char*);
32 typedef int (*m_opt_func_full_t)(m_option_t *, char *, char *);
33 typedef int (*m_opt_func_param_t)(m_option_t *, char *);
34 typedef int (*m_opt_func_t)(m_option_t *);
35 ///////////// Backward compat
36 typedef m_opt_default_func_t cfg_default_func_t;
37 typedef m_opt_func_full_t cfg_func_arg_param_t;
38 typedef m_opt_func_param_t cfg_func_param_t;
39 typedef m_opt_func_t cfg_func_t;
41 typedef struct {
42 void** list;
43 void* name_off;
44 void* info_off;
45 void* desc_off;
46 } m_obj_list_t;
48 typedef struct {
49 char* name;
50 char** attribs;
51 } m_obj_settings_t;
52 extern m_option_type_t m_option_type_obj_settings_list;
54 // Presets are mean to be used with options struct
57 typedef struct {
58 struct m_struct_st* in_desc;
59 struct m_struct_st* out_desc;
60 void* presets; // Pointer to an arry of struct defined by in_desc
61 void* name_off; // Offset of the preset name inside the in_struct
62 } m_obj_presets_t;
63 extern m_option_type_t m_option_type_obj_presets;
65 extern m_option_type_t m_option_type_custom_url;
67 typedef struct {
68 struct m_struct_st* desc; // Fields description
69 char separator; // Field separator to use
70 } m_obj_params_t;
71 extern m_option_type_t m_option_type_obj_params;
73 typedef struct {
74 int start;
75 int end;
76 } m_span_t;
77 extern m_obj_params_t m_span_params_def;
80 // FIXME: backward compatibility
81 #define CONF_TYPE_FLAG (&m_option_type_flag)
82 #define CONF_TYPE_INT (&m_option_type_int)
83 #define CONF_TYPE_FLOAT (&m_option_type_float)
84 #define CONF_TYPE_DOUBLE (&m_option_type_double)
85 #define CONF_TYPE_STRING (&m_option_type_string)
86 #define CONF_TYPE_FUNC (&m_option_type_func)
87 #define CONF_TYPE_FUNC_PARAM (&m_option_type_func_param)
88 #define CONF_TYPE_PRINT (&m_option_type_print)
89 #define CONF_TYPE_PRINT_INDIRECT (&m_option_type_print_indirect)
90 #define CONF_TYPE_PRINT_FUNC (&m_option_type_print_func)
91 #define CONF_TYPE_FUNC_FULL (&m_option_type_func_full)
92 #define CONF_TYPE_SUBCONFIG (&m_option_type_subconfig)
93 #define CONF_TYPE_STRING_LIST (&m_option_type_string_list)
94 #define CONF_TYPE_POSITION (&m_option_type_position)
95 #define CONF_TYPE_IMGFMT (&m_option_type_imgfmt)
96 #define CONF_TYPE_AFMT (&m_option_type_afmt)
97 #define CONF_TYPE_SPAN (&m_option_type_span)
98 #define CONF_TYPE_OBJ_SETTINGS_LIST (&m_option_type_obj_settings_list)
99 #define CONF_TYPE_OBJ_PRESETS (&m_option_type_obj_presets)
100 #define CONF_TYPE_CUSTOM_URL (&m_option_type_custom_url)
101 #define CONF_TYPE_OBJ_PARAMS (&m_option_type_obj_params)
103 /////////////////////////////////////////////////////////////////////////////////////////////
105 struct m_option_type {
106 char* name;
107 char* comments; // syntax desc, etc
108 unsigned int size; // size needed for a save slot
109 unsigned int flags;
111 // parse is the only requiered function all others can be NULL
112 // If dst if non-NULL it should create/update the save slot
113 // If dst is NULL it should just test the validity of the arg if possible
114 // Src tell from where come this setting (ie cfg file, command line, playlist, ....
115 // It should return 1 if param was used, 0 if not.
116 // On error it must return 1 of the error code below
117 int (*parse)(m_option_t* opt,char *name, char *param, void* dst, int src);
118 // Print back a value in human form
119 char* (*print)(m_option_t* opt, void* val);
121 // These 3 will be a memcpy in 50% of the case, it's called to save/restore the status of
122 // the var it's there for complex type like CONF_TYPE_FUNC*
123 // update a save slot (dst) from the current value in the prog (src)
124 void (*save)(m_option_t* opt,void* dst, void* src);
125 // set the current value (dst) from a save slot
126 void (*set)(m_option_t* opt,void* dst, void* src);
127 // Copy betewen 2 slot (if NULL and size > 0 a memcpy will be used
128 void (*copy)(m_option_t* opt,void* dst, void* src);
129 // Free the data allocated for a save slot if needed
130 void (*free)(void* dst);
133 struct m_option {
134 char *name;
135 void *p;
136 m_option_type_t* type;
137 unsigned int flags;
138 double min,max;
139 // This used to be function pointer to hold a 'reverse to defaults' func.
140 // Nom it can be used to pass any type of extra args.
141 // Passing a 'default func' is still valid for all func based option types
142 void* priv; // Type dependent data (for all kind of extended setting)
146 //////////////////////////////// Option flags /////////////////////////////////
148 // Option flags
149 #define M_OPT_MIN (1<<0)
150 #define M_OPT_MAX (1<<1)
151 #define M_OPT_RANGE (M_OPT_MIN|M_OPT_MAX)
152 #define M_OPT_NOCFG (1<<2)
153 #define M_OPT_NOCMD (1<<3)
154 // This option is global : it won't be saved on push and the command
155 // line parser will set it when it's parsed (ie. it won't be set later)
156 // e.g options : -v, -quiet
157 #define M_OPT_GLOBAL (1<<4)
158 // Do not save this option : it won't be saved on push but the command
159 // line parser will put it with it's entry (ie : it may be set later)
160 // e.g options : -include
161 #define M_OPT_NOSAVE (1<<5)
162 // Emulate old behaviour by pushing the option only if it was set by the user
163 #define M_OPT_OLD (1<<6)
165 // FIXME: backward compatibility
166 #define CONF_MIN M_OPT_MIN
167 #define CONF_MAX M_OPT_MAX
168 #define CONF_RANGE M_OPT_RANGE
169 #define CONF_NOCFG M_OPT_NOCFG
170 #define CONF_NOCMD M_OPT_NOCMD
171 #define CONF_GLOBAL M_OPT_GLOBAL
172 #define CONF_NOSAVE M_OPT_NOSAVE
173 #define CONF_OLD M_OPT_OLD
176 ///////////////////////////// Option type flags ///////////////////////////////////
178 // These flags are for the parsers. The description here apply to the m_config_t
179 // based parsers (ie. cmd line and config file parsers)
180 // Some parser will refuse option types that have some of these flags
182 // This flag is used for the subconfig
183 // When this flag is set, opt->p should point to another m_option_t array
184 // Only the parse function will be called. If dst is set, it should create/update
185 // an array of char* containg opt/val pairs.
186 // Then the options in the child array will then be set automaticly.
187 // You can only affect the way suboption are parsed.
188 // Also note that suboptions may be directly accessed by using -option:subopt blah :-)
189 #define M_OPT_TYPE_HAS_CHILD (1<<0)
190 // If this flag is set the option type support option name with * at the end (used for -aa*)
191 // This only affect the option name matching, the option type have to implement
192 // the needed stuff.
193 #define M_OPT_TYPE_ALLOW_WILDCARD (1<<1)
194 // This flag indicate that the data is dynamicly allocated (opt->p point to a pointer)
195 // It enable a little hack wich replace the initial value by a dynamic copy
196 // in case the initial value is staticly allocated (pretty common with strings)
197 #define M_OPT_TYPE_DYNAMIC (1<<2)
198 /// If this is set the parse function doesn't directly return
199 // the wanted thing. Options use this if for some reasons they have to wait
200 // until the set call to be able to correctly set the target var.
201 // So for those types you have to first parse and then set the target var
202 // If this flag isn't set you can parse directly to the target var
203 // It's used for the callback based option as the callback call may append
204 // later on.
205 #define M_OPT_TYPE_INDIRECT (1<<3)
208 ///////////////////////////// Parser flags ////////////////////////////////////////
210 // Config mode : some parser type behave differently depending
211 // on config->mode value wich is passed in the src param of parse()
212 #define M_CONFIG_FILE 0
213 #define M_COMMAND_LINE 1
215 // Option parser error code
216 #define M_OPT_UNKNOWN -1
217 #define M_OPT_MISSING_PARAM -2
218 #define M_OPT_INVALID -3
219 #define M_OPT_OUT_OF_RANGE -4
220 #define M_OPT_PARSER_ERR -5
221 #define M_OPT_EXIT -6
222 // M_OPT_EXIT must be the lowest number on this list.
223 // To indicate that mplayer should exit without playing anything,
224 // a parsing function needs to return M_OPT_EXIT less the number
225 // of additional command line parameters it consumed.
226 // Generally it will return either M_OPT_EXIT or M_OPT_EXIT - 1.
228 // FIXME: backward compatibility
229 #define ERR_NOT_AN_OPTION M_OPT_UNKNOWN
230 #define ERR_MISSING_PARAM M_OPT_MISSING_PARAM
231 #define ERR_OUT_OF_RANGE M_OPT_OUT_OF_RANGE
232 #define ERR_FUNC_ERR M_OPT_PARSER_ERR
234 m_option_t* m_option_list_find(m_option_t* list,char* name);
236 inline static int
237 m_option_parse(m_option_t* opt,char *name, char *param, void* dst, int src) {
238 return opt->type->parse(opt,name,param,dst,src);
241 inline static char*
242 m_option_print(m_option_t* opt, void* val_ptr) {
243 if(opt->type->print)
244 return opt->type->print(opt,val_ptr);
245 else
246 return (char*)-1;
249 inline static void
250 m_option_save(m_option_t* opt,void* dst, void* src) {
251 if(opt->type->save)
252 opt->type->save(opt,dst,src);
255 inline static void
256 m_option_set(m_option_t* opt,void* dst, void* src) {
257 if(opt->type->set)
258 opt->type->set(opt,dst,src);
261 inline static void
262 m_option_copy(m_option_t* opt,void* dst, void* src) {
263 if(opt->type->copy)
264 opt->type->copy(opt,dst,src);
265 else if(opt->type->size > 0)
266 memcpy(dst,src,opt->type->size);
269 inline static void
270 m_option_free(m_option_t* opt,void* dst) {
271 if(opt->type->free)
272 opt->type->free(dst);
275 #endif /* _M_OPTION_H */