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.

87 lines
2.6KB

  1. /*
  2. * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
  3. *
  4. * This file is part of Libav.
  5. *
  6. * Libav is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * Libav is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with Libav; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #include <string.h>
  21. #include "avcodec.h"
  22. #include "libavutil/mem.h"
  23. static AVBitStreamFilter *first_bitstream_filter = NULL;
  24. AVBitStreamFilter *av_bitstream_filter_next(const AVBitStreamFilter *f)
  25. {
  26. if (f)
  27. return f->next;
  28. else
  29. return first_bitstream_filter;
  30. }
  31. void av_register_bitstream_filter(AVBitStreamFilter *bsf)
  32. {
  33. bsf->next = first_bitstream_filter;
  34. first_bitstream_filter = bsf;
  35. }
  36. AVBitStreamFilterContext *av_bitstream_filter_init(const char *name)
  37. {
  38. AVBitStreamFilter *bsf = first_bitstream_filter;
  39. while (bsf) {
  40. if (!strcmp(name, bsf->name)) {
  41. AVBitStreamFilterContext *bsfc =
  42. av_mallocz(sizeof(AVBitStreamFilterContext));
  43. if (!bsfc)
  44. return NULL;
  45. bsfc->filter = bsf;
  46. bsfc->priv_data = NULL;
  47. if (bsf->priv_data_size) {
  48. bsfc->priv_data = av_mallocz(bsf->priv_data_size);
  49. if (!bsfc->priv_data) {
  50. av_freep(&bsfc);
  51. return NULL;
  52. }
  53. }
  54. return bsfc;
  55. }
  56. bsf = bsf->next;
  57. }
  58. return NULL;
  59. }
  60. void av_bitstream_filter_close(AVBitStreamFilterContext *bsfc)
  61. {
  62. if (bsfc->filter->close)
  63. bsfc->filter->close(bsfc);
  64. av_freep(&bsfc->priv_data);
  65. av_parser_close(bsfc->parser);
  66. av_free(bsfc);
  67. }
  68. int av_bitstream_filter_filter(AVBitStreamFilterContext *bsfc,
  69. AVCodecContext *avctx, const char *args,
  70. uint8_t **poutbuf, int *poutbuf_size,
  71. const uint8_t *buf, int buf_size, int keyframe)
  72. {
  73. *poutbuf = (uint8_t *)buf;
  74. *poutbuf_size = buf_size;
  75. return bsfc->filter->filter(bsfc, avctx, args, poutbuf, poutbuf_size,
  76. buf, buf_size, keyframe);
  77. }