opt.h 35 KB

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