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.

321 lines
12KB

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