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.

83 lines
2.5KB

  1. /*
  2. * DCA compatible decoder data
  3. * Copyright (C) 2004 Gildas Bazin
  4. * Copyright (C) 2004 Benjamin Zores
  5. * Copyright (C) 2006 Benjamin Larsson
  6. * Copyright (C) 2007 Konstantin Shishkov
  7. *
  8. * This file is part of FFmpeg.
  9. *
  10. * FFmpeg is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU Lesser General Public
  12. * License as published by the Free Software Foundation; either
  13. * version 2.1 of the License, or (at your option) any later version.
  14. *
  15. * FFmpeg is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  18. * Lesser General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU Lesser General Public
  21. * License along with FFmpeg; if not, write to the Free Software
  22. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  23. */
  24. #include <stdint.h>
  25. #include <string.h>
  26. #include "libavutil/error.h"
  27. #include "dca.h"
  28. #include "dca_syncwords.h"
  29. #include "put_bits.h"
  30. const uint32_t avpriv_dca_sample_rates[16] = {
  31. 0, 8000, 16000, 32000, 0, 0, 11025, 22050, 44100, 0, 0,
  32. 12000, 24000, 48000, 96000, 192000
  33. };
  34. const uint32_t ff_dca_sampling_freqs[16] = {
  35. 8000, 16000, 32000, 64000, 128000, 22050, 44100, 88200,
  36. 176400, 352800, 12000, 24000, 48000, 96000, 192000, 384000,
  37. };
  38. const uint8_t ff_dca_freq_ranges[16] = {
  39. 0, 1, 2, 3, 4, 1, 2, 3, 4, 4, 0, 1, 2, 3, 4, 4
  40. };
  41. int avpriv_dca_convert_bitstream(const uint8_t *src, int src_size, uint8_t *dst,
  42. int max_size)
  43. {
  44. uint32_t mrk;
  45. int i, tmp;
  46. PutBitContext pb;
  47. if ((unsigned) src_size > (unsigned) max_size)
  48. src_size = max_size;
  49. mrk = AV_RB32(src);
  50. switch (mrk) {
  51. case DCA_SYNCWORD_CORE_BE:
  52. memcpy(dst, src, src_size);
  53. return src_size;
  54. case DCA_SYNCWORD_CORE_LE:
  55. for (i = 0; i < (src_size + 1) >> 1; i++) {
  56. AV_WB16(dst, AV_RL16(src));
  57. src += 2;
  58. dst += 2;
  59. }
  60. return src_size;
  61. case DCA_SYNCWORD_CORE_14B_BE:
  62. case DCA_SYNCWORD_CORE_14B_LE:
  63. init_put_bits(&pb, dst, max_size);
  64. for (i = 0; i < (src_size + 1) >> 1; i++, src += 2) {
  65. tmp = ((mrk == DCA_SYNCWORD_CORE_14B_BE) ? AV_RB16(src) : AV_RL16(src)) & 0x3FFF;
  66. put_bits(&pb, 14, tmp);
  67. }
  68. flush_put_bits(&pb);
  69. return (put_bits_count(&pb) + 7) >> 3;
  70. default:
  71. return AVERROR_INVALIDDATA;
  72. }
  73. }