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