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.

152 lines
4.6KB

  1. /*
  2. * gsm 06.10 decoder
  3. * Copyright (c) 2010 Reimar Döffinger <Reimar.Doeffinger@gmx.de>
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. /**
  22. * @file
  23. * GSM decoder
  24. */
  25. #include "get_bits.h"
  26. #include "gsm.h"
  27. #include "gsmdec_data.h"
  28. static void apcm_dequant_add(GetBitContext *gb, int16_t *dst)
  29. {
  30. int i;
  31. int maxidx = get_bits(gb, 6);
  32. const int16_t *tab = ff_gsm_dequant_tab[maxidx];
  33. for (i = 0; i < 13; i++)
  34. dst[3*i] += tab[get_bits(gb, 3)];
  35. }
  36. static inline int gsm_mult(int a, int b)
  37. {
  38. return (a * b + (1 << 14)) >> 15;
  39. }
  40. static void long_term_synth(int16_t *dst, int lag, int gain_idx)
  41. {
  42. int i;
  43. const int16_t *src = dst - lag;
  44. uint16_t gain = ff_gsm_long_term_gain_tab[gain_idx];
  45. for (i = 0; i < 40; i++)
  46. dst[i] = gsm_mult(gain, src[i]);
  47. }
  48. static inline int decode_log_area(int coded, int factor, int offset)
  49. {
  50. coded <<= 10;
  51. coded -= offset;
  52. return gsm_mult(coded, factor) << 1;
  53. }
  54. static av_noinline int get_rrp(int filtered)
  55. {
  56. int abs = FFABS(filtered);
  57. if (abs < 11059) abs <<= 1;
  58. else if (abs < 20070) abs += 11059;
  59. else abs = (abs >> 2) + 26112;
  60. return filtered < 0 ? -abs : abs;
  61. }
  62. static int filter_value(int in, int rrp[8], int v[9])
  63. {
  64. int i;
  65. for (i = 7; i >= 0; i--) {
  66. in -= gsm_mult(rrp[i], v[i]);
  67. v[i + 1] = v[i] + gsm_mult(rrp[i], in);
  68. }
  69. v[0] = in;
  70. return in;
  71. }
  72. static void short_term_synth(GSMContext *ctx, int16_t *dst, const int16_t *src)
  73. {
  74. int i;
  75. int rrp[8];
  76. int *lar = ctx->lar[ctx->lar_idx];
  77. int *lar_prev = ctx->lar[ctx->lar_idx ^ 1];
  78. for (i = 0; i < 8; i++)
  79. rrp[i] = get_rrp((lar_prev[i] >> 2) + (lar_prev[i] >> 1) + (lar[i] >> 2));
  80. for (i = 0; i < 13; i++)
  81. dst[i] = filter_value(src[i], rrp, ctx->v);
  82. for (i = 0; i < 8; i++)
  83. rrp[i] = get_rrp((lar_prev[i] >> 1) + (lar [i] >> 1));
  84. for (i = 13; i < 27; i++)
  85. dst[i] = filter_value(src[i], rrp, ctx->v);
  86. for (i = 0; i < 8; i++)
  87. rrp[i] = get_rrp((lar_prev[i] >> 2) + (lar [i] >> 1) + (lar[i] >> 2));
  88. for (i = 27; i < 40; i++)
  89. dst[i] = filter_value(src[i], rrp, ctx->v);
  90. for (i = 0; i < 8; i++)
  91. rrp[i] = get_rrp(lar[i]);
  92. for (i = 40; i < 160; i++)
  93. dst[i] = filter_value(src[i], rrp, ctx->v);
  94. ctx->lar_idx ^= 1;
  95. }
  96. static int postprocess(int16_t *data, int msr)
  97. {
  98. int i;
  99. for (i = 0; i < 160; i++) {
  100. msr = av_clip_int16(data[i] + gsm_mult(msr, 28180));
  101. data[i] = av_clip_int16(msr << 1) & ~7;
  102. }
  103. return msr;
  104. }
  105. static int gsm_decode_block(AVCodecContext *avctx, int16_t *samples,
  106. GetBitContext *gb)
  107. {
  108. GSMContext *ctx = avctx->priv_data;
  109. int i;
  110. int16_t *ref_dst = ctx->ref_buf + 120;
  111. int *lar = ctx->lar[ctx->lar_idx];
  112. lar[0] = decode_log_area(get_bits(gb, 6), 13107, 1 << 15);
  113. lar[1] = decode_log_area(get_bits(gb, 6), 13107, 1 << 15);
  114. lar[2] = decode_log_area(get_bits(gb, 5), 13107, (1 << 14) + 2048*2);
  115. lar[3] = decode_log_area(get_bits(gb, 5), 13107, (1 << 14) - 2560*2);
  116. lar[4] = decode_log_area(get_bits(gb, 4), 19223, (1 << 13) + 94*2);
  117. lar[5] = decode_log_area(get_bits(gb, 4), 17476, (1 << 13) - 1792*2);
  118. lar[6] = decode_log_area(get_bits(gb, 3), 31454, (1 << 12) - 341*2);
  119. lar[7] = decode_log_area(get_bits(gb, 3), 29708, (1 << 12) - 1144*2);
  120. for (i = 0; i < 4; i++) {
  121. int lag = get_bits(gb, 7);
  122. int gain_idx = get_bits(gb, 2);
  123. int offset = get_bits(gb, 2);
  124. lag = av_clip(lag, 40, 120);
  125. long_term_synth(ref_dst, lag, gain_idx);
  126. apcm_dequant_add(gb, ref_dst + offset);
  127. ref_dst += 40;
  128. }
  129. memcpy(ctx->ref_buf, ctx->ref_buf + 160, 120 * sizeof(*ctx->ref_buf));
  130. short_term_synth(ctx, samples, ctx->ref_buf + 120);
  131. // for optimal speed this could be merged with short_term_synth,
  132. // not done yet because it is a bit ugly
  133. ctx->msr = postprocess(samples, ctx->msr);
  134. return 0;
  135. }