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.

67 lines
1.8KB

  1. /*
  2. * Copyright (c) 2016 Paul B Mahol
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg 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. * FFmpeg 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 FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #include "avcodec.h"
  21. #include "bsf.h"
  22. #include "bytestream.h"
  23. #include "dca_syncwords.h"
  24. #include "libavutil/mem.h"
  25. static int dca_core_filter(AVBSFContext *ctx, AVPacket *out)
  26. {
  27. AVPacket *in;
  28. GetByteContext gb;
  29. uint32_t syncword;
  30. int core_size = 0, ret;
  31. ret = ff_bsf_get_packet(ctx, &in);
  32. if (ret < 0)
  33. return ret;
  34. bytestream2_init(&gb, in->data, in->size);
  35. syncword = bytestream2_get_be32(&gb);
  36. bytestream2_skip(&gb, 1);
  37. switch (syncword) {
  38. case DCA_SYNCWORD_CORE_BE:
  39. core_size = ((bytestream2_get_be24(&gb) >> 4) & 0x3fff) + 1;
  40. break;
  41. }
  42. av_packet_move_ref(out, in);
  43. av_packet_free(&in);
  44. if (core_size > 0 && core_size <= out->size) {
  45. out->size = core_size;
  46. }
  47. return 0;
  48. }
  49. static const enum AVCodecID codec_ids[] = {
  50. AV_CODEC_ID_DTS, AV_CODEC_ID_NONE,
  51. };
  52. const AVBitStreamFilter ff_dca_core_bsf = {
  53. .name = "dca_core",
  54. .filter = dca_core_filter,
  55. .codec_ids = codec_ids,
  56. };