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.

144 lines
4.8KB

  1. /*
  2. * Copyright (c) CMU 1993 Computer Science, Speech Group
  3. * Chengxiang Lu and Alex Hauptmann
  4. * Copyright (c) 2005 Steve Underwood <steveu at coppice.org>
  5. * Copyright (c) 2009 Kenan Gillet
  6. * Copyright (c) 2010 Martin Storsjo
  7. *
  8. * This file is part of Libav.
  9. *
  10. * Libav 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. * Libav 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 Libav; if not, write to the Free Software
  22. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  23. */
  24. /**
  25. * @file
  26. * G.722 ADPCM audio decoder
  27. *
  28. * This G.722 decoder is a bit-exact implementation of the ITU G.722
  29. * specification for all three specified bitrates - 64000bps, 56000bps
  30. * and 48000bps. It passes the ITU tests.
  31. *
  32. * @note For the 56000bps and 48000bps bitrates, the lowest 1 or 2 bits
  33. * respectively of each byte are ignored.
  34. */
  35. #include "avcodec.h"
  36. #include "get_bits.h"
  37. #include "g722.h"
  38. static av_cold int g722_decode_init(AVCodecContext * avctx)
  39. {
  40. G722Context *c = avctx->priv_data;
  41. if (avctx->channels != 1) {
  42. av_log(avctx, AV_LOG_ERROR, "Only mono tracks are allowed.\n");
  43. return AVERROR_INVALIDDATA;
  44. }
  45. avctx->sample_fmt = AV_SAMPLE_FMT_S16;
  46. switch (avctx->bits_per_coded_sample) {
  47. case 8:
  48. case 7:
  49. case 6:
  50. break;
  51. default:
  52. av_log(avctx, AV_LOG_WARNING, "Unsupported bits_per_coded_sample [%d], "
  53. "assuming 8\n",
  54. avctx->bits_per_coded_sample);
  55. case 0:
  56. avctx->bits_per_coded_sample = 8;
  57. break;
  58. }
  59. c->band[0].scale_factor = 8;
  60. c->band[1].scale_factor = 2;
  61. c->prev_samples_pos = 22;
  62. return 0;
  63. }
  64. static const int16_t low_inv_quant5[32] = {
  65. -35, -35, -2919, -2195, -1765, -1458, -1219, -1023,
  66. -858, -714, -587, -473, -370, -276, -190, -110,
  67. 2919, 2195, 1765, 1458, 1219, 1023, 858, 714,
  68. 587, 473, 370, 276, 190, 110, 35, -35
  69. };
  70. static const int16_t *low_inv_quants[3] = { ff_g722_low_inv_quant6,
  71. low_inv_quant5,
  72. ff_g722_low_inv_quant4 };
  73. static int g722_decode_frame(AVCodecContext *avctx, void *data,
  74. int *data_size, AVPacket *avpkt)
  75. {
  76. G722Context *c = avctx->priv_data;
  77. int16_t *out_buf = data;
  78. int j, out_len;
  79. const int skip = 8 - avctx->bits_per_coded_sample;
  80. const int16_t *quantizer_table = low_inv_quants[skip];
  81. GetBitContext gb;
  82. out_len = avpkt->size * 2 * av_get_bytes_per_sample(avctx->sample_fmt);
  83. if (*data_size < out_len) {
  84. av_log(avctx, AV_LOG_ERROR, "Output buffer is too small\n");
  85. return AVERROR(EINVAL);
  86. }
  87. init_get_bits(&gb, avpkt->data, avpkt->size * 8);
  88. for (j = 0; j < avpkt->size; j++) {
  89. int ilow, ihigh, rlow, rhigh, dhigh;
  90. int xout1, xout2;
  91. ihigh = get_bits(&gb, 2);
  92. ilow = get_bits(&gb, 6 - skip);
  93. skip_bits(&gb, skip);
  94. rlow = av_clip((c->band[0].scale_factor * quantizer_table[ilow] >> 10)
  95. + c->band[0].s_predictor, -16384, 16383);
  96. ff_g722_update_low_predictor(&c->band[0], ilow >> (2 - skip));
  97. dhigh = c->band[1].scale_factor * ff_g722_high_inv_quant[ihigh] >> 10;
  98. rhigh = av_clip(dhigh + c->band[1].s_predictor, -16384, 16383);
  99. ff_g722_update_high_predictor(&c->band[1], dhigh, ihigh);
  100. c->prev_samples[c->prev_samples_pos++] = rlow + rhigh;
  101. c->prev_samples[c->prev_samples_pos++] = rlow - rhigh;
  102. ff_g722_apply_qmf(c->prev_samples + c->prev_samples_pos - 24,
  103. &xout1, &xout2);
  104. *out_buf++ = av_clip_int16(xout1 >> 12);
  105. *out_buf++ = av_clip_int16(xout2 >> 12);
  106. if (c->prev_samples_pos >= PREV_SAMPLES_BUF_SIZE) {
  107. memmove(c->prev_samples, c->prev_samples + c->prev_samples_pos - 22,
  108. 22 * sizeof(c->prev_samples[0]));
  109. c->prev_samples_pos = 22;
  110. }
  111. }
  112. *data_size = out_len;
  113. return avpkt->size;
  114. }
  115. AVCodec ff_adpcm_g722_decoder = {
  116. .name = "g722",
  117. .type = AVMEDIA_TYPE_AUDIO,
  118. .id = CODEC_ID_ADPCM_G722,
  119. .priv_data_size = sizeof(G722Context),
  120. .init = g722_decode_init,
  121. .decode = g722_decode_frame,
  122. .long_name = NULL_IF_CONFIG_SMALL("G.722 ADPCM"),
  123. };