/src/ffmpeg/libavcodec/truespeech.c
Line | Count | Source (jump to first uncovered line) |
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 | | |
22 | | #include "libavutil/channel_layout.h" |
23 | | #include "libavutil/mem_internal.h" |
24 | | |
25 | | #include "avcodec.h" |
26 | | #include "bswapdsp.h" |
27 | | #include "codec_internal.h" |
28 | | #include "decode.h" |
29 | | #include "get_bits.h" |
30 | | |
31 | | #include "truespeech_data.h" |
32 | | /** |
33 | | * @file |
34 | | * TrueSpeech decoder. |
35 | | */ |
36 | | |
37 | | /** |
38 | | * TrueSpeech decoder context |
39 | | */ |
40 | | typedef struct TSContext { |
41 | | BswapDSPContext bdsp; |
42 | | /* input data */ |
43 | | DECLARE_ALIGNED(16, uint8_t, buffer)[32]; |
44 | | int16_t vector[8]; ///< input vector: 5/5/4/4/4/3/3/3 |
45 | | int offset1[2]; ///< 8-bit value, used in one copying offset |
46 | | int offset2[4]; ///< 7-bit value, encodes offsets for copying and for two-point filter |
47 | | int pulseoff[4]; ///< 4-bit offset of pulse values block |
48 | | int pulsepos[4]; ///< 27-bit variable, encodes 7 pulse positions |
49 | | int pulseval[4]; ///< 7x2-bit pulse values |
50 | | int flag; ///< 1-bit flag, shows how to choose filters |
51 | | /* temporary data */ |
52 | | int filtbuf[146]; // some big vector used for storing filters |
53 | | int prevfilt[8]; // filter from previous frame |
54 | | int16_t tmp1[8]; // coefficients for adding to out |
55 | | int16_t tmp2[8]; // coefficients for adding to out |
56 | | int16_t tmp3[8]; // coefficients for adding to out |
57 | | int16_t cvector[8]; // correlated input vector |
58 | | int filtval; // gain value for one function |
59 | | int16_t newvec[60]; // tmp vector |
60 | | int16_t filters[32]; // filters for every subframe |
61 | | } TSContext; |
62 | | |
63 | | static av_cold int truespeech_decode_init(AVCodecContext * avctx) |
64 | 611 | { |
65 | 611 | TSContext *c = avctx->priv_data; |
66 | | |
67 | 611 | if (avctx->ch_layout.nb_channels != 1) { |
68 | 53 | avpriv_request_sample(avctx, "Channel count %d", avctx->ch_layout.nb_channels); |
69 | 53 | return AVERROR_PATCHWELCOME; |
70 | 53 | } |
71 | | |
72 | 558 | av_channel_layout_uninit(&avctx->ch_layout); |
73 | 558 | avctx->ch_layout = (AVChannelLayout)AV_CHANNEL_LAYOUT_MONO; |
74 | 558 | avctx->sample_fmt = AV_SAMPLE_FMT_S16; |
75 | | |
76 | 558 | ff_bswapdsp_init(&c->bdsp); |
77 | | |
78 | 558 | return 0; |
79 | 611 | } |
80 | | |
81 | | static void truespeech_read_frame(TSContext *dec, const uint8_t *input) |
82 | 571k | { |
83 | 571k | GetBitContext gb; |
84 | | |
85 | 571k | dec->bdsp.bswap_buf((uint32_t *) dec->buffer, (const uint32_t *) input, 8); |
86 | 571k | init_get_bits(&gb, dec->buffer, 32 * 8); |
87 | | |
88 | 571k | dec->vector[7] = ts_codebook[7][get_bits(&gb, 3)]; |
89 | 571k | dec->vector[6] = ts_codebook[6][get_bits(&gb, 3)]; |
90 | 571k | dec->vector[5] = ts_codebook[5][get_bits(&gb, 3)]; |
91 | 571k | dec->vector[4] = ts_codebook[4][get_bits(&gb, 4)]; |
92 | 571k | dec->vector[3] = ts_codebook[3][get_bits(&gb, 4)]; |
93 | 571k | dec->vector[2] = ts_codebook[2][get_bits(&gb, 4)]; |
94 | 571k | dec->vector[1] = ts_codebook[1][get_bits(&gb, 5)]; |
95 | 571k | dec->vector[0] = ts_codebook[0][get_bits(&gb, 5)]; |
96 | 571k | dec->flag = get_bits1(&gb); |
97 | | |
98 | 571k | dec->offset1[0] = get_bits(&gb, 4) << 4; |
99 | 571k | dec->offset2[3] = get_bits(&gb, 7); |
100 | 571k | dec->offset2[2] = get_bits(&gb, 7); |
101 | 571k | dec->offset2[1] = get_bits(&gb, 7); |
102 | 571k | dec->offset2[0] = get_bits(&gb, 7); |
103 | | |
104 | 571k | dec->offset1[1] = get_bits(&gb, 4); |
105 | 571k | dec->pulseval[1] = get_bits(&gb, 14); |
106 | 571k | dec->pulseval[0] = get_bits(&gb, 14); |
107 | | |
108 | 571k | dec->offset1[1] |= get_bits(&gb, 4) << 4; |
109 | 571k | dec->pulseval[3] = get_bits(&gb, 14); |
110 | 571k | dec->pulseval[2] = get_bits(&gb, 14); |
111 | | |
112 | 571k | dec->offset1[0] |= get_bits1(&gb); |
113 | 571k | dec->pulsepos[0] = get_bits_long(&gb, 27); |
114 | 571k | dec->pulseoff[0] = get_bits(&gb, 4); |
115 | | |
116 | 571k | dec->offset1[0] |= get_bits1(&gb) << 1; |
117 | 571k | dec->pulsepos[1] = get_bits_long(&gb, 27); |
118 | 571k | dec->pulseoff[1] = get_bits(&gb, 4); |
119 | | |
120 | 571k | dec->offset1[0] |= get_bits1(&gb) << 2; |
121 | 571k | dec->pulsepos[2] = get_bits_long(&gb, 27); |
122 | 571k | dec->pulseoff[2] = get_bits(&gb, 4); |
123 | | |
124 | 571k | dec->offset1[0] |= get_bits1(&gb) << 3; |
125 | 571k | dec->pulsepos[3] = get_bits_long(&gb, 27); |
126 | 571k | dec->pulseoff[3] = get_bits(&gb, 4); |
127 | 571k | } |
128 | | |
129 | | static void truespeech_correlate_filter(TSContext *dec) |
130 | 571k | { |
131 | 571k | int16_t tmp[8]; |
132 | 571k | int i, j; |
133 | | |
134 | 5.14M | for(i = 0; i < 8; i++){ |
135 | 4.57M | if(i > 0){ |
136 | 4.00M | memcpy(tmp, dec->cvector, i * sizeof(*tmp)); |
137 | 20.0M | for(j = 0; j < i; j++) |
138 | 16.0M | dec->cvector[j] += (tmp[i - j - 1] * dec->vector[i] + 0x4000) >> 15; |
139 | 4.00M | } |
140 | 4.57M | dec->cvector[i] = (8 - dec->vector[i]) >> 3; |
141 | 4.57M | } |
142 | 5.14M | for(i = 0; i < 8; i++) |
143 | 4.57M | dec->cvector[i] = (dec->cvector[i] * ts_decay_994_1000[i]) >> 15; |
144 | | |
145 | 571k | dec->filtval = dec->vector[0]; |
146 | 571k | } |
147 | | |
148 | | static void truespeech_filters_merge(TSContext *dec) |
149 | 571k | { |
150 | 571k | int i; |
151 | | |
152 | 571k | if(!dec->flag){ |
153 | 3.60M | for(i = 0; i < 8; i++){ |
154 | 3.20M | dec->filters[i + 0] = dec->prevfilt[i]; |
155 | 3.20M | dec->filters[i + 8] = dec->prevfilt[i]; |
156 | 3.20M | } |
157 | 401k | }else{ |
158 | 1.53M | for(i = 0; i < 8; i++){ |
159 | 1.36M | dec->filters[i + 0]=(dec->cvector[i] * 21846 + dec->prevfilt[i] * 10923 + 16384) >> 15; |
160 | 1.36M | dec->filters[i + 8]=(dec->cvector[i] * 10923 + dec->prevfilt[i] * 21846 + 16384) >> 15; |
161 | 1.36M | } |
162 | 170k | } |
163 | 5.14M | for(i = 0; i < 8; i++){ |
164 | 4.57M | dec->filters[i + 16] = dec->cvector[i]; |
165 | 4.57M | dec->filters[i + 24] = dec->cvector[i]; |
166 | 4.57M | } |
167 | 571k | } |
168 | | |
169 | | static void truespeech_apply_twopoint_filter(TSContext *dec, int quart) |
170 | 2.28M | { |
171 | 2.28M | int16_t tmp[146 + 60], *ptr0, *ptr1; |
172 | 2.28M | const int16_t *filter; |
173 | 2.28M | int i, t, off; |
174 | | |
175 | 2.28M | t = dec->offset2[quart]; |
176 | 2.28M | if(t == 127){ |
177 | 165k | memset(dec->newvec, 0, 60 * sizeof(*dec->newvec)); |
178 | 165k | return; |
179 | 165k | } |
180 | 311M | for(i = 0; i < 146; i++) |
181 | 309M | tmp[i] = dec->filtbuf[i]; |
182 | 2.12M | off = (t / 25) + dec->offset1[quart >> 1] + 18; |
183 | 2.12M | off = av_clip(off, 0, 145); |
184 | 2.12M | ptr0 = tmp + 145 - off; |
185 | 2.12M | ptr1 = tmp + 146; |
186 | 2.12M | filter = ts_order2_coeffs + (t % 25) * 2; |
187 | 129M | for(i = 0; i < 60; i++){ |
188 | 127M | t = (ptr0[0] * filter[0] + ptr0[1] * filter[1] + 0x2000) >> 14; |
189 | 127M | ptr0++; |
190 | 127M | dec->newvec[i] = t; |
191 | 127M | ptr1[i] = t; |
192 | 127M | } |
193 | 2.12M | } |
194 | | |
195 | | static void truespeech_place_pulses(TSContext *dec, int16_t *out, int quart) |
196 | 2.28M | { |
197 | 2.28M | int16_t tmp[7]; |
198 | 2.28M | int i, j, t; |
199 | 2.28M | const int16_t *ptr1; |
200 | 2.28M | int16_t *ptr2; |
201 | 2.28M | int coef; |
202 | | |
203 | 2.28M | memset(out, 0, 60 * sizeof(*out)); |
204 | 18.2M | for(i = 0; i < 7; i++) { |
205 | 16.0M | t = dec->pulseval[quart] & 3; |
206 | 16.0M | dec->pulseval[quart] >>= 2; |
207 | 16.0M | tmp[6 - i] = ts_pulse_scales[dec->pulseoff[quart] * 4 + t]; |
208 | 16.0M | } |
209 | | |
210 | 2.28M | coef = dec->pulsepos[quart] >> 15; |
211 | 2.28M | ptr1 = ts_pulse_values + 30; |
212 | 2.28M | ptr2 = tmp; |
213 | 33.4M | for(i = 0, j = 3; (i < 30) && (j > 0); i++){ |
214 | 31.1M | t = *ptr1++; |
215 | 31.1M | if(coef >= t) |
216 | 25.0M | coef -= t; |
217 | 6.11M | else{ |
218 | 6.11M | out[i] = *ptr2++; |
219 | 6.11M | ptr1 += 30; |
220 | 6.11M | j--; |
221 | 6.11M | } |
222 | 31.1M | } |
223 | 2.28M | coef = dec->pulsepos[quart] & 0x7FFF; |
224 | 2.28M | ptr1 = ts_pulse_values; |
225 | 38.5M | for(i = 30, j = 4; (i < 60) && (j > 0); i++){ |
226 | 36.2M | t = *ptr1++; |
227 | 36.2M | if(coef >= t) |
228 | 28.9M | coef -= t; |
229 | 7.30M | else{ |
230 | 7.30M | out[i] = *ptr2++; |
231 | 7.30M | ptr1 += 30; |
232 | 7.30M | j--; |
233 | 7.30M | } |
234 | 36.2M | } |
235 | | |
236 | 2.28M | } |
237 | | |
238 | | static void truespeech_update_filters(TSContext *dec, int16_t *out, int quart) |
239 | 2.28M | { |
240 | 2.28M | int i; |
241 | | |
242 | 2.28M | memmove(dec->filtbuf, &dec->filtbuf[60], 86 * sizeof(*dec->filtbuf)); |
243 | 139M | for(i = 0; i < 60; i++){ |
244 | 137M | dec->filtbuf[i + 86] = out[i] + dec->newvec[i] - (dec->newvec[i] >> 3); |
245 | 137M | out[i] += dec->newvec[i]; |
246 | 137M | } |
247 | 2.28M | } |
248 | | |
249 | | static void truespeech_synth(TSContext *dec, int16_t *out, int quart) |
250 | 2.28M | { |
251 | 2.28M | int i,k; |
252 | 2.28M | int t[8]; |
253 | 2.28M | int16_t *ptr0, *ptr1; |
254 | | |
255 | 2.28M | ptr0 = dec->tmp1; |
256 | 2.28M | ptr1 = dec->filters + quart * 8; |
257 | 139M | for(i = 0; i < 60; i++){ |
258 | 137M | int sum = 0; |
259 | 1.23G | for(k = 0; k < 8; k++) |
260 | 1.09G | sum += ptr0[k] * (unsigned)ptr1[k]; |
261 | 137M | sum = out[i] + ((int)(sum + 0x800U) >> 12); |
262 | 137M | out[i] = av_clip(sum, -0x7FFE, 0x7FFE); |
263 | 1.09G | for(k = 7; k > 0; k--) |
264 | 960M | ptr0[k] = ptr0[k - 1]; |
265 | 137M | ptr0[0] = out[i]; |
266 | 137M | } |
267 | | |
268 | 20.5M | for(i = 0; i < 8; i++) |
269 | 18.2M | t[i] = (ts_decay_35_64[i] * ptr1[i]) >> 15; |
270 | | |
271 | 2.28M | ptr0 = dec->tmp2; |
272 | 139M | for(i = 0; i < 60; i++){ |
273 | 137M | int sum = 0; |
274 | 1.23G | for(k = 0; k < 8; k++) |
275 | 1.09G | sum += ptr0[k] * t[k]; |
276 | 1.09G | for(k = 7; k > 0; k--) |
277 | 960M | ptr0[k] = ptr0[k - 1]; |
278 | 137M | ptr0[0] = out[i]; |
279 | 137M | out[i] += (- sum) >> 12; |
280 | 137M | } |
281 | | |
282 | 20.5M | for(i = 0; i < 8; i++) |
283 | 18.2M | t[i] = (ts_decay_3_4[i] * ptr1[i]) >> 15; |
284 | | |
285 | 2.28M | ptr0 = dec->tmp3; |
286 | 139M | for(i = 0; i < 60; i++){ |
287 | 137M | int sum = out[i] * (1 << 12); |
288 | 1.23G | for(k = 0; k < 8; k++) |
289 | 1.09G | sum += ptr0[k] * t[k]; |
290 | 1.09G | for(k = 7; k > 0; k--) |
291 | 960M | ptr0[k] = ptr0[k - 1]; |
292 | 137M | ptr0[0] = av_clip((sum + 0x800) >> 12, -0x7FFE, 0x7FFE); |
293 | | |
294 | 137M | sum = ((ptr0[1] * (dec->filtval - (dec->filtval >> 2))) >> 4) + sum; |
295 | 137M | sum = sum - (sum >> 3); |
296 | 137M | out[i] = av_clip((sum + 0x800) >> 12, -0x7FFE, 0x7FFE); |
297 | 137M | } |
298 | 2.28M | } |
299 | | |
300 | | static void truespeech_save_prevvec(TSContext *c) |
301 | 571k | { |
302 | 571k | int i; |
303 | | |
304 | 5.14M | for(i = 0; i < 8; i++) |
305 | 4.57M | c->prevfilt[i] = c->cvector[i]; |
306 | 571k | } |
307 | | |
308 | | static int truespeech_decode_frame(AVCodecContext *avctx, AVFrame *frame, |
309 | | int *got_frame_ptr, AVPacket *avpkt) |
310 | 267k | { |
311 | 267k | const uint8_t *buf = avpkt->data; |
312 | 267k | int buf_size = avpkt->size; |
313 | 267k | TSContext *c = avctx->priv_data; |
314 | | |
315 | 267k | int i, j; |
316 | 267k | int16_t *samples; |
317 | 267k | int iterations, ret; |
318 | | |
319 | 267k | iterations = buf_size / 32; |
320 | | |
321 | 267k | if (!iterations) { |
322 | 130k | av_log(avctx, AV_LOG_ERROR, |
323 | 130k | "Too small input buffer (%d bytes), need at least 32 bytes\n", buf_size); |
324 | 130k | return -1; |
325 | 130k | } |
326 | | |
327 | | /* get output buffer */ |
328 | 137k | frame->nb_samples = iterations * 240; |
329 | 137k | if ((ret = ff_get_buffer(avctx, frame, 0)) < 0) |
330 | 0 | return ret; |
331 | 137k | samples = (int16_t *)frame->data[0]; |
332 | | |
333 | 137k | memset(samples, 0, iterations * 240 * sizeof(*samples)); |
334 | | |
335 | 708k | for(j = 0; j < iterations; j++) { |
336 | 571k | truespeech_read_frame(c, buf); |
337 | 571k | buf += 32; |
338 | | |
339 | 571k | truespeech_correlate_filter(c); |
340 | 571k | truespeech_filters_merge(c); |
341 | | |
342 | 2.85M | for(i = 0; i < 4; i++) { |
343 | 2.28M | truespeech_apply_twopoint_filter(c, i); |
344 | 2.28M | truespeech_place_pulses (c, samples, i); |
345 | 2.28M | truespeech_update_filters(c, samples, i); |
346 | 2.28M | truespeech_synth (c, samples, i); |
347 | 2.28M | samples += 60; |
348 | 2.28M | } |
349 | | |
350 | 571k | truespeech_save_prevvec(c); |
351 | 571k | } |
352 | | |
353 | 137k | *got_frame_ptr = 1; |
354 | | |
355 | 137k | return buf_size; |
356 | 137k | } |
357 | | |
358 | | const FFCodec ff_truespeech_decoder = { |
359 | | .p.name = "truespeech", |
360 | | CODEC_LONG_NAME("DSP Group TrueSpeech"), |
361 | | .p.type = AVMEDIA_TYPE_AUDIO, |
362 | | .p.id = AV_CODEC_ID_TRUESPEECH, |
363 | | .priv_data_size = sizeof(TSContext), |
364 | | .init = truespeech_decode_init, |
365 | | FF_CODEC_DECODE_CB(truespeech_decode_frame), |
366 | | .p.capabilities = AV_CODEC_CAP_DR1, |
367 | | }; |