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