You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

177 lines
6.4KB

  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. enum AVOptionType{
  30. FF_OPT_TYPE_FLAGS,
  31. FF_OPT_TYPE_INT,
  32. FF_OPT_TYPE_INT64,
  33. FF_OPT_TYPE_DOUBLE,
  34. FF_OPT_TYPE_FLOAT,
  35. FF_OPT_TYPE_STRING,
  36. FF_OPT_TYPE_RATIONAL,
  37. FF_OPT_TYPE_BINARY, ///< offset must point to a pointer immediately followed by an int for the length
  38. FF_OPT_TYPE_CONST=128,
  39. };
  40. /**
  41. * AVOption
  42. */
  43. typedef struct AVOption {
  44. const char *name;
  45. /**
  46. * short English help text
  47. * @todo What about other languages?
  48. */
  49. const char *help;
  50. /**
  51. * The offset relative to the context structure where the option
  52. * value is stored. It should be 0 for named constants.
  53. */
  54. int offset;
  55. enum AVOptionType type;
  56. /**
  57. * the default value for scalar options
  58. */
  59. union {
  60. double dbl;
  61. const char *str;
  62. } default_val;
  63. double min; ///< minimum valid value for the option
  64. double max; ///< maximum valid value for the option
  65. int flags;
  66. #define AV_OPT_FLAG_ENCODING_PARAM 1 ///< a generic parameter which can be set by the user for muxing or encoding
  67. #define AV_OPT_FLAG_DECODING_PARAM 2 ///< a generic parameter which can be set by the user for demuxing or decoding
  68. #define AV_OPT_FLAG_METADATA 4 ///< some data extracted or inserted into the file like title, comment, ...
  69. #define AV_OPT_FLAG_AUDIO_PARAM 8
  70. #define AV_OPT_FLAG_VIDEO_PARAM 16
  71. #define AV_OPT_FLAG_SUBTITLE_PARAM 32
  72. //FIXME think about enc-audio, ... style flags
  73. /**
  74. * The logical unit to which the option belongs. Non-constant
  75. * options and corresponding named constants share the same
  76. * unit. May be NULL.
  77. */
  78. const char *unit;
  79. } AVOption;
  80. /**
  81. * Look for an option in obj. Look only for the options which
  82. * have the flags set as specified in mask and flags (that is,
  83. * for which it is the case that opt->flags & mask == flags).
  84. *
  85. * @param[in] obj a pointer to a struct whose first element is a
  86. * pointer to an AVClass
  87. * @param[in] name the name of the option to look for
  88. * @param[in] unit the unit of the option to look for, or any if NULL
  89. * @return a pointer to the option found, or NULL if no option
  90. * has been found
  91. */
  92. const AVOption *av_find_opt(void *obj, const char *name, const char *unit, int mask, int flags);
  93. /**
  94. * Set the field of obj with the given name to value.
  95. *
  96. * @param[in] obj A struct whose first element is a pointer to an
  97. * AVClass.
  98. * @param[in] name the name of the field to set
  99. * @param[in] val The value to set. If the field is not of a string
  100. * type, then the given string is parsed.
  101. * SI postfixes and some named scalars are supported.
  102. * If the field is of a numeric type, it has to be a numeric or named
  103. * scalar. Behavior with more than one scalar and +- infix operators
  104. * is undefined.
  105. * If the field is of a flags type, it has to be a sequence of numeric
  106. * scalars or named flags separated by '+' or '-'. Prefixing a flag
  107. * with '+' causes it to be set without affecting the other flags;
  108. * similarly, '-' unsets a flag.
  109. * @param[out] o_out if non-NULL put here a pointer to the AVOption
  110. * found
  111. * @param alloc when 1 then the old value will be av_freed() and the
  112. * new av_strduped()
  113. * when 0 then no av_free() nor av_strdup() will be used
  114. * @return 0 if the value has been set, or an AVERROR code in case of
  115. * error:
  116. * AVERROR(ENOENT) if no matching option exists
  117. * AVERROR(ERANGE) if the value is out of range
  118. * AVERROR(EINVAL) if the value is not valid
  119. */
  120. int av_set_string3(void *obj, const char *name, const char *val, int alloc, const AVOption **o_out);
  121. const AVOption *av_set_double(void *obj, const char *name, double n);
  122. const AVOption *av_set_q(void *obj, const char *name, AVRational n);
  123. const AVOption *av_set_int(void *obj, const char *name, int64_t n);
  124. double av_get_double(void *obj, const char *name, const AVOption **o_out);
  125. AVRational av_get_q(void *obj, const char *name, const AVOption **o_out);
  126. int64_t av_get_int(void *obj, const char *name, const AVOption **o_out);
  127. const char *av_get_string(void *obj, const char *name, const AVOption **o_out, char *buf, int buf_len);
  128. const AVOption *av_next_option(void *obj, const AVOption *last);
  129. /**
  130. * Show the obj options.
  131. *
  132. * @param req_flags requested flags for the options to show. Show only the
  133. * options for which it is opt->flags & req_flags.
  134. * @param rej_flags rejected flags for the options to show. Show only the
  135. * options for which it is !(opt->flags & req_flags).
  136. * @param av_log_obj log context to use for showing the options
  137. */
  138. int av_opt_show2(void *obj, void *av_log_obj, int req_flags, int rej_flags);
  139. void av_opt_set_defaults(void *s);
  140. void av_opt_set_defaults2(void *s, int mask, int flags);
  141. /**
  142. * Parse the key/value pairs list in opts. For each key/value pair
  143. * found, stores the value in the field in ctx that is named like the
  144. * key. ctx must be an AVClass context, storing is done using
  145. * AVOptions.
  146. *
  147. * @param key_val_sep a 0-terminated list of characters used to
  148. * separate key from value
  149. * @param pairs_sep a 0-terminated list of characters used to separate
  150. * two pairs from each other
  151. * @return the number of successfully set key/value pairs, or a negative
  152. * value corresponding to an AVERROR code in case of error:
  153. * AVERROR(EINVAL) if opts cannot be parsed,
  154. * the error code issued by av_set_string3() if a key/value pair
  155. * cannot be set
  156. */
  157. int av_set_options_string(void *ctx, const char *opts,
  158. const char *key_val_sep, const char *pairs_sep);
  159. #endif /* AVUTIL_OPT_H */