opt.h 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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 AVOPT_H
  22. #define AVOPT_H
  23. /**
  24. * @file opt.h
  25. * AVOptions
  26. */
  27. enum AVOptionType{
  28. FF_OPT_TYPE_FLAGS,
  29. FF_OPT_TYPE_INT,
  30. FF_OPT_TYPE_INT64,
  31. FF_OPT_TYPE_DOUBLE,
  32. FF_OPT_TYPE_FLOAT,
  33. FF_OPT_TYPE_STRING,
  34. FF_OPT_TYPE_RATIONAL,
  35. FF_OPT_TYPE_CONST=128,
  36. };
  37. /**
  38. * AVOption.
  39. */
  40. typedef struct AVOption {
  41. const char *name;
  42. /**
  43. * short English text help.
  44. * @fixme what about other languages
  45. */
  46. const char *help;
  47. int offset; ///< offset to context structure where the parsed value should be stored
  48. enum AVOptionType type;
  49. double default_val;
  50. double min;
  51. double max;
  52. int flags;
  53. #define AV_OPT_FLAG_ENCODING_PARAM 1 ///< a generic parameter which can be set by the user for muxing or encoding
  54. #define AV_OPT_FLAG_DECODING_PARAM 2 ///< a generic parameter which can be set by the user for demuxing or decoding
  55. #define AV_OPT_FLAG_METADATA 4 ///< some data extracted or inserted into the file like title, comment, ...
  56. #define AV_OPT_FLAG_AUDIO_PARAM 8
  57. #define AV_OPT_FLAG_VIDEO_PARAM 16
  58. #define AV_OPT_FLAG_SUBTITLE_PARAM 32
  59. //FIXME think about enc-audio, ... style flags
  60. const char *unit;
  61. } AVOption;
  62. const AVOption *av_find_opt(void *obj, const char *name, const char *unit, int mask, int flags);
  63. const AVOption *av_set_string(void *obj, const char *name, const char *val);
  64. const AVOption *av_set_double(void *obj, const char *name, double n);
  65. const AVOption *av_set_q(void *obj, const char *name, AVRational n);
  66. const AVOption *av_set_int(void *obj, const char *name, int64_t n);
  67. double av_get_double(void *obj, const char *name, const AVOption **o_out);
  68. AVRational av_get_q(void *obj, const char *name, const AVOption **o_out);
  69. int64_t av_get_int(void *obj, const char *name, const AVOption **o_out);
  70. const char *av_get_string(void *obj, const char *name, const AVOption **o_out, char *buf, int buf_len);
  71. const AVOption *av_next_option(void *obj, const AVOption *last);
  72. int av_opt_show(void *obj, void *av_log_obj);
  73. void av_opt_set_defaults(void *s);
  74. void av_opt_set_defaults2(void *s, int mask, int flags);
  75. #endif