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.

317 lines
11KB

  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. #define ALT_BITSTREAM_READER_LE
  26. #include "avcodec.h"
  27. #include "get_bits.h"
  28. // input and output sizes in byte
  29. #define GSM_BLOCK_SIZE 33
  30. #define GSM_MS_BLOCK_SIZE 65
  31. #define GSM_FRAME_SIZE 160
  32. typedef struct {
  33. int16_t ref_buf[280];
  34. int v[9];
  35. int lar[2][8];
  36. int lar_idx;
  37. int msr;
  38. } GSMContext;
  39. static av_cold int gsm_init(AVCodecContext *avctx)
  40. {
  41. avctx->channels = 1;
  42. if (!avctx->sample_rate)
  43. avctx->sample_rate = 8000;
  44. avctx->sample_fmt = SAMPLE_FMT_S16;
  45. switch (avctx->codec_id) {
  46. case CODEC_ID_GSM:
  47. avctx->frame_size = GSM_FRAME_SIZE;
  48. avctx->block_align = GSM_BLOCK_SIZE;
  49. break;
  50. case CODEC_ID_GSM_MS:
  51. avctx->frame_size = 2 * GSM_FRAME_SIZE;
  52. avctx->block_align = GSM_MS_BLOCK_SIZE;
  53. }
  54. return 0;
  55. }
  56. static const int16_t dequant_tab[64][8] = {
  57. { -28, -20, -12, -4, 4, 12, 20, 28},
  58. { -56, -40, -24, -8, 8, 24, 40, 56},
  59. { -84, -60, -36, -12, 12, 36, 60, 84},
  60. { -112, -80, -48, -16, 16, 48, 80, 112},
  61. { -140, -100, -60, -20, 20, 60, 100, 140},
  62. { -168, -120, -72, -24, 24, 72, 120, 168},
  63. { -196, -140, -84, -28, 28, 84, 140, 196},
  64. { -224, -160, -96, -32, 32, 96, 160, 224},
  65. { -252, -180, -108, -36, 36, 108, 180, 252},
  66. { -280, -200, -120, -40, 40, 120, 200, 280},
  67. { -308, -220, -132, -44, 44, 132, 220, 308},
  68. { -336, -240, -144, -48, 48, 144, 240, 336},
  69. { -364, -260, -156, -52, 52, 156, 260, 364},
  70. { -392, -280, -168, -56, 56, 168, 280, 392},
  71. { -420, -300, -180, -60, 60, 180, 300, 420},
  72. { -448, -320, -192, -64, 64, 192, 320, 448},
  73. { -504, -360, -216, -72, 72, 216, 360, 504},
  74. { -560, -400, -240, -80, 80, 240, 400, 560},
  75. { -616, -440, -264, -88, 88, 264, 440, 616},
  76. { -672, -480, -288, -96, 96, 288, 480, 672},
  77. { -728, -520, -312, -104, 104, 312, 520, 728},
  78. { -784, -560, -336, -112, 112, 336, 560, 784},
  79. { -840, -600, -360, -120, 120, 360, 600, 840},
  80. { -896, -640, -384, -128, 128, 384, 640, 896},
  81. { -1008, -720, -432, -144, 144, 432, 720, 1008},
  82. { -1120, -800, -480, -160, 160, 480, 800, 1120},
  83. { -1232, -880, -528, -176, 176, 528, 880, 1232},
  84. { -1344, -960, -576, -192, 192, 576, 960, 1344},
  85. { -1456, -1040, -624, -208, 208, 624, 1040, 1456},
  86. { -1568, -1120, -672, -224, 224, 672, 1120, 1568},
  87. { -1680, -1200, -720, -240, 240, 720, 1200, 1680},
  88. { -1792, -1280, -768, -256, 256, 768, 1280, 1792},
  89. { -2016, -1440, -864, -288, 288, 864, 1440, 2016},
  90. { -2240, -1600, -960, -320, 320, 960, 1600, 2240},
  91. { -2464, -1760, -1056, -352, 352, 1056, 1760, 2464},
  92. { -2688, -1920, -1152, -384, 384, 1152, 1920, 2688},
  93. { -2912, -2080, -1248, -416, 416, 1248, 2080, 2912},
  94. { -3136, -2240, -1344, -448, 448, 1344, 2240, 3136},
  95. { -3360, -2400, -1440, -480, 480, 1440, 2400, 3360},
  96. { -3584, -2560, -1536, -512, 512, 1536, 2560, 3584},
  97. { -4032, -2880, -1728, -576, 576, 1728, 2880, 4032},
  98. { -4480, -3200, -1920, -640, 640, 1920, 3200, 4480},
  99. { -4928, -3520, -2112, -704, 704, 2112, 3520, 4928},
  100. { -5376, -3840, -2304, -768, 768, 2304, 3840, 5376},
  101. { -5824, -4160, -2496, -832, 832, 2496, 4160, 5824},
  102. { -6272, -4480, -2688, -896, 896, 2688, 4480, 6272},
  103. { -6720, -4800, -2880, -960, 960, 2880, 4800, 6720},
  104. { -7168, -5120, -3072, -1024, 1024, 3072, 5120, 7168},
  105. { -8063, -5759, -3456, -1152, 1152, 3456, 5760, 8064},
  106. { -8959, -6399, -3840, -1280, 1280, 3840, 6400, 8960},
  107. { -9855, -7039, -4224, -1408, 1408, 4224, 7040, 9856},
  108. {-10751, -7679, -4608, -1536, 1536, 4608, 7680, 10752},
  109. {-11647, -8319, -4992, -1664, 1664, 4992, 8320, 11648},
  110. {-12543, -8959, -5376, -1792, 1792, 5376, 8960, 12544},
  111. {-13439, -9599, -5760, -1920, 1920, 5760, 9600, 13440},
  112. {-14335, -10239, -6144, -2048, 2048, 6144, 10240, 14336},
  113. {-16127, -11519, -6912, -2304, 2304, 6912, 11519, 16127},
  114. {-17919, -12799, -7680, -2560, 2560, 7680, 12799, 17919},
  115. {-19711, -14079, -8448, -2816, 2816, 8448, 14079, 19711},
  116. {-21503, -15359, -9216, -3072, 3072, 9216, 15359, 21503},
  117. {-23295, -16639, -9984, -3328, 3328, 9984, 16639, 23295},
  118. {-25087, -17919, -10752, -3584, 3584, 10752, 17919, 25087},
  119. {-26879, -19199, -11520, -3840, 3840, 11520, 19199, 26879},
  120. {-28671, -20479, -12288, -4096, 4096, 12288, 20479, 28671}
  121. };
  122. static void apcm_dequant_add(GetBitContext *gb, int16_t *dst)
  123. {
  124. int i;
  125. int maxidx = get_bits(gb, 6);
  126. const int16_t *tab = dequant_tab[maxidx];
  127. for (i = 0; i < 13; i++)
  128. dst[3*i] += tab[get_bits(gb, 3)];
  129. }
  130. static inline int gsm_mult(int a, int b)
  131. {
  132. return (a * b + (1 << 14)) >> 15;
  133. }
  134. static const uint16_t long_term_gain_tab[4] = {
  135. 3277, 11469, 21299, 32767
  136. };
  137. static void long_term_synth(int16_t *dst, int lag, int gain_idx)
  138. {
  139. int i;
  140. const int16_t *src = dst - lag;
  141. uint16_t gain = long_term_gain_tab[gain_idx];
  142. for (i = 0; i < 40; i++)
  143. dst[i] = gsm_mult(gain, src[i]);
  144. }
  145. static inline int decode_log_area(int coded, int factor, int offset)
  146. {
  147. coded <<= 10;
  148. coded -= offset;
  149. return gsm_mult(coded, factor) << 1;
  150. }
  151. static av_noinline int get_rrp(int filtered)
  152. {
  153. int abs = FFABS(filtered);
  154. if (abs < 11059) abs <<= 1;
  155. else if (abs < 20070) abs += 11059;
  156. else abs = (abs >> 2) + 26112;
  157. return filtered < 0 ? -abs : abs;
  158. }
  159. static int filter_value(int in, int rrp[8], int v[9])
  160. {
  161. int i;
  162. for (i = 7; i >= 0; i--) {
  163. in -= gsm_mult(rrp[i], v[i]);
  164. v[i + 1] = v[i] + gsm_mult(rrp[i], in);
  165. }
  166. v[0] = in;
  167. return in;
  168. }
  169. static void short_term_synth(GSMContext *ctx, int16_t *dst, const int16_t *src)
  170. {
  171. int i;
  172. int rrp[8];
  173. int *lar = ctx->lar[ctx->lar_idx];
  174. int *lar_prev = ctx->lar[ctx->lar_idx ^ 1];
  175. for (i = 0; i < 8; i++)
  176. rrp[i] = get_rrp((lar_prev[i] >> 2) + (lar_prev[i] >> 1) + (lar[i] >> 2));
  177. for (i = 0; i < 13; i++)
  178. dst[i] = filter_value(src[i], rrp, ctx->v);
  179. for (i = 0; i < 8; i++)
  180. rrp[i] = get_rrp((lar_prev[i] >> 1) + (lar [i] >> 1));
  181. for (i = 13; i < 27; i++)
  182. dst[i] = filter_value(src[i], rrp, ctx->v);
  183. for (i = 0; i < 8; i++)
  184. rrp[i] = get_rrp((lar_prev[i] >> 2) + (lar [i] >> 1) + (lar[i] >> 2));
  185. for (i = 27; i < 40; i++)
  186. dst[i] = filter_value(src[i], rrp, ctx->v);
  187. for (i = 0; i < 8; i++)
  188. rrp[i] = get_rrp(lar[i]);
  189. for (i = 40; i < 160; i++)
  190. dst[i] = filter_value(src[i], rrp, ctx->v);
  191. ctx->lar_idx ^= 1;
  192. }
  193. static int postprocess(int16_t *data, int msr)
  194. {
  195. int i;
  196. for (i = 0; i < 160; i++) {
  197. msr = av_clip_int16(data[i] + gsm_mult(msr, 28180));
  198. data[i] = av_clip_int16(msr << 1) & ~7;
  199. }
  200. return msr;
  201. }
  202. static int gsm_decode_block(AVCodecContext *avctx, int16_t *samples,
  203. GetBitContext *gb)
  204. {
  205. GSMContext *ctx = avctx->priv_data;
  206. int i;
  207. int16_t *ref_dst = ctx->ref_buf + 120;
  208. int *lar = ctx->lar[ctx->lar_idx];
  209. lar[0] = decode_log_area(get_bits(gb, 6), 13107, 1 << 15);
  210. lar[1] = decode_log_area(get_bits(gb, 6), 13107, 1 << 15);
  211. lar[2] = decode_log_area(get_bits(gb, 5), 13107, (1 << 14) + 2048*2);
  212. lar[3] = decode_log_area(get_bits(gb, 5), 13107, (1 << 14) - 2560*2);
  213. lar[4] = decode_log_area(get_bits(gb, 4), 19223, (1 << 13) + 94*2);
  214. lar[5] = decode_log_area(get_bits(gb, 4), 17476, (1 << 13) - 1792*2);
  215. lar[6] = decode_log_area(get_bits(gb, 3), 31454, (1 << 12) - 341*2);
  216. lar[7] = decode_log_area(get_bits(gb, 3), 29708, (1 << 12) - 1144*2);
  217. for (i = 0; i < 4; i++) {
  218. int lag = get_bits(gb, 7);
  219. int gain_idx = get_bits(gb, 2);
  220. int offset = get_bits(gb, 2);
  221. lag = av_clip(lag, 40, 120);
  222. long_term_synth(ref_dst, lag, gain_idx);
  223. apcm_dequant_add(gb, ref_dst + offset);
  224. ref_dst += 40;
  225. }
  226. memcpy(ctx->ref_buf, ctx->ref_buf + 160, 120 * sizeof(*ctx->ref_buf));
  227. short_term_synth(ctx, samples, ctx->ref_buf + 120);
  228. // for optimal speed this could be merged with short_term_synth,
  229. // not done yet because it is a bit ugly
  230. ctx->msr = postprocess(samples, ctx->msr);
  231. return 0;
  232. }
  233. static int gsm_decode_frame(AVCodecContext *avctx, void *data,
  234. int *data_size, AVPacket *avpkt)
  235. {
  236. int res;
  237. GetBitContext gb;
  238. const uint8_t *buf = avpkt->data;
  239. int buf_size = avpkt->size;
  240. int16_t *samples = data;
  241. int frame_bytes = 2 * avctx->frame_size;
  242. if (*data_size < frame_bytes)
  243. return -1;
  244. *data_size = 0;
  245. if(buf_size < avctx->block_align)
  246. return AVERROR_INVALIDDATA;
  247. init_get_bits(&gb, buf, buf_size * 8);
  248. switch (avctx->codec_id) {
  249. case CODEC_ID_GSM:
  250. if (get_bits(&gb, 4) != 0xd)
  251. av_log(avctx, AV_LOG_WARNING, "Missing GSM magic!\n");
  252. res = gsm_decode_block(avctx, samples, &gb);
  253. if (res < 0)
  254. return res;
  255. break;
  256. case CODEC_ID_GSM_MS:
  257. res = gsm_decode_block(avctx, samples, &gb);
  258. if (res < 0)
  259. return res;
  260. res = gsm_decode_block(avctx, samples + GSM_FRAME_SIZE, &gb);
  261. if (res < 0)
  262. return res;
  263. }
  264. *data_size = frame_bytes;
  265. return avctx->block_align;
  266. }
  267. AVCodec gsm_decoder = {
  268. "gsm",
  269. AVMEDIA_TYPE_AUDIO,
  270. CODEC_ID_GSM,
  271. sizeof(GSMContext),
  272. gsm_init,
  273. NULL,
  274. NULL,
  275. gsm_decode_frame,
  276. .long_name = NULL_IF_CONFIG_SMALL("GSM"),
  277. };
  278. AVCodec gsm_ms_decoder = {
  279. "gsm_ms",
  280. AVMEDIA_TYPE_AUDIO,
  281. CODEC_ID_GSM_MS,
  282. sizeof(GSMContext),
  283. gsm_init,
  284. NULL,
  285. NULL,
  286. gsm_decode_frame,
  287. .long_name = NULL_IF_CONFIG_SMALL("GSM Microsoft variant"),
  288. };