g722dec.c 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  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. #include "libavutil/opt.h"
  39. #define OFFSET(x) offsetof(G722Context, x)
  40. #define AD AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_DECODING_PARAM
  41. static const AVOption options[] = {
  42. { "bits_per_codeword", "Bits per G722 codeword", OFFSET(bits_per_codeword), AV_OPT_TYPE_FLAGS, { .i64 = 8 }, 6, 8, AD },
  43. { NULL }
  44. };
  45. static const AVClass g722_decoder_class = {
  46. .class_name = "g722 decoder",
  47. .item_name = av_default_item_name,
  48. .option = options,
  49. .version = LIBAVUTIL_VERSION_INT,
  50. };
  51. static av_cold int g722_decode_init(AVCodecContext * avctx)
  52. {
  53. G722Context *c = avctx->priv_data;
  54. if (avctx->channels != 1) {
  55. av_log(avctx, AV_LOG_ERROR, "Only mono tracks are allowed.\n");
  56. return AVERROR_INVALIDDATA;
  57. }
  58. avctx->sample_fmt = AV_SAMPLE_FMT_S16;
  59. c->band[0].scale_factor = 8;
  60. c->band[1].scale_factor = 2;
  61. c->prev_samples_pos = 22;
  62. avcodec_get_frame_defaults(&c->frame);
  63. avctx->coded_frame = &c->frame;
  64. return 0;
  65. }
  66. static const int16_t low_inv_quant5[32] = {
  67. -35, -35, -2919, -2195, -1765, -1458, -1219, -1023,
  68. -858, -714, -587, -473, -370, -276, -190, -110,
  69. 2919, 2195, 1765, 1458, 1219, 1023, 858, 714,
  70. 587, 473, 370, 276, 190, 110, 35, -35
  71. };
  72. static const int16_t *low_inv_quants[3] = { ff_g722_low_inv_quant6,
  73. low_inv_quant5,
  74. ff_g722_low_inv_quant4 };
  75. static int g722_decode_frame(AVCodecContext *avctx, void *data,
  76. int *got_frame_ptr, AVPacket *avpkt)
  77. {
  78. G722Context *c = avctx->priv_data;
  79. int16_t *out_buf;
  80. int j, ret;
  81. const int skip = 8 - c->bits_per_codeword;
  82. const int16_t *quantizer_table = low_inv_quants[skip];
  83. GetBitContext gb;
  84. /* get output buffer */
  85. c->frame.nb_samples = avpkt->size * 2;
  86. if ((ret = avctx->get_buffer(avctx, &c->frame)) < 0) {
  87. av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
  88. return ret;
  89. }
  90. out_buf = (int16_t *)c->frame.data[0];
  91. init_get_bits(&gb, avpkt->data, avpkt->size * 8);
  92. for (j = 0; j < avpkt->size; j++) {
  93. int ilow, ihigh, rlow, rhigh, dhigh;
  94. int xout1, xout2;
  95. ihigh = get_bits(&gb, 2);
  96. ilow = get_bits(&gb, 6 - skip);
  97. skip_bits(&gb, skip);
  98. rlow = av_clip((c->band[0].scale_factor * quantizer_table[ilow] >> 10)
  99. + c->band[0].s_predictor, -16384, 16383);
  100. ff_g722_update_low_predictor(&c->band[0], ilow >> (2 - skip));
  101. dhigh = c->band[1].scale_factor * ff_g722_high_inv_quant[ihigh] >> 10;
  102. rhigh = av_clip(dhigh + c->band[1].s_predictor, -16384, 16383);
  103. ff_g722_update_high_predictor(&c->band[1], dhigh, ihigh);
  104. c->prev_samples[c->prev_samples_pos++] = rlow + rhigh;
  105. c->prev_samples[c->prev_samples_pos++] = rlow - rhigh;
  106. ff_g722_apply_qmf(c->prev_samples + c->prev_samples_pos - 24,
  107. &xout1, &xout2);
  108. *out_buf++ = av_clip_int16(xout1 >> 11);
  109. *out_buf++ = av_clip_int16(xout2 >> 11);
  110. if (c->prev_samples_pos >= PREV_SAMPLES_BUF_SIZE) {
  111. memmove(c->prev_samples, c->prev_samples + c->prev_samples_pos - 22,
  112. 22 * sizeof(c->prev_samples[0]));
  113. c->prev_samples_pos = 22;
  114. }
  115. }
  116. *got_frame_ptr = 1;
  117. *(AVFrame *)data = c->frame;
  118. return avpkt->size;
  119. }
  120. AVCodec ff_adpcm_g722_decoder = {
  121. .name = "g722",
  122. .type = AVMEDIA_TYPE_AUDIO,
  123. .id = AV_CODEC_ID_ADPCM_G722,
  124. .priv_data_size = sizeof(G722Context),
  125. .init = g722_decode_init,
  126. .decode = g722_decode_frame,
  127. .capabilities = CODEC_CAP_DR1,
  128. .long_name = NULL_IF_CONFIG_SMALL("G.722 ADPCM"),
  129. .priv_class = &g722_decoder_class,
  130. };