FFmpeg
opt.h
Go to the documentation of this file.
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 "channel_layout.h"
32 #include "dict.h"
33 #include "log.h"
34 #include "pixfmt.h"
35 #include "samplefmt.h"
36 
37 /**
38  * @defgroup avoptions AVOptions
39  * @ingroup lavu_data
40  * @{
41  * AVOptions provide a generic system to declare options on arbitrary structs
42  * ("objects"). An option can have a help text, a type and a range of possible
43  * values. Options may then be enumerated, read and written to.
44  *
45  * There are two modes of access to members of AVOption and its child structs.
46  * One is called 'native access', and refers to access from the code that
47  * declares the AVOption in question. The other is 'foreign access', and refers
48  * to access from other code.
49  *
50  * Certain struct members in this header are documented as 'native access only'
51  * or similar - it means that only the code that declared the AVOption in
52  * question is allowed to access the field. This allows us to extend the
53  * semantics of those fields without breaking API compatibility.
54  *
55  * @section avoptions_scope Scope of AVOptions
56  *
57  * AVOptions is designed to support any set of multimedia configuration options
58  * that can be defined at compile-time. Although it is mainly used to expose
59  * FFmpeg options, you are welcome to adapt it to your own use case.
60  *
61  * No single approach can ever fully solve the problem of configuration,
62  * but please submit a patch if you believe you have found a problem
63  * that is best solved by extending AVOptions.
64  *
65  * @section avoptions_implement Implementing AVOptions
66  * This section describes how to add AVOptions capabilities to a struct.
67  *
68  * All AVOptions-related information is stored in an AVClass. Therefore
69  * the first member of the struct should be a pointer to an AVClass describing it.
70  * The option field of the AVClass must be set to a NULL-terminated static array
71  * of AVOptions. Each AVOption must have a non-empty name, a type, a default
72  * value and for number-type AVOptions also a range of allowed values. It must
73  * also declare an offset in bytes from the start of the struct, where the field
74  * associated with this AVOption is located. Other fields in the AVOption struct
75  * should also be set when applicable, but are not required.
76  *
77  * The following example illustrates an AVOptions-enabled struct:
78  * @code
79  * typedef struct test_struct {
80  * const AVClass *class;
81  * int int_opt;
82  * char *str_opt;
83  * uint8_t *bin_opt;
84  * int bin_len;
85  * } test_struct;
86  *
87  * static const AVOption test_options[] = {
88  * { "test_int", "This is a test option of int type.", offsetof(test_struct, int_opt),
89  * AV_OPT_TYPE_INT, { .i64 = -1 }, INT_MIN, INT_MAX },
90  * { "test_str", "This is a test option of string type.", offsetof(test_struct, str_opt),
91  * AV_OPT_TYPE_STRING },
92  * { "test_bin", "This is a test option of binary type.", offsetof(test_struct, bin_opt),
93  * AV_OPT_TYPE_BINARY },
94  * { NULL },
95  * };
96  *
97  * static const AVClass test_class = {
98  * .class_name = "test class",
99  * .item_name = av_default_item_name,
100  * .option = test_options,
101  * .version = LIBAVUTIL_VERSION_INT,
102  * };
103  * @endcode
104  *
105  * Next, when allocating your struct, you must ensure that the AVClass pointer
106  * is set to the correct value. Then, av_opt_set_defaults() can be called to
107  * initialize defaults. After that the struct is ready to be used with the
108  * AVOptions API.
109  *
110  * When cleaning up, you may use the av_opt_free() function to automatically
111  * free all the allocated string and binary options.
112  *
113  * Continuing with the above example:
114  *
115  * @code
116  * test_struct *alloc_test_struct(void)
117  * {
118  * test_struct *ret = av_mallocz(sizeof(*ret));
119  * ret->class = &test_class;
120  * av_opt_set_defaults(ret);
121  * return ret;
122  * }
123  * void free_test_struct(test_struct **foo)
124  * {
125  * av_opt_free(*foo);
126  * av_freep(foo);
127  * }
128  * @endcode
129  *
130  * @subsection avoptions_implement_nesting Nesting
131  * It may happen that an AVOptions-enabled struct contains another
132  * AVOptions-enabled struct as a member (e.g. AVCodecContext in
133  * libavcodec exports generic options, while its priv_data field exports
134  * codec-specific options). In such a case, it is possible to set up the
135  * parent struct to export a child's options. To do that, simply
136  * implement AVClass.child_next() and AVClass.child_class_iterate() in the
137  * parent struct's AVClass.
138  * Assuming that the test_struct from above now also contains a
139  * child_struct field:
140  *
141  * @code
142  * typedef struct child_struct {
143  * AVClass *class;
144  * int flags_opt;
145  * } child_struct;
146  * static const AVOption child_opts[] = {
147  * { "test_flags", "This is a test option of flags type.",
148  * offsetof(child_struct, flags_opt), AV_OPT_TYPE_FLAGS, { .i64 = 0 }, INT_MIN, INT_MAX },
149  * { NULL },
150  * };
151  * static const AVClass child_class = {
152  * .class_name = "child class",
153  * .item_name = av_default_item_name,
154  * .option = child_opts,
155  * .version = LIBAVUTIL_VERSION_INT,
156  * };
157  *
158  * void *child_next(void *obj, void *prev)
159  * {
160  * test_struct *t = obj;
161  * if (!prev && t->child_struct)
162  * return t->child_struct;
163  * return NULL
164  * }
165  * const AVClass child_class_iterate(void **iter)
166  * {
167  * const AVClass *c = *iter ? NULL : &child_class;
168  * *iter = (void*)(uintptr_t)c;
169  * return c;
170  * }
171  * @endcode
172  * Putting child_next() and child_class_iterate() as defined above into
173  * test_class will now make child_struct's options accessible through
174  * test_struct (again, proper setup as described above needs to be done on
175  * child_struct right after it is created).
176  *
177  * From the above example it might not be clear why both child_next()
178  * and child_class_iterate() are needed. The distinction is that child_next()
179  * iterates over actually existing objects, while child_class_iterate()
180  * iterates over all possible child classes. E.g. if an AVCodecContext
181  * was initialized to use a codec which has private options, then its
182  * child_next() will return AVCodecContext.priv_data and finish
183  * iterating. OTOH child_class_iterate() on AVCodecContext.av_class will
184  * iterate over all available codecs with private options.
185  *
186  * @subsection avoptions_implement_named_constants Named constants
187  * It is possible to create named constants for options. Simply set the unit
188  * field of the option the constants should apply to a string and
189  * create the constants themselves as options of type AV_OPT_TYPE_CONST
190  * with their unit field set to the same string.
191  * Their default_val field should contain the value of the named
192  * constant.
193  * For example, to add some named constants for the test_flags option
194  * above, put the following into the child_opts array:
195  * @code
196  * { "test_flags", "This is a test option of flags type.",
197  * offsetof(child_struct, flags_opt), AV_OPT_TYPE_FLAGS, { .i64 = 0 }, INT_MIN, INT_MAX, "test_unit" },
198  * { "flag1", "This is a flag with value 16", 0, AV_OPT_TYPE_CONST, { .i64 = 16 }, 0, 0, "test_unit" },
199  * @endcode
200  *
201  * @section avoptions_use Using AVOptions
202  * This section deals with accessing options in an AVOptions-enabled struct.
203  * Such structs in FFmpeg are e.g. AVCodecContext in libavcodec or
204  * AVFormatContext in libavformat.
205  *
206  * @subsection avoptions_use_examine Examining AVOptions
207  * The basic functions for examining options are av_opt_next(), which iterates
208  * over all options defined for one object, and av_opt_find(), which searches
209  * for an option with the given name.
210  *
211  * The situation is more complicated with nesting. An AVOptions-enabled struct
212  * may have AVOptions-enabled children. Passing the AV_OPT_SEARCH_CHILDREN flag
213  * to av_opt_find() will make the function search children recursively.
214  *
215  * For enumerating there are basically two cases. The first is when you want to
216  * get all options that may potentially exist on the struct and its children
217  * (e.g. when constructing documentation). In that case you should call
218  * av_opt_child_class_iterate() recursively on the parent struct's AVClass. The
219  * second case is when you have an already initialized struct with all its
220  * children and you want to get all options that can be actually written or read
221  * from it. In that case you should call av_opt_child_next() recursively (and
222  * av_opt_next() on each result).
223  *
224  * @subsection avoptions_use_get_set Reading and writing AVOptions
225  * When setting options, you often have a string read directly from the
226  * user. In such a case, simply passing it to av_opt_set() is enough. For
227  * non-string type options, av_opt_set() will parse the string according to the
228  * option type.
229  *
230  * Similarly av_opt_get() will read any option type and convert it to a string
231  * which will be returned. Do not forget that the string is allocated, so you
232  * have to free it with av_free().
233  *
234  * In some cases it may be more convenient to put all options into an
235  * AVDictionary and call av_opt_set_dict() on it. A specific case of this
236  * are the format/codec open functions in lavf/lavc which take a dictionary
237  * filled with option as a parameter. This makes it possible to set some options
238  * that cannot be set otherwise, since e.g. the input file format is not known
239  * before the file is actually opened.
240  */
241 
242 /**
243  * An option type determines:
244  * - for native access, the underlying C type of the field that an AVOption
245  * refers to;
246  * - for foreign access, the semantics of accessing the option through this API,
247  * e.g. which av_opt_get_*() and av_opt_set_*() functions can be called, or
248  * what format will av_opt_get()/av_opt_set() expect/produce.
249  */
251  /**
252  * Underlying C type is unsigned int.
253  */
255  /**
256  * Underlying C type is int.
257  */
259  /**
260  * Underlying C type is int64_t.
261  */
263  /**
264  * Underlying C type is double.
265  */
267  /**
268  * Underlying C type is float.
269  */
271  /**
272  * Underlying C type is a uint8_t* that is either NULL or points to a C
273  * string allocated with the av_malloc() family of functions.
274  */
276  /**
277  * Underlying C type is AVRational.
278  */
280  /**
281  * Underlying C type is a uint8_t* that is either NULL or points to an array
282  * allocated with the av_malloc() family of functions. The pointer is
283  * immediately followed by an int containing the array length in bytes.
284  */
286  /**
287  * Underlying C type is AVDictionary*.
288  */
290  /**
291  * Underlying C type is uint64_t.
292  */
294  /**
295  * Special option type for declaring named constants. Does not correspond to
296  * an actual field in the object, offset must be 0.
297  */
299  /**
300  * Underlying C type is two consecutive integers.
301  */
303  /**
304  * Underlying C type is enum AVPixelFormat.
305  */
307  /**
308  * Underlying C type is enum AVSampleFormat.
309  */
311  /**
312  * Underlying C type is AVRational.
313  */
315  /**
316  * Underlying C type is int64_t.
317  */
319  /**
320  * Underlying C type is uint8_t[4].
321  */
323  /**
324  * Underlying C type is int.
325  */
327  /**
328  * Underlying C type is AVChannelLayout.
329  */
331  /**
332  * Underlying C type is unsigned int.
333  */
335 
336  /**
337  * May be combined with another regular option type to declare an array
338  * option.
339  *
340  * For array options, @ref AVOption.offset should refer to a pointer
341  * corresponding to the option type. The pointer should be immediately
342  * followed by an unsigned int that will store the number of elements in the
343  * array.
344  */
346 };
347 
348 /**
349  * A generic parameter which can be set by the user for muxing or encoding.
350  */
351 #define AV_OPT_FLAG_ENCODING_PARAM (1 << 0)
352 /**
353  * A generic parameter which can be set by the user for demuxing or decoding.
354  */
355 #define AV_OPT_FLAG_DECODING_PARAM (1 << 1)
356 #define AV_OPT_FLAG_AUDIO_PARAM (1 << 3)
357 #define AV_OPT_FLAG_VIDEO_PARAM (1 << 4)
358 #define AV_OPT_FLAG_SUBTITLE_PARAM (1 << 5)
359 /**
360  * The option is intended for exporting values to the caller.
361  */
362 #define AV_OPT_FLAG_EXPORT (1 << 6)
363 /**
364  * The option may not be set through the AVOptions API, only read.
365  * This flag only makes sense when AV_OPT_FLAG_EXPORT is also set.
366  */
367 #define AV_OPT_FLAG_READONLY (1 << 7)
368 /**
369  * A generic parameter which can be set by the user for bit stream filtering.
370  */
371 #define AV_OPT_FLAG_BSF_PARAM (1 << 8)
372 
373 /**
374  * A generic parameter which can be set by the user at runtime.
375  */
376 #define AV_OPT_FLAG_RUNTIME_PARAM (1 << 15)
377 /**
378  * A generic parameter which can be set by the user for filtering.
379  */
380 #define AV_OPT_FLAG_FILTERING_PARAM (1 << 16)
381 /**
382  * Set if option is deprecated, users should refer to AVOption.help text for
383  * more information.
384  */
385 #define AV_OPT_FLAG_DEPRECATED (1 << 17)
386 /**
387  * Set if option constants can also reside in child objects.
388  */
389 #define AV_OPT_FLAG_CHILD_CONSTS (1 << 18)
390 
391 /**
392  * May be set as default_val for AV_OPT_TYPE_FLAG_ARRAY options.
393  */
394 typedef struct AVOptionArrayDef {
395  /**
396  * Native access only.
397  *
398  * Default value of the option, as would be serialized by av_opt_get() (i.e.
399  * using the value of sep as the separator).
400  */
401  const char *def;
402 
403  /**
404  * Minimum number of elements in the array. When this field is non-zero, def
405  * must be non-NULL and contain at least this number of elements.
406  */
407  unsigned size_min;
408  /**
409  * Maximum number of elements in the array, 0 when unlimited.
410  */
411  unsigned size_max;
412 
413  /**
414  * Separator between array elements in string representations of this
415  * option, used by av_opt_set() and av_opt_get(). It must be a printable
416  * ASCII character, excluding alphanumeric and the backslash. A comma is
417  * used when sep=0.
418  *
419  * The separator and the backslash must be backslash-escaped in order to
420  * appear in string representations of the option value.
421  */
422  char sep;
424 
425 /**
426  * AVOption
427  */
428 typedef struct AVOption {
429  const char *name;
430 
431  /**
432  * short English help text
433  * @todo What about other languages?
434  */
435  const char *help;
436 
437  /**
438  * Native access only.
439  *
440  * The offset relative to the context structure where the option
441  * value is stored. It should be 0 for named constants.
442  */
443  int offset;
445 
446  /**
447  * Native access only, except when documented otherwise.
448  * the default value for scalar options
449  */
450  union {
452  double dbl;
453  const char *str;
454  /* TODO those are unused now */
456 
457  /**
458  * Used for AV_OPT_TYPE_FLAG_ARRAY options. May be NULL.
459  *
460  * Foreign access to some members allowed, as noted in AVOptionArrayDef
461  * documentation.
462  */
464  } default_val;
465  double min; ///< minimum valid value for the option
466  double max; ///< maximum valid value for the option
467 
468  /**
469  * A combination of AV_OPT_FLAG_*.
470  */
471  int flags;
472 
473  /**
474  * The logical unit to which the option belongs. Non-constant
475  * options and corresponding named constants share the same
476  * unit. May be NULL.
477  */
478  const char *unit;
479 } AVOption;
480 
481 /**
482  * A single allowed range of values, or a single allowed value.
483  */
484 typedef struct AVOptionRange {
485  const char *str;
486  /**
487  * Value range.
488  * For string ranges this represents the min/max length.
489  * For dimensions this represents the min/max pixel count or width/height in multi-component case.
490  */
492  /**
493  * Value's component range.
494  * For string this represents the unicode range for chars, 0-127 limits to ASCII.
495  */
497  /**
498  * Range flag.
499  * If set to 1 the struct encodes a range, if set to 0 a single value.
500  */
501  int is_range;
502 } AVOptionRange;
503 
504 /**
505  * List of AVOptionRange structs.
506  */
507 typedef struct AVOptionRanges {
508  /**
509  * Array of option ranges.
510  *
511  * Most of option types use just one component.
512  * Following describes multi-component option types:
513  *
514  * AV_OPT_TYPE_IMAGE_SIZE:
515  * component index 0: range of pixel count (width * height).
516  * component index 1: range of width.
517  * component index 2: range of height.
518  *
519  * @note To obtain multi-component version of this structure, user must
520  * provide AV_OPT_MULTI_COMPONENT_RANGE to av_opt_query_ranges or
521  * av_opt_query_ranges_default function.
522  *
523  * Multi-component range can be read as in following example:
524  *
525  * @code
526  * int range_index, component_index;
527  * AVOptionRanges *ranges;
528  * AVOptionRange *range[3]; //may require more than 3 in the future.
529  * av_opt_query_ranges(&ranges, obj, key, AV_OPT_MULTI_COMPONENT_RANGE);
530  * for (range_index = 0; range_index < ranges->nb_ranges; range_index++) {
531  * for (component_index = 0; component_index < ranges->nb_components; component_index++)
532  * range[component_index] = ranges->range[ranges->nb_ranges * component_index + range_index];
533  * //do something with range here.
534  * }
535  * av_opt_freep_ranges(&ranges);
536  * @endcode
537  */
539  /**
540  * Number of ranges per component.
541  */
543  /**
544  * Number of components.
545  */
548 
549 /**
550  * @defgroup opt_mng AVOption (un)initialization and inspection.
551  * @{
552  */
553 
554 /**
555  * Set the values of all AVOption fields to their default values.
556  *
557  * @param s an AVOption-enabled struct (its first member must be a pointer to AVClass)
558  */
559 void av_opt_set_defaults(void *s);
560 
561 /**
562  * Set the values of all AVOption fields to their default values. Only these
563  * AVOption fields for which (opt->flags & mask) == flags will have their
564  * default applied to s.
565  *
566  * @param s an AVOption-enabled struct (its first member must be a pointer to AVClass)
567  * @param mask combination of AV_OPT_FLAG_*
568  * @param flags combination of AV_OPT_FLAG_*
569  */
570 void av_opt_set_defaults2(void *s, int mask, int flags);
571 
572 /**
573  * Free all allocated objects in obj.
574  */
575 void av_opt_free(void *obj);
576 
577 /**
578  * Iterate over all AVOptions belonging to obj.
579  *
580  * @param obj an AVOptions-enabled struct or a double pointer to an
581  * AVClass describing it.
582  * @param prev result of the previous call to av_opt_next() on this object
583  * or NULL
584  * @return next AVOption or NULL
585  */
586 const AVOption *av_opt_next(const void *obj, const AVOption *prev);
587 
588 /**
589  * Iterate over AVOptions-enabled children of obj.
590  *
591  * @param prev result of a previous call to this function or NULL
592  * @return next AVOptions-enabled child or NULL
593  */
594 void *av_opt_child_next(void *obj, void *prev);
595 
596 /**
597  * Iterate over potential AVOptions-enabled children of parent.
598  *
599  * @param iter a pointer where iteration state is stored.
600  * @return AVClass corresponding to next potential child or NULL
601  */
602 const AVClass *av_opt_child_class_iterate(const AVClass *parent, void **iter);
603 
604 #define AV_OPT_SEARCH_CHILDREN (1 << 0) /**< Search in possible children of the
605  given object first. */
606 /**
607  * The obj passed to av_opt_find() is fake -- only a double pointer to AVClass
608  * instead of a required pointer to a struct containing AVClass. This is
609  * useful for searching for options without needing to allocate the corresponding
610  * object.
611  */
612 #define AV_OPT_SEARCH_FAKE_OBJ (1 << 1)
613 
614 /**
615  * In av_opt_get, return NULL if the option has a pointer type and is set to NULL,
616  * rather than returning an empty string.
617  */
618 #define AV_OPT_ALLOW_NULL (1 << 2)
619 
620 /**
621  * May be used with av_opt_set_array() to signal that new elements should
622  * replace the existing ones in the indicated range.
623  */
624 #define AV_OPT_ARRAY_REPLACE (1 << 3)
625 
626 /**
627  * Allows av_opt_query_ranges and av_opt_query_ranges_default to return more than
628  * one component for certain option types.
629  * @see AVOptionRanges for details.
630  */
631 #define AV_OPT_MULTI_COMPONENT_RANGE (1 << 12)
632 
633 /**
634  * Look for an option in an object. Consider only options which
635  * have all the specified flags set.
636  *
637  * @param[in] obj A pointer to a struct whose first element is a
638  * pointer to an AVClass.
639  * Alternatively a double pointer to an AVClass, if
640  * AV_OPT_SEARCH_FAKE_OBJ search flag is set.
641  * @param[in] name The name of the option to look for.
642  * @param[in] unit When searching for named constants, name of the unit
643  * it belongs to.
644  * @param opt_flags Find only options with all the specified flags set (AV_OPT_FLAG).
645  * @param search_flags A combination of AV_OPT_SEARCH_*.
646  *
647  * @return A pointer to the option found, or NULL if no option
648  * was found.
649  *
650  * @note Options found with AV_OPT_SEARCH_CHILDREN flag may not be settable
651  * directly with av_opt_set(). Use special calls which take an options
652  * AVDictionary (e.g. avformat_open_input()) to set options found with this
653  * flag.
654  */
655 const AVOption *av_opt_find(void *obj, const char *name, const char *unit,
656  int opt_flags, int search_flags);
657 
658 /**
659  * Look for an option in an object. Consider only options which
660  * have all the specified flags set.
661  *
662  * @param[in] obj A pointer to a struct whose first element is a
663  * pointer to an AVClass.
664  * Alternatively a double pointer to an AVClass, if
665  * AV_OPT_SEARCH_FAKE_OBJ search flag is set.
666  * @param[in] name The name of the option to look for.
667  * @param[in] unit When searching for named constants, name of the unit
668  * it belongs to.
669  * @param opt_flags Find only options with all the specified flags set (AV_OPT_FLAG).
670  * @param search_flags A combination of AV_OPT_SEARCH_*.
671  * @param[out] target_obj if non-NULL, an object to which the option belongs will be
672  * written here. It may be different from obj if AV_OPT_SEARCH_CHILDREN is present
673  * in search_flags. This parameter is ignored if search_flags contain
674  * AV_OPT_SEARCH_FAKE_OBJ.
675  *
676  * @return A pointer to the option found, or NULL if no option
677  * was found.
678  */
679 const AVOption *av_opt_find2(void *obj, const char *name, const char *unit,
680  int opt_flags, int search_flags, void **target_obj);
681 
682 /**
683  * Show the obj options.
684  *
685  * @param req_flags requested flags for the options to show. Show only the
686  * options for which it is opt->flags & req_flags.
687  * @param rej_flags rejected flags for the options to show. Show only the
688  * options for which it is !(opt->flags & req_flags).
689  * @param av_log_obj log context to use for showing the options
690  */
691 int av_opt_show2(void *obj, void *av_log_obj, int req_flags, int rej_flags);
692 
693 /**
694  * Extract a key-value pair from the beginning of a string.
695  *
696  * @param ropts pointer to the options string, will be updated to
697  * point to the rest of the string (one of the pairs_sep
698  * or the final NUL)
699  * @param key_val_sep a 0-terminated list of characters used to separate
700  * key from value, for example '='
701  * @param pairs_sep a 0-terminated list of characters used to separate
702  * two pairs from each other, for example ':' or ','
703  * @param flags flags; see the AV_OPT_FLAG_* values below
704  * @param rkey parsed key; must be freed using av_free()
705  * @param rval parsed value; must be freed using av_free()
706  *
707  * @return >=0 for success, or a negative value corresponding to an
708  * AVERROR code in case of error; in particular:
709  * AVERROR(EINVAL) if no key is present
710  *
711  */
712 int av_opt_get_key_value(const char **ropts,
713  const char *key_val_sep, const char *pairs_sep,
714  unsigned flags,
715  char **rkey, char **rval);
716 
717 enum {
718 
719  /**
720  * Accept to parse a value without a key; the key will then be returned
721  * as NULL.
722  */
724 };
725 
726 /**
727  * @}
728  */
729 
730 /**
731  * @defgroup opt_write Setting and modifying option values
732  * @{
733  */
734 
735 /**
736  * Parse the key/value pairs list in opts. For each key/value pair
737  * found, stores the value in the field in ctx that is named like the
738  * key. ctx must be an AVClass context, storing is done using
739  * AVOptions.
740  *
741  * @param opts options string to parse, may be NULL
742  * @param key_val_sep a 0-terminated list of characters used to
743  * separate key from value
744  * @param pairs_sep a 0-terminated list of characters used to separate
745  * two pairs from each other
746  * @return the number of successfully set key/value pairs, or a negative
747  * value corresponding to an AVERROR code in case of error:
748  * AVERROR(EINVAL) if opts cannot be parsed,
749  * the error code issued by av_opt_set() if a key/value pair
750  * cannot be set
751  */
752 int av_set_options_string(void *ctx, const char *opts,
753  const char *key_val_sep, const char *pairs_sep);
754 
755 /**
756  * Parse the key-value pairs list in opts. For each key=value pair found,
757  * set the value of the corresponding option in ctx.
758  *
759  * @param ctx the AVClass object to set options on
760  * @param opts the options string, key-value pairs separated by a
761  * delimiter
762  * @param shorthand a NULL-terminated array of options names for shorthand
763  * notation: if the first field in opts has no key part,
764  * the key is taken from the first element of shorthand;
765  * then again for the second, etc., until either opts is
766  * finished, shorthand is finished or a named option is
767  * found; after that, all options must be named
768  * @param key_val_sep a 0-terminated list of characters used to separate
769  * key from value, for example '='
770  * @param pairs_sep a 0-terminated list of characters used to separate
771  * two pairs from each other, for example ':' or ','
772  * @return the number of successfully set key=value pairs, or a negative
773  * value corresponding to an AVERROR code in case of error:
774  * AVERROR(EINVAL) if opts cannot be parsed,
775  * the error code issued by av_set_string3() if a key/value pair
776  * cannot be set
777  *
778  * Options names must use only the following characters: a-z A-Z 0-9 - . / _
779  * Separators must use characters distinct from option names and from each
780  * other.
781  */
782 int av_opt_set_from_string(void *ctx, const char *opts,
783  const char *const *shorthand,
784  const char *key_val_sep, const char *pairs_sep);
785 
786 /**
787  * Set all the options from a given dictionary on an object.
788  *
789  * @param obj a struct whose first element is a pointer to AVClass
790  * @param options options to process. This dictionary will be freed and replaced
791  * by a new one containing all options not found in obj.
792  * Of course this new dictionary needs to be freed by caller
793  * with av_dict_free().
794  *
795  * @return 0 on success, a negative AVERROR if some option was found in obj,
796  * but could not be set.
797  *
798  * @see av_dict_copy()
799  */
800 int av_opt_set_dict(void *obj, struct AVDictionary **options);
801 
802 
803 /**
804  * Set all the options from a given dictionary on an object.
805  *
806  * @param obj a struct whose first element is a pointer to AVClass
807  * @param options options to process. This dictionary will be freed and replaced
808  * by a new one containing all options not found in obj.
809  * Of course this new dictionary needs to be freed by caller
810  * with av_dict_free().
811  * @param search_flags A combination of AV_OPT_SEARCH_*.
812  *
813  * @return 0 on success, a negative AVERROR if some option was found in obj,
814  * but could not be set.
815  *
816  * @see av_dict_copy()
817  */
818 int av_opt_set_dict2(void *obj, struct AVDictionary **options, int search_flags);
819 
820 /**
821  * Copy options from src object into dest object.
822  *
823  * The underlying AVClass of both src and dest must coincide. The guarantee
824  * below does not apply if this is not fulfilled.
825  *
826  * Options that require memory allocation (e.g. string or binary) are malloc'ed in dest object.
827  * Original memory allocated for such options is freed unless both src and dest options points to the same memory.
828  *
829  * Even on error it is guaranteed that allocated options from src and dest
830  * no longer alias each other afterwards; in particular calling av_opt_free()
831  * on both src and dest is safe afterwards if dest has been memdup'ed from src.
832  *
833  * @param dest Object to copy from
834  * @param src Object to copy into
835  * @return 0 on success, negative on error
836  */
837 int av_opt_copy(void *dest, const void *src);
838 
839 /**
840  * @defgroup opt_set_funcs Option setting functions
841  * @{
842  * Those functions set the field of obj with the given name to value.
843  *
844  * @param[in] obj A struct whose first element is a pointer to an AVClass.
845  * @param[in] name the name of the field to set
846  * @param[in] val The value to set. In case of av_opt_set() if the field is not
847  * of a string type, then the given string is parsed.
848  * SI postfixes and some named scalars are supported.
849  * If the field is of a numeric type, it has to be a numeric or named
850  * scalar. Behavior with more than one scalar and +- infix operators
851  * is undefined.
852  * If the field is of a flags type, it has to be a sequence of numeric
853  * scalars or named flags separated by '+' or '-'. Prefixing a flag
854  * with '+' causes it to be set without affecting the other flags;
855  * similarly, '-' unsets a flag.
856  * If the field is of a dictionary type, it has to be a ':' separated list of
857  * key=value parameters. Values containing ':' special characters must be
858  * escaped.
859  * @param search_flags flags passed to av_opt_find2. I.e. if AV_OPT_SEARCH_CHILDREN
860  * is passed here, then the option may be set on a child of obj.
861  *
862  * @return 0 if the value has been set, or an AVERROR code in case of
863  * error:
864  * AVERROR_OPTION_NOT_FOUND if no matching option exists
865  * AVERROR(ERANGE) if the value is out of range
866  * AVERROR(EINVAL) if the value is not valid
867  */
868 int av_opt_set (void *obj, const char *name, const char *val, int search_flags);
869 int av_opt_set_int (void *obj, const char *name, int64_t val, int search_flags);
870 int av_opt_set_double (void *obj, const char *name, double val, int search_flags);
871 int av_opt_set_q (void *obj, const char *name, AVRational val, int search_flags);
872 int av_opt_set_bin (void *obj, const char *name, const uint8_t *val, int size, int search_flags);
873 int av_opt_set_image_size(void *obj, const char *name, int w, int h, int search_flags);
874 int av_opt_set_pixel_fmt (void *obj, const char *name, enum AVPixelFormat fmt, int search_flags);
875 int av_opt_set_sample_fmt(void *obj, const char *name, enum AVSampleFormat fmt, int search_flags);
876 int av_opt_set_video_rate(void *obj, const char *name, AVRational val, int search_flags);
877 /**
878  * @note Any old chlayout present is discarded and replaced with a copy of the new one. The
879  * caller still owns layout and is responsible for uninitializing it.
880  */
881 int av_opt_set_chlayout(void *obj, const char *name, const AVChannelLayout *layout, int search_flags);
882 /**
883  * @note Any old dictionary present is discarded and replaced with a copy of the new one. The
884  * caller still owns val is and responsible for freeing it.
885  */
886 int av_opt_set_dict_val(void *obj, const char *name, const AVDictionary *val, int search_flags);
887 
888 /**
889  * Add, replace, or remove elements for an array option. Which of these
890  * operations is performed depends on the values of val and search_flags.
891  *
892  * @param start_elem Index of the first array element to modify; must not be
893  * larger than array size as returned by
894  * av_opt_get_array_size().
895  * @param nb_elems number of array elements to modify; when val is NULL,
896  * start_elem+nb_elems must not be larger than array size as
897  * returned by av_opt_get_array_size()
898  *
899  * @param val_type Option type corresponding to the type of val, ignored when val is
900  * NULL.
901  *
902  * The effect of this function will will be as if av_opt_setX()
903  * was called for each element, where X is specified by type.
904  * E.g. AV_OPT_TYPE_STRING corresponds to av_opt_set().
905  *
906  * Typically this should be the same as the scalarized type of
907  * the AVOption being set, but certain conversions are also
908  * possible - the same as those done by the corresponding
909  * av_opt_set*() function. E.g. any option type can be set from
910  * a string, numeric types can be set from int64, double, or
911  * rational, etc.
912  *
913  * @param val Array with nb_elems elements or NULL.
914  *
915  * When NULL, nb_elems array elements starting at start_elem are
916  * removed from the array. Any array elements remaining at the end
917  * are shifted by nb_elems towards the first element in order to keep
918  * the array contiguous.
919  *
920  * Otherwise (val is non-NULL), the type of val must match the
921  * underlying C type as documented for val_type.
922  *
923  * When AV_OPT_ARRAY_REPLACE is not set in search_flags, the array is
924  * enlarged by nb_elems, and the contents of val are inserted at
925  * start_elem. Previously existing array elements from start_elem
926  * onwards (if present) are shifted by nb_elems away from the first
927  * element in order to make space for the new elements.
928  *
929  * When AV_OPT_ARRAY_REPLACE is set in search_flags, the contents
930  * of val replace existing array elements from start_elem to
931  * start_elem+nb_elems (if present). New array size is
932  * max(start_elem + nb_elems, old array size).
933  */
934 int av_opt_set_array(void *obj, const char *name, int search_flags,
935  unsigned int start_elem, unsigned int nb_elems,
936  enum AVOptionType val_type, const void *val);
937 
938 /**
939  * @}
940  * @}
941  */
942 
943 /**
944  * @defgroup opt_read Reading option values
945  * @{
946  */
947 
948 /**
949  * @defgroup opt_get_funcs Option getting functions
950  * @{
951  * Those functions get a value of the option with the given name from an object.
952  *
953  * @param[in] obj a struct whose first element is a pointer to an AVClass.
954  * @param[in] name name of the option to get.
955  * @param[in] search_flags flags passed to av_opt_find2. I.e. if AV_OPT_SEARCH_CHILDREN
956  * is passed here, then the option may be found in a child of obj.
957  * @param[out] out_val value of the option will be written here
958  * @return >=0 on success, a negative error code otherwise
959  */
960 /**
961  * @note the returned string will be av_malloc()ed and must be av_free()ed by the caller
962  *
963  * @note if AV_OPT_ALLOW_NULL is set in search_flags in av_opt_get, and the
964  * option is of type AV_OPT_TYPE_STRING, AV_OPT_TYPE_BINARY or AV_OPT_TYPE_DICT
965  * and is set to NULL, *out_val will be set to NULL instead of an allocated
966  * empty string.
967  */
968 int av_opt_get (void *obj, const char *name, int search_flags, uint8_t **out_val);
969 int av_opt_get_int (void *obj, const char *name, int search_flags, int64_t *out_val);
970 int av_opt_get_double (void *obj, const char *name, int search_flags, double *out_val);
971 int av_opt_get_q (void *obj, const char *name, int search_flags, AVRational *out_val);
972 int av_opt_get_image_size(void *obj, const char *name, int search_flags, int *w_out, int *h_out);
973 int av_opt_get_pixel_fmt (void *obj, const char *name, int search_flags, enum AVPixelFormat *out_fmt);
974 int av_opt_get_sample_fmt(void *obj, const char *name, int search_flags, enum AVSampleFormat *out_fmt);
975 int av_opt_get_video_rate(void *obj, const char *name, int search_flags, AVRational *out_val);
976 /**
977  * @param[out] layout The returned layout is a copy of the actual value and must
978  * be freed with av_channel_layout_uninit() by the caller
979  */
980 int av_opt_get_chlayout(void *obj, const char *name, int search_flags, AVChannelLayout *layout);
981 /**
982  * @param[out] out_val The returned dictionary is a copy of the actual value and must
983  * be freed with av_dict_free() by the caller
984  */
985 int av_opt_get_dict_val(void *obj, const char *name, int search_flags, AVDictionary **out_val);
986 
987 /**
988  * For an array-type option, get the number of elements in the array.
989  */
990 int av_opt_get_array_size(void *obj, const char *name, int search_flags,
991  unsigned int *out_val);
992 
993 /**
994  * For an array-type option, retrieve the values of one or more array elements.
995  *
996  * @param start_elem index of the first array element to retrieve
997  * @param nb_elems number of array elements to retrieve; start_elem+nb_elems
998  * must not be larger than array size as returned by
999  * av_opt_get_array_size()
1000  *
1001  * @param out_type Option type corresponding to the desired output.
1002  *
1003  * The array elements produced by this function will
1004  * will be as if av_opt_getX() was called for each element,
1005  * where X is specified by out_type. E.g. AV_OPT_TYPE_STRING
1006  * corresponds to av_opt_get().
1007  *
1008  * Typically this should be the same as the scalarized type of
1009  * the AVOption being retrieved, but certain conversions are
1010  * also possible - the same as those done by the corresponding
1011  * av_opt_get*() function. E.g. any option type can be retrieved
1012  * as a string, numeric types can be retrieved as int64, double,
1013  * or rational, etc.
1014  *
1015  * @param out_val Array with nb_elems members into which the output will be
1016  * written. The array type must match the underlying C type as
1017  * documented for out_type, and be zeroed on entry to this
1018  * function.
1019  *
1020  * For dynamically allocated types (strings, binary, dicts,
1021  * etc.), the result is owned and freed by the caller.
1022  */
1023 int av_opt_get_array(void *obj, const char *name, int search_flags,
1024  unsigned int start_elem, unsigned int nb_elems,
1025  enum AVOptionType out_type, void *out_val);
1026 /**
1027  * @}
1028  */
1029 
1030 /**
1031  * @defgroup opt_eval_funcs Evaluating option strings
1032  * @{
1033  * This group of functions can be used to evaluate option strings
1034  * and get numbers out of them. They do the same thing as av_opt_set(),
1035  * except the result is written into the caller-supplied pointer.
1036  *
1037  * @param obj a struct whose first element is a pointer to AVClass.
1038  * @param o an option for which the string is to be evaluated.
1039  * @param val string to be evaluated.
1040  * @param *_out value of the string will be written here.
1041  *
1042  * @return 0 on success, a negative number on failure.
1043  */
1044 int av_opt_eval_flags (void *obj, const AVOption *o, const char *val, int *flags_out);
1045 int av_opt_eval_int (void *obj, const AVOption *o, const char *val, int *int_out);
1046 int av_opt_eval_uint (void *obj, const AVOption *o, const char *val, unsigned *uint_out);
1047 int av_opt_eval_int64 (void *obj, const AVOption *o, const char *val, int64_t *int64_out);
1048 int av_opt_eval_float (void *obj, const AVOption *o, const char *val, float *float_out);
1049 int av_opt_eval_double(void *obj, const AVOption *o, const char *val, double *double_out);
1050 int av_opt_eval_q (void *obj, const AVOption *o, const char *val, AVRational *q_out);
1051 /**
1052  * @}
1053  */
1054 
1055 /**
1056  * Check if given option is set to its default value.
1057  *
1058  * Options o must belong to the obj. This function must not be called to check child's options state.
1059  * @see av_opt_is_set_to_default_by_name().
1060  *
1061  * @param obj AVClass object to check option on
1062  * @param o option to be checked
1063  * @return >0 when option is set to its default,
1064  * 0 when option is not set its default,
1065  * <0 on error
1066  */
1067 int av_opt_is_set_to_default(void *obj, const AVOption *o);
1068 
1069 /**
1070  * Check if given option is set to its default value.
1071  *
1072  * @param obj AVClass object to check option on
1073  * @param name option name
1074  * @param search_flags combination of AV_OPT_SEARCH_*
1075  * @return >0 when option is set to its default,
1076  * 0 when option is not set its default,
1077  * <0 on error
1078  */
1079 int av_opt_is_set_to_default_by_name(void *obj, const char *name, int search_flags);
1080 
1081 /**
1082  * Check whether a particular flag is set in a flags field.
1083  *
1084  * @param field_name the name of the flag field option
1085  * @param flag_name the name of the flag to check
1086  * @return non-zero if the flag is set, zero if the flag isn't set,
1087  * isn't of the right type, or the flags field doesn't exist.
1088  */
1089 int av_opt_flag_is_set(void *obj, const char *field_name, const char *flag_name);
1090 
1091 #define AV_OPT_SERIALIZE_SKIP_DEFAULTS 0x00000001 ///< Serialize options that are not set to default values only.
1092 #define AV_OPT_SERIALIZE_OPT_FLAGS_EXACT 0x00000002 ///< Serialize options that exactly match opt_flags only.
1093 #define AV_OPT_SERIALIZE_SEARCH_CHILDREN 0x00000004 ///< Serialize options in possible children of the given object.
1094 
1095 /**
1096  * Serialize object's options.
1097  *
1098  * Create a string containing object's serialized options.
1099  * Such string may be passed back to av_opt_set_from_string() in order to restore option values.
1100  * A key/value or pairs separator occurring in the serialized value or
1101  * name string are escaped through the av_escape() function.
1102  *
1103  * @param[in] obj AVClass object to serialize
1104  * @param[in] opt_flags serialize options with all the specified flags set (AV_OPT_FLAG)
1105  * @param[in] flags combination of AV_OPT_SERIALIZE_* flags
1106  * @param[out] buffer Pointer to buffer that will be allocated with string containing serialized options.
1107  * Buffer must be freed by the caller when is no longer needed.
1108  * @param[in] key_val_sep character used to separate key from value
1109  * @param[in] pairs_sep character used to separate two pairs from each other
1110  * @return >= 0 on success, negative on error
1111  * @warning Separators cannot be neither '\\' nor '\0'. They also cannot be the same.
1112  */
1113 int av_opt_serialize(void *obj, int opt_flags, int flags, char **buffer,
1114  const char key_val_sep, const char pairs_sep);
1115 
1116 /**
1117  * @}
1118  */
1119 
1120 /**
1121  * Free an AVOptionRanges struct and set it to NULL.
1122  */
1123 void av_opt_freep_ranges(AVOptionRanges **ranges);
1124 
1125 /**
1126  * Get a list of allowed ranges for the given option.
1127  *
1128  * The returned list may depend on other fields in obj like for example profile.
1129  *
1130  * @param flags is a bitmask of flags, undefined flags should not be set and should be ignored
1131  * AV_OPT_SEARCH_FAKE_OBJ indicates that the obj is a double pointer to a AVClass instead of a full instance
1132  * AV_OPT_MULTI_COMPONENT_RANGE indicates that function may return more than one component, @see AVOptionRanges
1133  *
1134  * The result must be freed with av_opt_freep_ranges.
1135  *
1136  * @return number of components returned on success, a negative error code otherwise
1137  */
1138 int av_opt_query_ranges(AVOptionRanges **, void *obj, const char *key, int flags);
1139 
1140 /**
1141  * Get a default list of allowed ranges for the given option.
1142  *
1143  * This list is constructed without using the AVClass.query_ranges() callback
1144  * and can be used as fallback from within the callback.
1145  *
1146  * @param flags is a bitmask of flags, undefined flags should not be set and should be ignored
1147  * AV_OPT_SEARCH_FAKE_OBJ indicates that the obj is a double pointer to a AVClass instead of a full instance
1148  * AV_OPT_MULTI_COMPONENT_RANGE indicates that function may return more than one component, @see AVOptionRanges
1149  *
1150  * The result must be freed with av_opt_free_ranges.
1151  *
1152  * @return number of components returned on success, a negative error code otherwise
1153  */
1154 int av_opt_query_ranges_default(AVOptionRanges **, void *obj, const char *key, int flags);
1155 
1156 /**
1157  * @}
1158  */
1159 
1160 #endif /* AVUTIL_OPT_H */
AVOptionRange::is_range
int is_range
Range flag.
Definition: opt.h:501
flags
const SwsFlags flags[]
Definition: swscale.c:85
av_opt_get_dict_val
int av_opt_get_dict_val(void *obj, const char *name, int search_flags, AVDictionary **out_val)
Definition: opt.c:1376
av_opt_eval_uint
int av_opt_eval_uint(void *obj, const AVOption *o, const char *val, unsigned *uint_out)
av_opt_set_image_size
int av_opt_set_image_size(void *obj, const char *name, int w, int h, int search_flags)
Definition: opt.c:911
AVOption::i64
int64_t i64
Definition: opt.h:451
AVPixelFormat
AVPixelFormat
Pixel format.
Definition: pixfmt.h:71
name
it s the only field you need to keep assuming you have a context There is some magic you don t need to care about around this just let it vf default minimum maximum flags name is the option name
Definition: writing_filters.txt:88
AVOptionRanges::nb_components
int nb_components
Number of components.
Definition: opt.h:546
av_opt_set_defaults
void av_opt_set_defaults(void *s)
Set the values of all AVOption fields to their default values.
Definition: opt.c:1671
av_opt_flag_is_set
int av_opt_flag_is_set(void *obj, const char *field_name, const char *flag_name)
Check whether a particular flag is set in a flags field.
Definition: opt.c:1392
AV_OPT_TYPE_SAMPLE_FMT
@ AV_OPT_TYPE_SAMPLE_FMT
Underlying C type is enum AVSampleFormat.
Definition: opt.h:310
AVOptionRange::value_max
double value_max
Definition: opt.h:491
av_opt_child_class_iterate
const AVClass * av_opt_child_class_iterate(const AVClass *parent, void **iter)
Iterate over potential AVOptions-enabled children of parent.
Definition: opt.c:2043
AVOptionArrayDef::sep
char sep
Separator between array elements in string representations of this option, used by av_opt_set() and a...
Definition: opt.h:422
AVOptionType
AVOptionType
An option type determines:
Definition: opt.h:250
AVOptionArrayDef
May be set as default_val for AV_OPT_TYPE_FLAG_ARRAY options.
Definition: opt.h:394
AV_OPT_TYPE_VIDEO_RATE
@ AV_OPT_TYPE_VIDEO_RATE
Underlying C type is AVRational.
Definition: opt.h:314
rational.h
int64_t
long long int64_t
Definition: coverity.c:34
AVOption::arr
const AVOptionArrayDef * arr
Used for AV_OPT_TYPE_FLAG_ARRAY options.
Definition: opt.h:463
AVOptionRange::value_min
double value_min
Value range.
Definition: opt.h:491
mask
int mask
Definition: mediacodecdec_common.c:154
AVOptionRanges::nb_ranges
int nb_ranges
Number of ranges per component.
Definition: opt.h:542
av_opt_set_double
int av_opt_set_double(void *obj, const char *name, double val, int search_flags)
Definition: opt.c:874
av_opt_set_from_string
int av_opt_set_from_string(void *ctx, const char *opts, const char *const *shorthand, const char *key_val_sep, const char *pairs_sep)
Parse the key-value pairs list in opts.
Definition: opt.c:1890
AVOption
AVOption.
Definition: opt.h:428
AV_OPT_TYPE_DURATION
@ AV_OPT_TYPE_DURATION
Underlying C type is int64_t.
Definition: opt.h:318
av_opt_find2
const AVOption * av_opt_find2(void *obj, const char *name, const char *unit, int opt_flags, int search_flags, void **target_obj)
Look for an option in an object.
Definition: opt.c:1990
AVOption::help
const char * help
short English help text
Definition: opt.h:435
AVOption::flags
int flags
A combination of AV_OPT_FLAG_*.
Definition: opt.h:471
AVDictionary
Definition: dict.c:32
AV_OPT_TYPE_RATIONAL
@ AV_OPT_TYPE_RATIONAL
Underlying C type is AVRational.
Definition: opt.h:279
av_opt_serialize
int av_opt_serialize(void *obj, int opt_flags, int flags, char **buffer, const char key_val_sep, const char pairs_sep)
Serialize object's options.
Definition: opt.c:2753
AV_OPT_TYPE_BINARY
@ AV_OPT_TYPE_BINARY
Underlying C type is a uint8_t* that is either NULL or points to an array allocated with the av_mallo...
Definition: opt.h:285
av_opt_is_set_to_default
int av_opt_is_set_to_default(void *obj, const AVOption *o)
Check if given option is set to its default value.
Definition: opt.c:2560
AVOption::offset
int offset
Native access only.
Definition: opt.h:443
av_opt_get_key_value
int av_opt_get_key_value(const char **ropts, const char *key_val_sep, const char *pairs_sep, unsigned flags, char **rkey, char **rval)
Extract a key-value pair from the beginning of a string.
Definition: opt.c:1868
samplefmt.h
av_opt_free
void av_opt_free(void *obj)
Free all allocated objects in obj.
Definition: opt.c:1942
val
static double val(void *priv, double ch)
Definition: aeval.c:77
av_opt_set
int av_opt_set(void *obj, const char *name, const char *val, int search_flags)
Definition: opt.c:824
AVOptionArrayDef::def
const char * def
Native access only.
Definition: opt.h:401
AV_OPT_TYPE_DOUBLE
@ AV_OPT_TYPE_DOUBLE
Underlying C type is double.
Definition: opt.h:266
AVOptionRange::str
const char * str
Definition: opt.h:485
av_opt_set_dict_val
int av_opt_set_dict_val(void *obj, const char *name, const AVDictionary *val, int search_flags)
Definition: opt.c:973
av_opt_set_pixel_fmt
int av_opt_set_pixel_fmt(void *obj, const char *name, enum AVPixelFormat fmt, int search_flags)
Definition: opt.c:963
AV_OPT_TYPE_INT64
@ AV_OPT_TYPE_INT64
Underlying C type is int64_t.
Definition: opt.h:262
av_opt_eval_int64
int av_opt_eval_int64(void *obj, const AVOption *o, const char *val, int64_t *int64_out)
av_set_options_string
int av_set_options_string(void *ctx, const char *opts, const char *key_val_sep, const char *pairs_sep)
Parse the key/value pairs list in opts.
Definition: opt.c:1810
av_opt_get_array_size
int av_opt_get_array_size(void *obj, const char *name, int search_flags, unsigned int *out_val)
For an array-type option, get the number of elements in the array.
Definition: opt.c:2158
ctx
static AVFormatContext * ctx
Definition: movenc.c:49
av_opt_set_array
int av_opt_set_array(void *obj, const char *name, int search_flags, unsigned int start_elem, unsigned int nb_elems, enum AVOptionType val_type, const void *val)
Add, replace, or remove elements for an array option.
Definition: opt.c:2264
key
const char * key
Definition: hwcontext_opencl.c:189
av_opt_get_pixel_fmt
int av_opt_get_pixel_fmt(void *obj, const char *name, int search_flags, enum AVPixelFormat *out_fmt)
Definition: opt.c:1350
av_opt_get_video_rate
int av_opt_get_video_rate(void *obj, const char *name, int search_flags, AVRational *out_val)
Definition: opt.c:1323
AVOptionArrayDef::size_max
unsigned size_max
Maximum number of elements in the array, 0 when unlimited.
Definition: opt.h:411
opts
static AVDictionary * opts
Definition: movenc.c:51
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:76
av_opt_set_video_rate
int av_opt_set_video_rate(void *obj, const char *name, AVRational val, int search_flags)
Definition: opt.c:934
av_opt_set_bin
int av_opt_set_bin(void *obj, const char *name, const uint8_t *val, int size, int search_flags)
Definition: opt.c:884
av_opt_get_double
int av_opt_get_double(void *obj, const char *name, int search_flags, double *out_val)
Definition: opt.c:1277
AVRational
Rational number (pair of numerator and denominator).
Definition: rational.h:58
AV_OPT_TYPE_COLOR
@ AV_OPT_TYPE_COLOR
Underlying C type is uint8_t[4].
Definition: opt.h:322
AV_OPT_TYPE_IMAGE_SIZE
@ AV_OPT_TYPE_IMAGE_SIZE
Underlying C type is two consecutive integers.
Definition: opt.h:302
AV_OPT_TYPE_DICT
@ AV_OPT_TYPE_DICT
Underlying C type is AVDictionary*.
Definition: opt.h:289
AVOptionRange::component_min
double component_min
Value's component range.
Definition: opt.h:496
options
Definition: swscale.c:50
av_opt_get_sample_fmt
int av_opt_get_sample_fmt(void *obj, const char *name, int search_flags, enum AVSampleFormat *out_fmt)
Definition: opt.c:1355
AVOptionRanges::range
AVOptionRange ** range
Array of option ranges.
Definition: opt.h:538
AVOption::min
double min
minimum valid value for the option
Definition: opt.h:465
av_opt_get_array
int av_opt_get_array(void *obj, const char *name, int search_flags, unsigned int start_elem, unsigned int nb_elems, enum AVOptionType out_type, void *out_val)
For an array-type option, retrieve the values of one or more array elements.
Definition: opt.c:2176
AV_OPT_TYPE_UINT
@ AV_OPT_TYPE_UINT
Underlying C type is unsigned int.
Definition: opt.h:334
AV_OPT_TYPE_CHLAYOUT
@ AV_OPT_TYPE_CHLAYOUT
Underlying C type is AVChannelLayout.
Definition: opt.h:330
av_opt_get_int
int av_opt_get_int(void *obj, const char *name, int search_flags, int64_t *out_val)
Definition: opt.c:1262
av_opt_set_int
int av_opt_set_int(void *obj, const char *name, int64_t val, int search_flags)
Definition: opt.c:869
av_opt_copy
int av_opt_copy(void *dest, const void *src)
Copy options from src object into dest object.
Definition: opt.c:2132
av_opt_find
const AVOption * av_opt_find(void *obj, const char *name, const char *unit, int opt_flags, int search_flags)
Look for an option in an object.
Definition: opt.c:1984
AVOptionRange
A single allowed range of values, or a single allowed value.
Definition: opt.h:484
AVChannelLayout
An AVChannelLayout holds information about the channel layout of audio data.
Definition: channel_layout.h:319
AV_OPT_TYPE_FLAG_ARRAY
@ AV_OPT_TYPE_FLAG_ARRAY
May be combined with another regular option type to declare an array option.
Definition: opt.h:345
av_opt_set_chlayout
int av_opt_set_chlayout(void *obj, const char *name, const AVChannelLayout *layout, int search_flags)
Definition: opt.c:989
size
int size
Definition: twinvq_data.h:10344
AV_OPT_FLAG_IMPLICIT_KEY
@ AV_OPT_FLAG_IMPLICIT_KEY
Accept to parse a value without a key; the key will then be returned as NULL.
Definition: opt.h:723
AVOption::name
const char * name
Definition: opt.h:429
av_opt_eval_q
int av_opt_eval_q(void *obj, const AVOption *o, const char *val, AVRational *q_out)
AVOption::q
AVRational q
Definition: opt.h:455
av_opt_show2
int av_opt_show2(void *obj, void *av_log_obj, int req_flags, int rej_flags)
Show the obj options.
Definition: opt.c:1659
AV_OPT_TYPE_FLOAT
@ AV_OPT_TYPE_FLOAT
Underlying C type is float.
Definition: opt.h:270
layout
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel layout
Definition: filter_design.txt:18
av_opt_next
const AVOption * av_opt_next(const void *obj, const AVOption *prev)
Iterate over all AVOptions belonging to obj.
Definition: opt.c:47
log.h
av_opt_set_dict2
int av_opt_set_dict2(void *obj, struct AVDictionary **options, int search_flags)
Set all the options from a given dictionary on an object.
Definition: opt.c:1955
AVOption::str
const char * str
Definition: opt.h:453
s
uint8_t s
Definition: llvidencdsp.c:39
AVSampleFormat
AVSampleFormat
Audio sample formats.
Definition: samplefmt.h:55
AVOptionRanges
List of AVOptionRange structs.
Definition: opt.h:507
AVOption::default_val
union AVOption::@552 default_val
Native access only, except when documented otherwise.
av_opt_eval_double
int av_opt_eval_double(void *obj, const AVOption *o, const char *val, double *double_out)
av_opt_eval_flags
int av_opt_eval_flags(void *obj, const AVOption *o, const char *val, int *flags_out)
AVOption::dbl
double dbl
Definition: opt.h:452
pixfmt.h
av_opt_eval_int
int av_opt_eval_int(void *obj, const AVOption *o, const char *val, int *int_out)
dict.h
AVOption::type
enum AVOptionType type
Definition: opt.h:444
channel_layout.h
buffer
the frame and frame reference mechanism is intended to as much as expensive copies of that data while still allowing the filters to produce correct results The data is stored in buffers represented by AVFrame structures Several references can point to the same frame buffer
Definition: filter_design.txt:49
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Underlying C type is int.
Definition: opt.h:258
av_opt_get_chlayout
int av_opt_get_chlayout(void *obj, const char *name, int search_flags, AVChannelLayout *layout)
Definition: opt.c:1360
av_opt_child_next
void * av_opt_child_next(void *obj, void *prev)
Iterate over AVOptions-enabled children of obj.
Definition: opt.c:2035
AV_OPT_TYPE_PIXEL_FMT
@ AV_OPT_TYPE_PIXEL_FMT
Underlying C type is enum AVPixelFormat.
Definition: opt.h:306
av_opt_set_defaults2
void av_opt_set_defaults2(void *s, int mask, int flags)
Set the values of all AVOption fields to their default values.
Definition: opt.c:1676
av_opt_query_ranges_default
int av_opt_query_ranges_default(AVOptionRanges **, void *obj, const char *key, int flags)
Get a default list of allowed ranges for the given option.
Definition: opt.c:2469
av_opt_query_ranges
int av_opt_query_ranges(AVOptionRanges **, void *obj, const char *key, int flags)
Get a list of allowed ranges for the given option.
Definition: opt.c:2451
av_opt_eval_float
int av_opt_eval_float(void *obj, const AVOption *o, const char *val, float *float_out)
AVOptionArrayDef::size_min
unsigned size_min
Minimum number of elements in the array.
Definition: opt.h:407
AVOption::unit
const char * unit
The logical unit to which the option belongs.
Definition: opt.h:478
av_opt_freep_ranges
void av_opt_freep_ranges(AVOptionRanges **ranges)
Free an AVOptionRanges struct and set it to NULL.
Definition: opt.c:2541
w
uint8_t w
Definition: llvidencdsp.c:39
AVOptionRange::component_max
double component_max
Definition: opt.h:496
AV_OPT_TYPE_BOOL
@ AV_OPT_TYPE_BOOL
Underlying C type is int.
Definition: opt.h:326
AV_OPT_TYPE_FLAGS
@ AV_OPT_TYPE_FLAGS
Underlying C type is unsigned int.
Definition: opt.h:254
av_opt_get
int av_opt_get(void *obj, const char *name, int search_flags, uint8_t **out_val)
Definition: opt.c:1204
h
h
Definition: vp9dsp_template.c:2070
av_opt_set_dict
int av_opt_set_dict(void *obj, struct AVDictionary **options)
Set all the options from a given dictionary on an object.
Definition: opt.c:1979
av_opt_get_image_size
int av_opt_get_image_size(void *obj, const char *name, int search_flags, int *w_out, int *h_out)
Definition: opt.c:1305
AV_OPT_TYPE_STRING
@ AV_OPT_TYPE_STRING
Underlying C type is a uint8_t* that is either NULL or points to a C string allocated with the av_mal...
Definition: opt.h:275
av_opt_set_q
int av_opt_set_q(void *obj, const char *name, AVRational val, int search_flags)
Definition: opt.c:879
av_opt_set_sample_fmt
int av_opt_set_sample_fmt(void *obj, const char *name, enum AVSampleFormat fmt, int search_flags)
Definition: opt.c:968
AVOption::max
double max
maximum valid value for the option
Definition: opt.h:466
AV_OPT_TYPE_CONST
@ AV_OPT_TYPE_CONST
Special option type for declaring named constants.
Definition: opt.h:298
src
#define src
Definition: vp8dsp.c:248
av_opt_is_set_to_default_by_name
int av_opt_is_set_to_default_by_name(void *obj, const char *name, int search_flags)
Check if given option is set to its default value.
Definition: opt.c:2698
AV_OPT_TYPE_UINT64
@ AV_OPT_TYPE_UINT64
Underlying C type is uint64_t.
Definition: opt.h:293
av_opt_get_q
int av_opt_get_q(void *obj, const char *name, int search_flags, AVRational *out_val)
Definition: opt.c:1289