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.

125 lines
4.3KB

  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 FFMPEG_OPT_H
  22. #define FFMPEG_OPT_H
  23. /**
  24. * @file opt.h
  25. * AVOptions
  26. */
  27. #include "libavutil/rational.h"
  28. enum AVOptionType{
  29. FF_OPT_TYPE_FLAGS,
  30. FF_OPT_TYPE_INT,
  31. FF_OPT_TYPE_INT64,
  32. FF_OPT_TYPE_DOUBLE,
  33. FF_OPT_TYPE_FLOAT,
  34. FF_OPT_TYPE_STRING,
  35. FF_OPT_TYPE_RATIONAL,
  36. FF_OPT_TYPE_BINARY, ///< offset must point to a pointer immediately followed by an int for the length
  37. FF_OPT_TYPE_CONST=128,
  38. };
  39. /**
  40. * AVOption
  41. */
  42. typedef struct AVOption {
  43. const char *name;
  44. /**
  45. * short English help text
  46. * @todo What about other languages?
  47. */
  48. const char *help;
  49. /**
  50. * The offset relative to the context structure where the option
  51. * value is stored. It should be 0 for named constants.
  52. */
  53. int offset;
  54. enum AVOptionType type;
  55. /**
  56. * the default value for scalar options
  57. */
  58. double default_val;
  59. double min; ///< minimum valid value for the option
  60. double max; ///< maximum valid value for the option
  61. int flags;
  62. #define AV_OPT_FLAG_ENCODING_PARAM 1 ///< a generic parameter which can be set by the user for muxing or encoding
  63. #define AV_OPT_FLAG_DECODING_PARAM 2 ///< a generic parameter which can be set by the user for demuxing or decoding
  64. #define AV_OPT_FLAG_METADATA 4 ///< some data extracted or inserted into the file like title, comment, ...
  65. #define AV_OPT_FLAG_AUDIO_PARAM 8
  66. #define AV_OPT_FLAG_VIDEO_PARAM 16
  67. #define AV_OPT_FLAG_SUBTITLE_PARAM 32
  68. //FIXME think about enc-audio, ... style flags
  69. /**
  70. * The logical unit to which the option belongs. Non-constant
  71. * options and corresponding named constants share the same
  72. * unit. May be NULL.
  73. */
  74. const char *unit;
  75. } AVOption;
  76. /**
  77. * Looks for an option in \p obj. Looks only for the options which
  78. * have the flags set as specified in \p mask and \p flags (that is,
  79. * for which it is the case that opt->flags & mask == flags).
  80. *
  81. * @param[in] obj a pointer to a struct whose first element is a
  82. * pointer to an #AVClass
  83. * @param[in] name the name of the option to look for
  84. * @param[in] unit the unit of the option to look for, or any if NULL
  85. * @return a pointer to the option found, or NULL if no option
  86. * has been found
  87. */
  88. const AVOption *av_find_opt(void *obj, const char *name, const char *unit, int mask, int flags);
  89. attribute_deprecated const AVOption *av_set_string(void *obj, const char *name, const char *val);
  90. /**
  91. * Sets the field of obj with the given name to value.
  92. * @param alloc when 1 then the old value will be av_freed() and the
  93. * new av_strduped()
  94. * when 0 then no av_free() nor av_strdup() will be used
  95. */
  96. const AVOption *av_set_string2(void *obj, const char *name, const char *val, int alloc);
  97. const AVOption *av_set_double(void *obj, const char *name, double n);
  98. const AVOption *av_set_q(void *obj, const char *name, AVRational n);
  99. const AVOption *av_set_int(void *obj, const char *name, int64_t n);
  100. double av_get_double(void *obj, const char *name, const AVOption **o_out);
  101. AVRational av_get_q(void *obj, const char *name, const AVOption **o_out);
  102. int64_t av_get_int(void *obj, const char *name, const AVOption **o_out);
  103. const char *av_get_string(void *obj, const char *name, const AVOption **o_out, char *buf, int buf_len);
  104. const AVOption *av_next_option(void *obj, const AVOption *last);
  105. int av_opt_show(void *obj, void *av_log_obj);
  106. void av_opt_set_defaults(void *s);
  107. void av_opt_set_defaults2(void *s, int mask, int flags);
  108. #endif /* FFMPEG_OPT_H */