]> git.sesse.net Git - ffmpeg/blob - libavutil/opt.h
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavutil / opt.h
1 /*
2  * AVOptions
3  * copyright (c) 2005 Michael Niedermayer <michaelni@gmx.at>
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #ifndef AVUTIL_OPT_H
23 #define AVUTIL_OPT_H
24
25 /**
26  * @file
27  * AVOptions
28  */
29
30 #include "rational.h"
31 #include "avutil.h"
32 #include "dict.h"
33 #include "log.h"
34
35 /**
36  * @defgroup avoptions AVOptions
37  * @ingroup lavu_data
38  * @{
39  * AVOptions provide a generic system to declare options on arbitrary structs
40  * ("objects"). An option can have a help text, a type and a range of possible
41  * values. Options may then be enumerated, read and written to.
42  *
43  * @section avoptions_implement Implementing AVOptions
44  * This section describes how to add AVOptions capabilities to a struct.
45  *
46  * All AVOptions-related information is stored in an AVClass. Therefore
47  * the first member of the struct should be a pointer to an AVClass describing it.
48  * The option field of the AVClass must be set to a NULL-terminated static array
49  * of AVOptions. Each AVOption must have a non-empty name, a type, a default
50  * value and for number-type AVOptions also a range of allowed values. It must
51  * also declare an offset in bytes from the start of the struct, where the field
52  * associated with this AVOption is located. Other fields in the AVOption struct
53  * should also be set when applicable, but are not required.
54  *
55  * The following example illustrates an AVOptions-enabled struct:
56  * @code
57  * typedef struct test_struct {
58  *     AVClass *class;
59  *     int      int_opt;
60  *     char    *str_opt;
61  *     uint8_t *bin_opt;
62  *     int      bin_len;
63  * } test_struct;
64  *
65  * static const AVOption options[] = {
66  *   { "test_int", "This is a test option of int type.", offsetof(test_struct, int_opt),
67  *     AV_OPT_TYPE_INT, { .i64 = -1 }, INT_MIN, INT_MAX },
68  *   { "test_str", "This is a test option of string type.", offsetof(test_struct, str_opt),
69  *     AV_OPT_TYPE_STRING },
70  *   { "test_bin", "This is a test option of binary type.", offsetof(test_struct, bin_opt),
71  *     AV_OPT_TYPE_BINARY },
72  *   { NULL },
73  * };
74  *
75  * static const AVClass test_class = {
76  *     .class_name = "test class",
77  *     .item_name  = av_default_item_name,
78  *     .option     = options,
79  *     .version    = LIBAVUTIL_VERSION_INT,
80  * };
81  * @endcode
82  *
83  * Next, when allocating your struct, you must ensure that the AVClass pointer
84  * is set to the correct value. Then, av_opt_set_defaults() can be called to
85  * initialize defaults. After that the struct is ready to be used with the
86  * AVOptions API.
87  *
88  * When cleaning up, you may use the av_opt_free() function to automatically
89  * free all the allocated string and binary options.
90  *
91  * Continuing with the above example:
92  *
93  * @code
94  * test_struct *alloc_test_struct(void)
95  * {
96  *     test_struct *ret = av_malloc(sizeof(*ret));
97  *     ret->class = &test_class;
98  *     av_opt_set_defaults(ret);
99  *     return ret;
100  * }
101  * void free_test_struct(test_struct **foo)
102  * {
103  *     av_opt_free(*foo);
104  *     av_freep(foo);
105  * }
106  * @endcode
107  *
108  * @subsection avoptions_implement_nesting Nesting
109  *      It may happen that an AVOptions-enabled struct contains another
110  *      AVOptions-enabled struct as a member (e.g. AVCodecContext in
111  *      libavcodec exports generic options, while its priv_data field exports
112  *      codec-specific options). In such a case, it is possible to set up the
113  *      parent struct to export a child's options. To do that, simply
114  *      implement AVClass.child_next() and AVClass.child_class_next() in the
115  *      parent struct's AVClass.
116  *      Assuming that the test_struct from above now also contains a
117  *      child_struct field:
118  *
119  *      @code
120  *      typedef struct child_struct {
121  *          AVClass *class;
122  *          int flags_opt;
123  *      } child_struct;
124  *      static const AVOption child_opts[] = {
125  *          { "test_flags", "This is a test option of flags type.",
126  *            offsetof(child_struct, flags_opt), AV_OPT_TYPE_FLAGS, { .i64 = 0 }, INT_MIN, INT_MAX },
127  *          { NULL },
128  *      };
129  *      static const AVClass child_class = {
130  *          .class_name = "child class",
131  *          .item_name  = av_default_item_name,
132  *          .option     = child_opts,
133  *          .version    = LIBAVUTIL_VERSION_INT,
134  *      };
135  *
136  *      void *child_next(void *obj, void *prev)
137  *      {
138  *          test_struct *t = obj;
139  *          if (!prev && t->child_struct)
140  *              return t->child_struct;
141  *          return NULL
142  *      }
143  *      const AVClass child_class_next(const AVClass *prev)
144  *      {
145  *          return prev ? NULL : &child_class;
146  *      }
147  *      @endcode
148  *      Putting child_next() and child_class_next() as defined above into
149  *      test_class will now make child_struct's options accessible through
150  *      test_struct (again, proper setup as described above needs to be done on
151  *      child_struct right after it is created).
152  *
153  *      From the above example it might not be clear why both child_next()
154  *      and child_class_next() are needed. The distinction is that child_next()
155  *      iterates over actually existing objects, while child_class_next()
156  *      iterates over all possible child classes. E.g. if an AVCodecContext
157  *      was initialized to use a codec which has private options, then its
158  *      child_next() will return AVCodecContext.priv_data and finish
159  *      iterating. OTOH child_class_next() on AVCodecContext.av_class will
160  *      iterate over all available codecs with private options.
161  *
162  * @subsection avoptions_implement_named_constants Named constants
163  *      It is possible to create named constants for options. Simply set the unit
164  *      field of the option the constants should apply to to a string and
165  *      create the constants themselves as options of type AV_OPT_TYPE_CONST
166  *      with their unit field set to the same string.
167  *      Their default_val field should contain the value of the named
168  *      constant.
169  *      For example, to add some named constants for the test_flags option
170  *      above, put the following into the child_opts array:
171  *      @code
172  *      { "test_flags", "This is a test option of flags type.",
173  *        offsetof(child_struct, flags_opt), AV_OPT_TYPE_FLAGS, { .i64 = 0 }, INT_MIN, INT_MAX, "test_unit" },
174  *      { "flag1", "This is a flag with value 16", 0, AV_OPT_TYPE_CONST, { .i64 = 16 }, 0, 0, "test_unit" },
175  *      @endcode
176  *
177  * @section avoptions_use Using AVOptions
178  * This section deals with accessing options in an AVOptions-enabled struct.
179  * Such structs in FFmpeg are e.g. AVCodecContext in libavcodec or
180  * AVFormatContext in libavformat.
181  *
182  * @subsection avoptions_use_examine Examining AVOptions
183  * The basic functions for examining options are av_opt_next(), which iterates
184  * over all options defined for one object, and av_opt_find(), which searches
185  * for an option with the given name.
186  *
187  * The situation is more complicated with nesting. An AVOptions-enabled struct
188  * may have AVOptions-enabled children. Passing the AV_OPT_SEARCH_CHILDREN flag
189  * to av_opt_find() will make the function search children recursively.
190  *
191  * For enumerating there are basically two cases. The first is when you want to
192  * get all options that may potentially exist on the struct and its children
193  * (e.g.  when constructing documentation). In that case you should call
194  * av_opt_child_class_next() recursively on the parent struct's AVClass.  The
195  * second case is when you have an already initialized struct with all its
196  * children and you want to get all options that can be actually written or read
197  * from it. In that case you should call av_opt_child_next() recursively (and
198  * av_opt_next() on each result).
199  *
200  * @subsection avoptions_use_get_set Reading and writing AVOptions
201  * When setting options, you often have a string read directly from the
202  * user. In such a case, simply passing it to av_opt_set() is enough. For
203  * non-string type options, av_opt_set() will parse the string according to the
204  * option type.
205  *
206  * Similarly av_opt_get() will read any option type and convert it to a string
207  * which will be returned. Do not forget that the string is allocated, so you
208  * have to free it with av_free().
209  *
210  * In some cases it may be more convenient to put all options into an
211  * AVDictionary and call av_opt_set_dict() on it. A specific case of this
212  * are the format/codec open functions in lavf/lavc which take a dictionary
213  * filled with option as a parameter. This allows to set some options
214  * that cannot be set otherwise, since e.g. the input file format is not known
215  * before the file is actually opened.
216  */
217
218 enum AVOptionType{
219     AV_OPT_TYPE_FLAGS,
220     AV_OPT_TYPE_INT,
221     AV_OPT_TYPE_INT64,
222     AV_OPT_TYPE_DOUBLE,
223     AV_OPT_TYPE_FLOAT,
224     AV_OPT_TYPE_STRING,
225     AV_OPT_TYPE_RATIONAL,
226     AV_OPT_TYPE_BINARY,  ///< offset must point to a pointer immediately followed by an int for the length
227     AV_OPT_TYPE_CONST = 128,
228     AV_OPT_TYPE_IMAGE_SIZE = MKBETAG('S','I','Z','E'), ///< offset must point to two consecutive integers
229     AV_OPT_TYPE_PIXEL_FMT  = MKBETAG('P','F','M','T'),
230     AV_OPT_TYPE_SAMPLE_FMT = MKBETAG('S','F','M','T'),
231 #if FF_API_OLD_AVOPTIONS
232     FF_OPT_TYPE_FLAGS = 0,
233     FF_OPT_TYPE_INT,
234     FF_OPT_TYPE_INT64,
235     FF_OPT_TYPE_DOUBLE,
236     FF_OPT_TYPE_FLOAT,
237     FF_OPT_TYPE_STRING,
238     FF_OPT_TYPE_RATIONAL,
239     FF_OPT_TYPE_BINARY,  ///< offset must point to a pointer immediately followed by an int for the length
240     FF_OPT_TYPE_CONST=128,
241 #endif
242 };
243
244 /**
245  * AVOption
246  */
247 typedef struct AVOption {
248     const char *name;
249
250     /**
251      * short English help text
252      * @todo What about other languages?
253      */
254     const char *help;
255
256     /**
257      * The offset relative to the context structure where the option
258      * value is stored. It should be 0 for named constants.
259      */
260     int offset;
261     enum AVOptionType type;
262
263     /**
264      * the default value for scalar options
265      */
266     union {
267         int64_t i64;
268         double dbl;
269         const char *str;
270         /* TODO those are unused now */
271         AVRational q;
272     } default_val;
273     double min;                 ///< minimum valid value for the option
274     double max;                 ///< maximum valid value for the option
275
276     int flags;
277 #define AV_OPT_FLAG_ENCODING_PARAM  1   ///< a generic parameter which can be set by the user for muxing or encoding
278 #define AV_OPT_FLAG_DECODING_PARAM  2   ///< a generic parameter which can be set by the user for demuxing or decoding
279 #define AV_OPT_FLAG_METADATA        4   ///< some data extracted or inserted into the file like title, comment, ...
280 #define AV_OPT_FLAG_AUDIO_PARAM     8
281 #define AV_OPT_FLAG_VIDEO_PARAM     16
282 #define AV_OPT_FLAG_SUBTITLE_PARAM  32
283 #define AV_OPT_FLAG_FILTERING_PARAM (1<<16) ///< a generic parameter which can be set by the user for filtering
284 //FIXME think about enc-audio, ... style flags
285
286     /**
287      * The logical unit to which the option belongs. Non-constant
288      * options and corresponding named constants share the same
289      * unit. May be NULL.
290      */
291     const char *unit;
292 } AVOption;
293
294 #if FF_API_FIND_OPT
295 /**
296  * Look for an option in obj. Look only for the options which
297  * have the flags set as specified in mask and flags (that is,
298  * for which it is the case that opt->flags & mask == flags).
299  *
300  * @param[in] obj a pointer to a struct whose first element is a
301  * pointer to an AVClass
302  * @param[in] name the name of the option to look for
303  * @param[in] unit the unit of the option to look for, or any if NULL
304  * @return a pointer to the option found, or NULL if no option
305  * has been found
306  *
307  * @deprecated use av_opt_find.
308  */
309 attribute_deprecated
310 const AVOption *av_find_opt(void *obj, const char *name, const char *unit, int mask, int flags);
311 #endif
312
313 #if FF_API_OLD_AVOPTIONS
314 /**
315  * Set the field of obj with the given name to value.
316  *
317  * @param[in] obj A struct whose first element is a pointer to an
318  * AVClass.
319  * @param[in] name the name of the field to set
320  * @param[in] val The value to set. If the field is not of a string
321  * type, then the given string is parsed.
322  * SI postfixes and some named scalars are supported.
323  * If the field is of a numeric type, it has to be a numeric or named
324  * scalar. Behavior with more than one scalar and +- infix operators
325  * is undefined.
326  * If the field is of a flags type, it has to be a sequence of numeric
327  * scalars or named flags separated by '+' or '-'. Prefixing a flag
328  * with '+' causes it to be set without affecting the other flags;
329  * similarly, '-' unsets a flag.
330  * @param[out] o_out if non-NULL put here a pointer to the AVOption
331  * found
332  * @param alloc this parameter is currently ignored
333  * @return 0 if the value has been set, or an AVERROR code in case of
334  * error:
335  * AVERROR_OPTION_NOT_FOUND if no matching option exists
336  * AVERROR(ERANGE) if the value is out of range
337  * AVERROR(EINVAL) if the value is not valid
338  * @deprecated use av_opt_set()
339  */
340 attribute_deprecated
341 int av_set_string3(void *obj, const char *name, const char *val, int alloc, const AVOption **o_out);
342
343 attribute_deprecated const AVOption *av_set_double(void *obj, const char *name, double n);
344 attribute_deprecated const AVOption *av_set_q(void *obj, const char *name, AVRational n);
345 attribute_deprecated const AVOption *av_set_int(void *obj, const char *name, int64_t n);
346
347 double av_get_double(void *obj, const char *name, const AVOption **o_out);
348 AVRational av_get_q(void *obj, const char *name, const AVOption **o_out);
349 int64_t av_get_int(void *obj, const char *name, const AVOption **o_out);
350 attribute_deprecated const char *av_get_string(void *obj, const char *name, const AVOption **o_out, char *buf, int buf_len);
351 attribute_deprecated const AVOption *av_next_option(void *obj, const AVOption *last);
352 #endif
353
354 /**
355  * Show the obj options.
356  *
357  * @param req_flags requested flags for the options to show. Show only the
358  * options for which it is opt->flags & req_flags.
359  * @param rej_flags rejected flags for the options to show. Show only the
360  * options for which it is !(opt->flags & req_flags).
361  * @param av_log_obj log context to use for showing the options
362  */
363 int av_opt_show2(void *obj, void *av_log_obj, int req_flags, int rej_flags);
364
365 /**
366  * Set the values of all AVOption fields to their default values.
367  *
368  * @param s an AVOption-enabled struct (its first member must be a pointer to AVClass)
369  */
370 void av_opt_set_defaults(void *s);
371
372 #if FF_API_OLD_AVOPTIONS
373 attribute_deprecated
374 void av_opt_set_defaults2(void *s, int mask, int flags);
375 #endif
376
377 /**
378  * Parse the key/value pairs list in opts. For each key/value pair
379  * found, stores the value in the field in ctx that is named like the
380  * key. ctx must be an AVClass context, storing is done using
381  * AVOptions.
382  *
383  * @param opts options string to parse, may be NULL
384  * @param key_val_sep a 0-terminated list of characters used to
385  * separate key from value
386  * @param pairs_sep a 0-terminated list of characters used to separate
387  * two pairs from each other
388  * @return the number of successfully set key/value pairs, or a negative
389  * value corresponding to an AVERROR code in case of error:
390  * AVERROR(EINVAL) if opts cannot be parsed,
391  * the error code issued by av_set_string3() if a key/value pair
392  * cannot be set
393  */
394 int av_set_options_string(void *ctx, const char *opts,
395                           const char *key_val_sep, const char *pairs_sep);
396
397 /**
398  * Parse the key-value pairs list in opts. For each key=value pair found,
399  * set the value of the corresponding option in ctx.
400  *
401  * @param ctx          the AVClass object to set options on
402  * @param opts         the options string, key-value pairs separated by a
403  *                     delimiter
404  * @param shorthand    a NULL-terminated array of options names for shorthand
405  *                     notation: if the first field in opts has no key part,
406  *                     the key is taken from the first element of shorthand;
407  *                     then again for the second, etc., until either opts is
408  *                     finished, shorthand is finished or a named option is
409  *                     found; after that, all options must be named
410  * @param key_val_sep  a 0-terminated list of characters used to separate
411  *                     key from value, for example '='
412  * @param pairs_sep    a 0-terminated list of characters used to separate
413  *                     two pairs from each other, for example ':' or ','
414  * @return  the number of successfully set key=value pairs, or a negative
415  *          value corresponding to an AVERROR code in case of error:
416  *          AVERROR(EINVAL) if opts cannot be parsed,
417  *          the error code issued by av_set_string3() if a key/value pair
418  *          cannot be set
419  *
420  * Options names must use only the following characters: a-z A-Z 0-9 - . / _
421  * Separators must use characters distinct from option names and from each
422  * other.
423  */
424 int av_opt_set_from_string(void *ctx, const char *opts,
425                            const char *const *shorthand,
426                            const char *key_val_sep, const char *pairs_sep);
427 /**
428  * Free all string and binary options in obj.
429  */
430 void av_opt_free(void *obj);
431
432 /**
433  * Check whether a particular flag is set in a flags field.
434  *
435  * @param field_name the name of the flag field option
436  * @param flag_name the name of the flag to check
437  * @return non-zero if the flag is set, zero if the flag isn't set,
438  *         isn't of the right type, or the flags field doesn't exist.
439  */
440 int av_opt_flag_is_set(void *obj, const char *field_name, const char *flag_name);
441
442 /*
443  * Set all the options from a given dictionary on an object.
444  *
445  * @param obj a struct whose first element is a pointer to AVClass
446  * @param options options to process. This dictionary will be freed and replaced
447  *                by a new one containing all options not found in obj.
448  *                Of course this new dictionary needs to be freed by caller
449  *                with av_dict_free().
450  *
451  * @return 0 on success, a negative AVERROR if some option was found in obj,
452  *         but could not be set.
453  *
454  * @see av_dict_copy()
455  */
456 int av_opt_set_dict(void *obj, struct AVDictionary **options);
457
458 /**
459  * Extract a key-value pair from the beginning of a string.
460  *
461  * @param ropts        pointer to the options string, will be updated to
462  *                     point to the rest of the string
463  * @param key_val_sep  a 0-terminated list of characters used to separate
464  *                     key from value, for example '='
465  * @param pairs_sep    a 0-terminated list of characters used to separate
466  *                     two pairs from each other, for example ':' or ','
467  * @param flags        flags; see the AV_OPT_FLAG_* values below
468  * @param rkey         parsed key; must be freed using av_free()
469  * @param rval         parsed value; must be freed using av_free()
470  *
471  * @return  0 for success, or a negative value corresponding to an AVERROR
472  *          code in case of error; in particular:
473  *          AVERROR(EINVAL) if no key is present
474  *
475  */
476 int av_opt_get_key_value(const char **ropts,
477                          const char *key_val_sep, const char *pairs_sep,
478                          unsigned flags,
479                          char **rkey, char **rval);
480
481 enum {
482
483     /**
484      * Accept to parse a value without a key; the key will then be returned
485      * as NULL.
486      */
487     AV_OPT_FLAG_IMPLICIT_KEY = 1,
488 };
489
490 /**
491  * @defgroup opt_eval_funcs Evaluating option strings
492  * @{
493  * This group of functions can be used to evaluate option strings
494  * and get numbers out of them. They do the same thing as av_opt_set(),
495  * except the result is written into the caller-supplied pointer.
496  *
497  * @param obj a struct whose first element is a pointer to AVClass.
498  * @param o an option for which the string is to be evaluated.
499  * @param val string to be evaluated.
500  * @param *_out value of the string will be written here.
501  *
502  * @return 0 on success, a negative number on failure.
503  */
504 int av_opt_eval_flags (void *obj, const AVOption *o, const char *val, int        *flags_out);
505 int av_opt_eval_int   (void *obj, const AVOption *o, const char *val, int        *int_out);
506 int av_opt_eval_int64 (void *obj, const AVOption *o, const char *val, int64_t    *int64_out);
507 int av_opt_eval_float (void *obj, const AVOption *o, const char *val, float      *float_out);
508 int av_opt_eval_double(void *obj, const AVOption *o, const char *val, double     *double_out);
509 int av_opt_eval_q     (void *obj, const AVOption *o, const char *val, AVRational *q_out);
510 /**
511  * @}
512  */
513
514 #define AV_OPT_SEARCH_CHILDREN   0x0001 /**< Search in possible children of the
515                                              given object first. */
516 /**
517  *  The obj passed to av_opt_find() is fake -- only a double pointer to AVClass
518  *  instead of a required pointer to a struct containing AVClass. This is
519  *  useful for searching for options without needing to allocate the corresponding
520  *  object.
521  */
522 #define AV_OPT_SEARCH_FAKE_OBJ   0x0002
523
524 /**
525  * Look for an option in an object. Consider only options which
526  * have all the specified flags set.
527  *
528  * @param[in] obj A pointer to a struct whose first element is a
529  *                pointer to an AVClass.
530  *                Alternatively a double pointer to an AVClass, if
531  *                AV_OPT_SEARCH_FAKE_OBJ search flag is set.
532  * @param[in] name The name of the option to look for.
533  * @param[in] unit When searching for named constants, name of the unit
534  *                 it belongs to.
535  * @param opt_flags Find only options with all the specified flags set (AV_OPT_FLAG).
536  * @param search_flags A combination of AV_OPT_SEARCH_*.
537  *
538  * @return A pointer to the option found, or NULL if no option
539  *         was found.
540  *
541  * @note Options found with AV_OPT_SEARCH_CHILDREN flag may not be settable
542  * directly with av_set_string3(). Use special calls which take an options
543  * AVDictionary (e.g. avformat_open_input()) to set options found with this
544  * flag.
545  */
546 const AVOption *av_opt_find(void *obj, const char *name, const char *unit,
547                             int opt_flags, int search_flags);
548
549 /**
550  * Look for an option in an object. Consider only options which
551  * have all the specified flags set.
552  *
553  * @param[in] obj A pointer to a struct whose first element is a
554  *                pointer to an AVClass.
555  *                Alternatively a double pointer to an AVClass, if
556  *                AV_OPT_SEARCH_FAKE_OBJ search flag is set.
557  * @param[in] name The name of the option to look for.
558  * @param[in] unit When searching for named constants, name of the unit
559  *                 it belongs to.
560  * @param opt_flags Find only options with all the specified flags set (AV_OPT_FLAG).
561  * @param search_flags A combination of AV_OPT_SEARCH_*.
562  * @param[out] target_obj if non-NULL, an object to which the option belongs will be
563  * written here. It may be different from obj if AV_OPT_SEARCH_CHILDREN is present
564  * in search_flags. This parameter is ignored if search_flags contain
565  * AV_OPT_SEARCH_FAKE_OBJ.
566  *
567  * @return A pointer to the option found, or NULL if no option
568  *         was found.
569  */
570 const AVOption *av_opt_find2(void *obj, const char *name, const char *unit,
571                              int opt_flags, int search_flags, void **target_obj);
572
573 /**
574  * Iterate over all AVOptions belonging to obj.
575  *
576  * @param obj an AVOptions-enabled struct or a double pointer to an
577  *            AVClass describing it.
578  * @param prev result of the previous call to av_opt_next() on this object
579  *             or NULL
580  * @return next AVOption or NULL
581  */
582 const AVOption *av_opt_next(void *obj, const AVOption *prev);
583
584 /**
585  * Iterate over AVOptions-enabled children of obj.
586  *
587  * @param prev result of a previous call to this function or NULL
588  * @return next AVOptions-enabled child or NULL
589  */
590 void *av_opt_child_next(void *obj, void *prev);
591
592 /**
593  * Iterate over potential AVOptions-enabled children of parent.
594  *
595  * @param prev result of a previous call to this function or NULL
596  * @return AVClass corresponding to next potential child or NULL
597  */
598 const AVClass *av_opt_child_class_next(const AVClass *parent, const AVClass *prev);
599
600 /**
601  * @defgroup opt_set_funcs Option setting functions
602  * @{
603  * Those functions set the field of obj with the given name to value.
604  *
605  * @param[in] obj A struct whose first element is a pointer to an AVClass.
606  * @param[in] name the name of the field to set
607  * @param[in] val The value to set. In case of av_opt_set() if the field is not
608  * of a string type, then the given string is parsed.
609  * SI postfixes and some named scalars are supported.
610  * If the field is of a numeric type, it has to be a numeric or named
611  * scalar. Behavior with more than one scalar and +- infix operators
612  * is undefined.
613  * If the field is of a flags type, it has to be a sequence of numeric
614  * scalars or named flags separated by '+' or '-'. Prefixing a flag
615  * with '+' causes it to be set without affecting the other flags;
616  * similarly, '-' unsets a flag.
617  * @param search_flags flags passed to av_opt_find2. I.e. if AV_OPT_SEARCH_CHILDREN
618  * is passed here, then the option may be set on a child of obj.
619  *
620  * @return 0 if the value has been set, or an AVERROR code in case of
621  * error:
622  * AVERROR_OPTION_NOT_FOUND if no matching option exists
623  * AVERROR(ERANGE) if the value is out of range
624  * AVERROR(EINVAL) if the value is not valid
625  */
626 int av_opt_set       (void *obj, const char *name, const char *val, int search_flags);
627 int av_opt_set_int   (void *obj, const char *name, int64_t     val, int search_flags);
628 int av_opt_set_double(void *obj, const char *name, double      val, int search_flags);
629 int av_opt_set_q     (void *obj, const char *name, AVRational  val, int search_flags);
630 int av_opt_set_bin   (void *obj, const char *name, const uint8_t *val, int size, int search_flags);
631 /**
632  * @}
633  */
634
635 /**
636  * @defgroup opt_get_funcs Option getting functions
637  * @{
638  * Those functions get a value of the option with the given name from an object.
639  *
640  * @param[in] obj a struct whose first element is a pointer to an AVClass.
641  * @param[in] name name of the option to get.
642  * @param[in] search_flags flags passed to av_opt_find2. I.e. if AV_OPT_SEARCH_CHILDREN
643  * is passed here, then the option may be found in a child of obj.
644  * @param[out] out_val value of the option will be written here
645  * @return 0 on success, a negative error code otherwise
646  */
647 /**
648  * @note the returned string will av_malloc()ed and must be av_free()ed by the caller
649  */
650 int av_opt_get       (void *obj, const char *name, int search_flags, uint8_t   **out_val);
651 int av_opt_get_int   (void *obj, const char *name, int search_flags, int64_t    *out_val);
652 int av_opt_get_double(void *obj, const char *name, int search_flags, double     *out_val);
653 int av_opt_get_q     (void *obj, const char *name, int search_flags, AVRational *out_val);
654 /**
655  * @}
656  */
657 /**
658  * Gets a pointer to the requested field in a struct.
659  * This function allows accessing a struct even when its fields are moved or
660  * renamed since the application making the access has been compiled,
661  *
662  * @returns a pointer to the field, it can be cast to the correct type and read
663  *          or written to.
664  */
665 void *av_opt_ptr(const AVClass *avclass, void *obj, const char *name);
666 /**
667  * @}
668  */
669
670 #endif /* AVUTIL_OPT_H */