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
28
30 /**
31 * @file
32 * TrueSpeech decoder.
33 */
34
35 /**
36 * TrueSpeech decoder context
37 */
40 /* input data */
42 int16_t vector[8];
///< input vector: 5/5/4/4/4/3/3/3
43 int offset1[2];
///< 8-bit value, used in one copying offset
44 int offset2[4];
///< 7-bit value, encodes offsets for copying and for two-point filter
45 int pulseoff[4];
///< 4-bit offset of pulse values block
46 int pulsepos[4];
///< 27-bit variable, encodes 7 pulse positions
47 int pulseval[4];
///< 7x2-bit pulse values
48 int flag;
///< 1-bit flag, shows how to choose filters
49 /* temporary data */
50 int filtbuf[146];
// some big vector used for storing filters
51 int prevfilt[8];
// filter from previous frame
52 int16_t tmp1[8];
// coefficients for adding to out
53 int16_t tmp2[8];
// coefficients for adding to out
54 int16_t tmp3[8];
// coefficients for adding to out
55 int16_t cvector[8];
// correlated input vector
56 int filtval;
// gain value for one function
57 int16_t newvec[60];
// tmp vector
58 int16_t
filters[32];
// filters for every subframe
60
62 {
64
68 }
69
72
74
75 return 0;
76 }
77
79 {
81
84
94
100
104
108
112
116
120
124 }
125
127 {
128 int16_t tmp[8];
129 int i, j;
130
131 for(i = 0; i < 8; i++){
132 if(i > 0){
133 memcpy(tmp, dec->
cvector, i *
sizeof(*tmp));
134 for(j = 0; j < i; j++)
136 (dec->
cvector[j] << 15) + 0x4000) >> 15;
137 }
139 }
140 for(i = 0; i < 8; i++)
142
144 }
145
147 {
148 int i;
149
151 for(i = 0; i < 8; i++){
154 }
155 }else{
156 for(i = 0; i < 8; i++){
159 }
160 }
161 for(i = 0; i < 8; i++){
164 }
165 }
166
168 {
169 int16_t tmp[146 + 60], *ptr0, *ptr1;
172
174 if(t == 127){
176 return;
177 }
178 for(i = 0; i < 146; i++)
180 off = (t / 25) + dec->
offset1[quart >> 1] + 18;
181 off = av_clip(off, 0, 145);
182 ptr0 = tmp + 145 -
off;
183 ptr1 = tmp + 146;
185 for(i = 0; i < 60; i++){
186 t = (ptr0[0] * filter[0] + ptr0[1] * filter[1] + 0x2000) >> 14;
187 ptr0++;
190 }
191 }
192
194 {
195 int16_t tmp[7];
197 const int16_t *ptr1;
198 int16_t *ptr2;
199 int coef;
200
201 memset(out, 0, 60 * sizeof(*out));
202 for(i = 0; i < 7; i++) {
206 }
207
210 ptr2 = tmp;
211 for(i = 0, j = 3; (i < 30) && (j > 0); i++){
212 t = *ptr1++;
213 if(coef >= t)
215 else{
216 out[i] = *ptr2++;
217 ptr1 += 30;
218 j--;
219 }
220 }
221 coef = dec->
pulsepos[quart] & 0x7FFF;
223 for(i = 30, j = 4; (i < 60) && (j > 0); i++){
224 t = *ptr1++;
225 if(coef >= t)
227 else{
228 out[i] = *ptr2++;
229 ptr1 += 30;
230 j--;
231 }
232 }
233
234 }
235
237 {
238 int i;
239
241 for(i = 0; i < 60; i++){
244 }
245 }
246
248 {
249 int i,k;
251 int16_t *ptr0, *ptr1;
252
254 ptr1 = dec->
filters + quart * 8;
255 for(i = 0; i < 60; i++){
256 int sum = 0;
257 for(k = 0; k < 8; k++)
258 sum += ptr0[k] * ptr1[k];
259 sum = (sum + (out[i] << 12) + 0x800) >> 12;
260 out[i] = av_clip(sum, -0x7FFE, 0x7FFE);
261 for(k = 7; k > 0; k--)
262 ptr0[k] = ptr0[k - 1];
263 ptr0[0] = out[i];
264 }
265
266 for(i = 0; i < 8; i++)
268
270 for(i = 0; i < 60; i++){
271 int sum = 0;
272 for(k = 0; k < 8; k++)
273 sum += ptr0[k] * t[k];
274 for(k = 7; k > 0; k--)
275 ptr0[k] = ptr0[k - 1];
276 ptr0[0] = out[i];
277 out[i] = ((out[i] << 12) - sum) >> 12;
278 }
279
280 for(i = 0; i < 8; i++)
282
284 for(i = 0; i < 60; i++){
285 int sum = out[i] << 12;
286 for(k = 0; k < 8; k++)
287 sum += ptr0[k] * t[k];
288 for(k = 7; k > 0; k--)
289 ptr0[k] = ptr0[k - 1];
290 ptr0[0] = av_clip((sum + 0x800) >> 12, -0x7FFE, 0x7FFE);
291
292 sum = ((ptr0[1] * (dec->
filtval - (dec->
filtval >> 2))) >> 4) + sum;
293 sum = sum - (sum >> 3);
294 out[i] = av_clip((sum + 0x800) >> 12, -0x7FFE, 0x7FFE);
295 }
296 }
297
299 {
300 int i;
301
302 for(i = 0; i < 8; i++)
304 }
305
307 int *got_frame_ptr,
AVPacket *avpkt)
308 {
311 int buf_size = avpkt->
size;
313
314 int i, j;
315 int16_t *samples;
317
318 iterations = buf_size / 32;
319
320 if (!iterations) {
322 "Too small input buffer (%d bytes), need at least 32 bytes\n", buf_size);
323 return -1;
324 }
325
326 /* get output buffer */
330 samples = (int16_t *)frame->
data[0];
331
332 memset(samples, 0, iterations * 240 * sizeof(*samples));
333
334 for(j = 0; j < iterations; j++) {
336 buf += 32;
337
340
341 for(i = 0; i < 4; i++) {
346 samples += 60;
347 }
348
350 }
351
352 *got_frame_ptr = 1;
353
354 return buf_size;
355 }
356
358 .
name =
"truespeech",
366 };