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.

62 lines
1.7KB

  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. /**
  22. * @file
  23. * This header is provided for compatibility only and will be removed
  24. * on next major bump
  25. */
  26. #ifndef AVCODEC_OPT_H
  27. #define AVCODEC_OPT_H
  28. /**
  29. * @file
  30. * AVOptions
  31. */
  32. #include "libavutil/rational.h"
  33. #include "avcodec.h"
  34. #include "libavutil/opt.h"
  35. #if FF_API_SET_STRING_OLD
  36. /**
  37. * @see av_set_string2()
  38. */
  39. attribute_deprecated const AVOption *av_set_string(void *obj, const char *name, const char *val);
  40. /**
  41. * @return a pointer to the AVOption corresponding to the field set or
  42. * NULL if no matching AVOption exists, or if the value val is not
  43. * valid
  44. * @see av_set_string3()
  45. */
  46. attribute_deprecated const AVOption *av_set_string2(void *obj, const char *name, const char *val, int alloc);
  47. #endif
  48. #if FF_API_OPT_SHOW
  49. /**
  50. * @deprecated Use av_opt_show2() instead.
  51. */
  52. attribute_deprecated int av_opt_show(void *obj, void *av_log_obj);
  53. #endif
  54. #endif /* AVCODEC_OPT_H */