opt.h 36 KB

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