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.

85 lines
2.5KB

  1. /*
  2. * This file is part of Libav.
  3. *
  4. * Libav is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Lesser General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2.1 of the License, or (at your option) any later version.
  8. *
  9. * Libav is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Lesser General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Lesser General Public
  15. * License along with Libav; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. #include "config.h"
  19. #include "libavutil/common.h"
  20. #include "libavutil/log.h"
  21. #include "avcodec.h"
  22. #include "bsf.h"
  23. extern const AVBitStreamFilter ff_aac_adtstoasc_bsf;
  24. extern const AVBitStreamFilter ff_chomp_bsf;
  25. extern const AVBitStreamFilter ff_dump_extradata_bsf;
  26. extern const AVBitStreamFilter ff_extract_extradata_bsf;
  27. extern const AVBitStreamFilter ff_h264_mp4toannexb_bsf;
  28. extern const AVBitStreamFilter ff_hevc_mp4toannexb_bsf;
  29. extern const AVBitStreamFilter ff_imx_dump_header_bsf;
  30. extern const AVBitStreamFilter ff_mjpeg2jpeg_bsf;
  31. extern const AVBitStreamFilter ff_mjpega_dump_header_bsf;
  32. extern const AVBitStreamFilter ff_mov2textsub_bsf;
  33. extern const AVBitStreamFilter ff_text2movsub_bsf;
  34. extern const AVBitStreamFilter ff_noise_bsf;
  35. extern const AVBitStreamFilter ff_remove_extradata_bsf;
  36. #include "libavcodec/bsf_list.c"
  37. const AVBitStreamFilter *av_bsf_next(void **opaque)
  38. {
  39. uintptr_t i = (uintptr_t)*opaque;
  40. const AVBitStreamFilter *f = bitstream_filters[i];
  41. if (f)
  42. *opaque = (void*)(i + 1);
  43. return f;
  44. }
  45. const AVBitStreamFilter *av_bsf_get_by_name(const char *name)
  46. {
  47. int i;
  48. for (i = 0; bitstream_filters[i]; i++) {
  49. const AVBitStreamFilter *f = bitstream_filters[i];
  50. if (!strcmp(f->name, name))
  51. return f;
  52. }
  53. return NULL;
  54. }
  55. const AVClass *ff_bsf_child_class_next(const AVClass *prev)
  56. {
  57. int i;
  58. /* find the filter that corresponds to prev */
  59. for (i = 0; prev && bitstream_filters[i]; i++) {
  60. if (bitstream_filters[i]->priv_class == prev) {
  61. i++;
  62. break;
  63. }
  64. }
  65. /* find next filter with priv options */
  66. for (; bitstream_filters[i]; i++)
  67. if (bitstream_filters[i]->priv_class)
  68. return bitstream_filters[i]->priv_class;
  69. return NULL;
  70. }