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.

362 lines
10KB

  1. /*
  2. * DSP Group TrueSpeech compatible decoder
  3. * Copyright (c) 2005 Konstantin Shishkov
  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. #include "libavutil/intreadwrite.h"
  22. #include "avcodec.h"
  23. #include "dsputil.h"
  24. #include "get_bits.h"
  25. #include "truespeech_data.h"
  26. /**
  27. * @file
  28. * TrueSpeech decoder.
  29. */
  30. /**
  31. * TrueSpeech decoder context
  32. */
  33. typedef struct {
  34. DSPContext dsp;
  35. /* input data */
  36. uint8_t buffer[32];
  37. int16_t vector[8]; ///< input vector: 5/5/4/4/4/3/3/3
  38. int offset1[2]; ///< 8-bit value, used in one copying offset
  39. int offset2[4]; ///< 7-bit value, encodes offsets for copying and for two-point filter
  40. int pulseoff[4]; ///< 4-bit offset of pulse values block
  41. int pulsepos[4]; ///< 27-bit variable, encodes 7 pulse positions
  42. int pulseval[4]; ///< 7x2-bit pulse values
  43. int flag; ///< 1-bit flag, shows how to choose filters
  44. /* temporary data */
  45. int filtbuf[146]; // some big vector used for storing filters
  46. int prevfilt[8]; // filter from previous frame
  47. int16_t tmp1[8]; // coefficients for adding to out
  48. int16_t tmp2[8]; // coefficients for adding to out
  49. int16_t tmp3[8]; // coefficients for adding to out
  50. int16_t cvector[8]; // correlated input vector
  51. int filtval; // gain value for one function
  52. int16_t newvec[60]; // tmp vector
  53. int16_t filters[32]; // filters for every subframe
  54. } TSContext;
  55. static av_cold int truespeech_decode_init(AVCodecContext * avctx)
  56. {
  57. TSContext *c = avctx->priv_data;
  58. if (avctx->channels != 1) {
  59. av_log_ask_for_sample(avctx, "Unsupported channel count: %d\n", avctx->channels);
  60. return AVERROR(EINVAL);
  61. }
  62. avctx->sample_fmt = AV_SAMPLE_FMT_S16;
  63. dsputil_init(&c->dsp, avctx);
  64. return 0;
  65. }
  66. static void truespeech_read_frame(TSContext *dec, const uint8_t *input)
  67. {
  68. GetBitContext gb;
  69. dec->dsp.bswap_buf((uint32_t *)dec->buffer, (const uint32_t *)input, 8);
  70. init_get_bits(&gb, dec->buffer, 32 * 8);
  71. dec->vector[7] = ts_codebook[7][get_bits(&gb, 3)];
  72. dec->vector[6] = ts_codebook[6][get_bits(&gb, 3)];
  73. dec->vector[5] = ts_codebook[5][get_bits(&gb, 3)];
  74. dec->vector[4] = ts_codebook[4][get_bits(&gb, 4)];
  75. dec->vector[3] = ts_codebook[3][get_bits(&gb, 4)];
  76. dec->vector[2] = ts_codebook[2][get_bits(&gb, 4)];
  77. dec->vector[1] = ts_codebook[1][get_bits(&gb, 5)];
  78. dec->vector[0] = ts_codebook[0][get_bits(&gb, 5)];
  79. dec->flag = get_bits1(&gb);
  80. dec->offset1[0] = get_bits(&gb, 4) << 4;
  81. dec->offset2[3] = get_bits(&gb, 7);
  82. dec->offset2[2] = get_bits(&gb, 7);
  83. dec->offset2[1] = get_bits(&gb, 7);
  84. dec->offset2[0] = get_bits(&gb, 7);
  85. dec->offset1[1] = get_bits(&gb, 4);
  86. dec->pulseval[1] = get_bits(&gb, 14);
  87. dec->pulseval[0] = get_bits(&gb, 14);
  88. dec->offset1[1] |= get_bits(&gb, 4) << 4;
  89. dec->pulseval[3] = get_bits(&gb, 14);
  90. dec->pulseval[2] = get_bits(&gb, 14);
  91. dec->offset1[0] |= get_bits1(&gb);
  92. dec->pulsepos[0] = get_bits_long(&gb, 27);
  93. dec->pulseoff[0] = get_bits(&gb, 4);
  94. dec->offset1[0] |= get_bits1(&gb) << 1;
  95. dec->pulsepos[1] = get_bits_long(&gb, 27);
  96. dec->pulseoff[1] = get_bits(&gb, 4);
  97. dec->offset1[0] |= get_bits1(&gb) << 2;
  98. dec->pulsepos[2] = get_bits_long(&gb, 27);
  99. dec->pulseoff[2] = get_bits(&gb, 4);
  100. dec->offset1[0] |= get_bits1(&gb) << 3;
  101. dec->pulsepos[3] = get_bits_long(&gb, 27);
  102. dec->pulseoff[3] = get_bits(&gb, 4);
  103. }
  104. static void truespeech_correlate_filter(TSContext *dec)
  105. {
  106. int16_t tmp[8];
  107. int i, j;
  108. for(i = 0; i < 8; i++){
  109. if(i > 0){
  110. memcpy(tmp, dec->cvector, i * sizeof(*tmp));
  111. for(j = 0; j < i; j++)
  112. dec->cvector[j] = ((tmp[i - j - 1] * dec->vector[i]) +
  113. (dec->cvector[j] << 15) + 0x4000) >> 15;
  114. }
  115. dec->cvector[i] = (8 - dec->vector[i]) >> 3;
  116. }
  117. for(i = 0; i < 8; i++)
  118. dec->cvector[i] = (dec->cvector[i] * ts_decay_994_1000[i]) >> 15;
  119. dec->filtval = dec->vector[0];
  120. }
  121. static void truespeech_filters_merge(TSContext *dec)
  122. {
  123. int i;
  124. if(!dec->flag){
  125. for(i = 0; i < 8; i++){
  126. dec->filters[i + 0] = dec->prevfilt[i];
  127. dec->filters[i + 8] = dec->prevfilt[i];
  128. }
  129. }else{
  130. for(i = 0; i < 8; i++){
  131. dec->filters[i + 0]=(dec->cvector[i] * 21846 + dec->prevfilt[i] * 10923 + 16384) >> 15;
  132. dec->filters[i + 8]=(dec->cvector[i] * 10923 + dec->prevfilt[i] * 21846 + 16384) >> 15;
  133. }
  134. }
  135. for(i = 0; i < 8; i++){
  136. dec->filters[i + 16] = dec->cvector[i];
  137. dec->filters[i + 24] = dec->cvector[i];
  138. }
  139. }
  140. static void truespeech_apply_twopoint_filter(TSContext *dec, int quart)
  141. {
  142. int16_t tmp[146 + 60], *ptr0, *ptr1;
  143. const int16_t *filter;
  144. int i, t, off;
  145. t = dec->offset2[quart];
  146. if(t == 127){
  147. memset(dec->newvec, 0, 60 * sizeof(*dec->newvec));
  148. return;
  149. }
  150. for(i = 0; i < 146; i++)
  151. tmp[i] = dec->filtbuf[i];
  152. off = (t / 25) + dec->offset1[quart >> 1] + 18;
  153. ptr0 = tmp + 145 - off;
  154. ptr1 = tmp + 146;
  155. filter = (const int16_t*)ts_order2_coeffs + (t % 25) * 2;
  156. for(i = 0; i < 60; i++){
  157. t = (ptr0[0] * filter[0] + ptr0[1] * filter[1] + 0x2000) >> 14;
  158. ptr0++;
  159. dec->newvec[i] = t;
  160. ptr1[i] = t;
  161. }
  162. }
  163. static void truespeech_place_pulses(TSContext *dec, int16_t *out, int quart)
  164. {
  165. int16_t tmp[7];
  166. int i, j, t;
  167. const int16_t *ptr1;
  168. int16_t *ptr2;
  169. int coef;
  170. memset(out, 0, 60 * sizeof(*out));
  171. for(i = 0; i < 7; i++) {
  172. t = dec->pulseval[quart] & 3;
  173. dec->pulseval[quart] >>= 2;
  174. tmp[6 - i] = ts_pulse_scales[dec->pulseoff[quart] * 4 + t];
  175. }
  176. coef = dec->pulsepos[quart] >> 15;
  177. ptr1 = (const int16_t*)ts_pulse_values + 30;
  178. ptr2 = tmp;
  179. for(i = 0, j = 3; (i < 30) && (j > 0); i++){
  180. t = *ptr1++;
  181. if(coef >= t)
  182. coef -= t;
  183. else{
  184. out[i] = *ptr2++;
  185. ptr1 += 30;
  186. j--;
  187. }
  188. }
  189. coef = dec->pulsepos[quart] & 0x7FFF;
  190. ptr1 = (const int16_t*)ts_pulse_values;
  191. for(i = 30, j = 4; (i < 60) && (j > 0); i++){
  192. t = *ptr1++;
  193. if(coef >= t)
  194. coef -= t;
  195. else{
  196. out[i] = *ptr2++;
  197. ptr1 += 30;
  198. j--;
  199. }
  200. }
  201. }
  202. static void truespeech_update_filters(TSContext *dec, int16_t *out, int quart)
  203. {
  204. int i;
  205. memmove(dec->filtbuf, &dec->filtbuf[60], 86 * sizeof(*dec->filtbuf));
  206. for(i = 0; i < 60; i++){
  207. dec->filtbuf[i + 86] = out[i] + dec->newvec[i] - (dec->newvec[i] >> 3);
  208. out[i] += dec->newvec[i];
  209. }
  210. }
  211. static void truespeech_synth(TSContext *dec, int16_t *out, int quart)
  212. {
  213. int i,k;
  214. int t[8];
  215. int16_t *ptr0, *ptr1;
  216. ptr0 = dec->tmp1;
  217. ptr1 = dec->filters + quart * 8;
  218. for(i = 0; i < 60; i++){
  219. int sum = 0;
  220. for(k = 0; k < 8; k++)
  221. sum += ptr0[k] * ptr1[k];
  222. sum = (sum + (out[i] << 12) + 0x800) >> 12;
  223. out[i] = av_clip(sum, -0x7FFE, 0x7FFE);
  224. for(k = 7; k > 0; k--)
  225. ptr0[k] = ptr0[k - 1];
  226. ptr0[0] = out[i];
  227. }
  228. for(i = 0; i < 8; i++)
  229. t[i] = (ts_decay_35_64[i] * ptr1[i]) >> 15;
  230. ptr0 = dec->tmp2;
  231. for(i = 0; i < 60; i++){
  232. int sum = 0;
  233. for(k = 0; k < 8; k++)
  234. sum += ptr0[k] * t[k];
  235. for(k = 7; k > 0; k--)
  236. ptr0[k] = ptr0[k - 1];
  237. ptr0[0] = out[i];
  238. out[i] = ((out[i] << 12) - sum) >> 12;
  239. }
  240. for(i = 0; i < 8; i++)
  241. t[i] = (ts_decay_3_4[i] * ptr1[i]) >> 15;
  242. ptr0 = dec->tmp3;
  243. for(i = 0; i < 60; i++){
  244. int sum = out[i] << 12;
  245. for(k = 0; k < 8; k++)
  246. sum += ptr0[k] * t[k];
  247. for(k = 7; k > 0; k--)
  248. ptr0[k] = ptr0[k - 1];
  249. ptr0[0] = av_clip((sum + 0x800) >> 12, -0x7FFE, 0x7FFE);
  250. sum = ((ptr0[1] * (dec->filtval - (dec->filtval >> 2))) >> 4) + sum;
  251. sum = sum - (sum >> 3);
  252. out[i] = av_clip((sum + 0x800) >> 12, -0x7FFE, 0x7FFE);
  253. }
  254. }
  255. static void truespeech_save_prevvec(TSContext *c)
  256. {
  257. int i;
  258. for(i = 0; i < 8; i++)
  259. c->prevfilt[i] = c->cvector[i];
  260. }
  261. static int truespeech_decode_frame(AVCodecContext *avctx,
  262. void *data, int *data_size,
  263. AVPacket *avpkt)
  264. {
  265. const uint8_t *buf = avpkt->data;
  266. int buf_size = avpkt->size;
  267. TSContext *c = avctx->priv_data;
  268. int i, j;
  269. short *samples = data;
  270. int iterations, out_size;
  271. iterations = buf_size / 32;
  272. if (!iterations) {
  273. av_log(avctx, AV_LOG_ERROR,
  274. "Too small input buffer (%d bytes), need at least 32 bytes\n", buf_size);
  275. return -1;
  276. }
  277. out_size = iterations * 240 * av_get_bytes_per_sample(avctx->sample_fmt);
  278. if (*data_size < out_size) {
  279. av_log(avctx, AV_LOG_ERROR, "Output buffer is too small\n");
  280. return AVERROR(EINVAL);
  281. }
  282. memset(samples, 0, out_size);
  283. for(j = 0; j < iterations; j++) {
  284. truespeech_read_frame(c, buf);
  285. buf += 32;
  286. truespeech_correlate_filter(c);
  287. truespeech_filters_merge(c);
  288. for(i = 0; i < 4; i++) {
  289. truespeech_apply_twopoint_filter(c, i);
  290. truespeech_place_pulses (c, samples, i);
  291. truespeech_update_filters(c, samples, i);
  292. truespeech_synth (c, samples, i);
  293. samples += 60;
  294. }
  295. truespeech_save_prevvec(c);
  296. }
  297. *data_size = out_size;
  298. return buf_size;
  299. }
  300. AVCodec ff_truespeech_decoder = {
  301. .name = "truespeech",
  302. .type = AVMEDIA_TYPE_AUDIO,
  303. .id = CODEC_ID_TRUESPEECH,
  304. .priv_data_size = sizeof(TSContext),
  305. .init = truespeech_decode_init,
  306. .decode = truespeech_decode_frame,
  307. .long_name = NULL_IF_CONFIG_SMALL("DSP Group TrueSpeech"),
  308. };