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.

90 lines
3.5KB

  1. /*
  2. * AVOptions ABI compatibility wrapper
  3. * Copyright (c) 2010 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. #include "avcodec.h"
  22. #include "opt.h"
  23. #if LIBAVCODEC_VERSION_MAJOR < 53 && CONFIG_SHARED && HAVE_SYMVER
  24. FF_SYMVER(const AVOption *, av_find_opt, (void *obj, const char *name, const char *unit, int mask, int flags), "LIBAVCODEC_52"){
  25. return av_find_opt(obj, name, unit, mask, flags);
  26. }
  27. FF_SYMVER(int, av_set_string3, (void *obj, const char *name, const char *val, int alloc, const AVOption **o_out), "LIBAVCODEC_52"){
  28. return av_set_string3(obj, name, val, alloc, o_out);
  29. }
  30. FF_SYMVER(const AVOption *, av_set_double, (void *obj, const char *name, double n), "LIBAVCODEC_52"){
  31. return av_set_double(obj, name, n);
  32. }
  33. FF_SYMVER(const AVOption *, av_set_q, (void *obj, const char *name, AVRational n), "LIBAVCODEC_52"){
  34. return av_set_q(obj, name, n);
  35. }
  36. FF_SYMVER(const AVOption *, av_set_int, (void *obj, const char *name, int64_t n), "LIBAVCODEC_52"){
  37. return av_set_int(obj, name, n);
  38. }
  39. FF_SYMVER(double, av_get_double, (void *obj, const char *name, const AVOption **o_out), "LIBAVCODEC_52"){
  40. return av_get_double(obj, name, o_out);
  41. }
  42. FF_SYMVER(AVRational, av_get_q, (void *obj, const char *name, const AVOption **o_out), "LIBAVCODEC_52"){
  43. return av_get_q(obj, name, o_out);
  44. }
  45. FF_SYMVER(int64_t, av_get_int, (void *obj, const char *name, const AVOption **o_out), "LIBAVCODEC_52"){
  46. return av_get_int(obj, name, o_out);
  47. }
  48. FF_SYMVER(const char *, av_get_string, (void *obj, const char *name, const AVOption **o_out, char *buf, int buf_len), "LIBAVCODEC_52"){
  49. return av_get_string(obj, name, o_out, buf, buf_len);
  50. }
  51. FF_SYMVER(const AVOption *, av_next_option, (void *obj, const AVOption *last), "LIBAVCODEC_52"){
  52. return av_next_option(obj, last);
  53. }
  54. FF_SYMVER(int, av_opt_show2, (void *obj, void *av_log_obj, int req_flags, int rej_flags), "LIBAVCODEC_52"){
  55. return av_opt_show2(obj, av_log_obj, req_flags, rej_flags);
  56. }
  57. FF_SYMVER(void, av_opt_set_defaults, (void *s), "LIBAVCODEC_52"){
  58. return av_opt_set_defaults(s);
  59. }
  60. FF_SYMVER(void, av_opt_set_defaults2, (void *s, int mask, int flags), "LIBAVCODEC_52"){
  61. return av_opt_set_defaults2(s, mask, flags);
  62. }
  63. #endif
  64. #if FF_API_SET_STRING_OLD
  65. const AVOption *av_set_string2(void *obj, const char *name, const char *val, int alloc){
  66. const AVOption *o;
  67. if (av_set_string3(obj, name, val, alloc, &o) < 0)
  68. return NULL;
  69. return o;
  70. }
  71. const AVOption *av_set_string(void *obj, const char *name, const char *val){
  72. const AVOption *o;
  73. if (av_set_string3(obj, name, val, 0, &o) < 0)
  74. return NULL;
  75. return o;
  76. }
  77. #endif
  78. #if FF_API_OPT_SHOW
  79. int av_opt_show(void *obj, void *av_log_obj){
  80. return av_opt_show2(obj, av_log_obj,
  81. AV_OPT_FLAG_ENCODING_PARAM|AV_OPT_FLAG_DECODING_PARAM, 0);
  82. }
  83. #endif