-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathLtp3Tap.cs
360 lines (321 loc) · 9.65 KB
/
Ltp3Tap.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
//
// Copyright (C) 2003 Jean-Marc Valin
// Copyright (C) 1999-2003 Wimba S.A., All Rights Reserved.
// Copyright (C) 2008 Filip Navara
// Copyright (C) 2009-2010 Christoph Fröschl
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
//
// - Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//
// - Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// - Neither the name of the Xiph.org Foundation nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
using System;
namespace NSpeex
{
/// <summary>
/// Long Term Prediction Quantisation and Unquantisation (3Tap)
/// </summary>
internal class Ltp3Tap : Ltp
{
private float[] gain;
private int[] gain_cdbk;
private int gain_bits;
private int pitch_bits;
private float[][] e;
public Ltp3Tap(int[] gain_cdbk_0, int gain_bits_1, int pitch_bits_2)
{
this.gain = new float[3];
this.gain_cdbk = gain_cdbk_0;
this.gain_bits = gain_bits_1;
this.pitch_bits = pitch_bits_2;
this.e = CreateJaggedArray<float>(3, 128);
}
private T[][] CreateJaggedArray<T>(int dim1, int dim2)
{
T[][] a1 = new T[dim1][];
for (int i = 0; i < dim1; i++)
{
a1[i] = new T[dim2];
Array.Clear(a1[i], 0, dim2);
}
return a1;
}
/// <summary>
/// Long Term Prediction Quantification (3Tap).
/// </summary>
/// <returns>pitch</returns>
public sealed override int Quant(
float[] target, float[] sw, int sws, float[] ak,
float[] awk1, float[] awk2, float[] exc, int es, int start,
int end, float pitch_coef, int p, int nsf, Bits bits, float[] exc2,
int e2s, float[] r, int complexity)
{
int i, j;
int[] cdbk_index = new int[1];
int pitch = 0, best_gain_index = 0;
float[] best_exc;
int best_pitch = 0;
float err, best_err = -1;
int N;
int[] nbest;
float[] gains;
N = complexity;
if (N > 10)
N = 10;
nbest = new int[N];
gains = new float[N];
if (N == 0 || end < start)
{
bits.Pack(0, pitch_bits);
bits.Pack(0, gain_bits);
for (i = 0; i < nsf; i++)
exc[es + i] = 0;
return start;
}
best_exc = new float[nsf];
if (N > end - start + 1)
N = end - start + 1;
NSpeex.Ltp.Open_loop_nbest_pitch(sw, sws, start, end, nsf, nbest, gains, N);
for (i = 0; i < N; i++)
{
pitch = nbest[i];
for (j = 0; j < nsf; j++)
exc[es + j] = 0;
err = Pitch_gain_search_3tap(target, ak, awk1, awk2, exc, es,
pitch, p, nsf, bits, exc2, e2s, r, cdbk_index);
if (err < best_err || best_err < 0)
{
for (j = 0; j < nsf; j++)
best_exc[j] = exc[es + j];
best_err = err;
best_pitch = pitch;
best_gain_index = cdbk_index[0];
}
}
bits.Pack(best_pitch - start, pitch_bits);
bits.Pack(best_gain_index, gain_bits);
for (i = 0; i < nsf; i++)
exc[es + i] = best_exc[i];
return pitch;
}
/// <summary>
/// Long Term Prediction Unquantification (3Tap).
/// </summary>
/// <returns>pitch</returns>
public sealed override int Unquant(
float[] exc, int es, int start, float pitch_coef,
int nsf, float[] gain_val, Bits bits, int count_lost,
int subframe_offset, float last_pitch_gain)
{
int i, pitch, gain_index;
pitch = bits.Unpack(pitch_bits);
pitch += start;
gain_index = bits.Unpack(gain_bits);
gain[0] = 0.015625f * (float)gain_cdbk[gain_index * 3] + .5f;
gain[1] = 0.015625f * (float)gain_cdbk[gain_index * 3 + 1] + .5f;
gain[2] = 0.015625f * (float)gain_cdbk[gain_index * 3 + 2] + .5f;
if (count_lost != 0 && pitch > subframe_offset)
{
float gain_sum = Math.Abs(gain[1]);
float tmp = (count_lost < 4) ? last_pitch_gain
: 0.4f * last_pitch_gain;
if (tmp > .95f)
tmp = .95f;
if (gain[0] > 0)
gain_sum += gain[0];
else
gain_sum -= .5f * gain[0];
if (gain[2] > 0)
gain_sum += gain[2];
else
gain_sum -= .5f * gain[0];
if (gain_sum > tmp)
{
float fact = tmp / gain_sum;
for (i = 0; i < 3; i++)
gain[i] *= fact;
}
}
gain_val[0] = gain[0];
gain_val[1] = gain[1];
gain_val[2] = gain[2];
for (i = 0; i < 3; i++)
{
int j, tmp1, tmp2, pp = pitch + 1 - i;
tmp1 = nsf;
if (tmp1 > pp)
tmp1 = pp;
tmp2 = nsf;
if (tmp2 > pp + pitch)
tmp2 = pp + pitch;
for (j = 0; j < tmp1; j++)
e[i][j] = exc[es + j - pp];
for (j = tmp1; j < tmp2; j++)
e[i][j] = exc[es + j - pp - pitch];
for (j = tmp2; j < nsf; j++)
e[i][j] = 0;
}
for (i = 0; i < nsf; i++)
{
exc[es + i] = gain[0] * e[2][i] + gain[1] * e[1][i] + gain[2]
* e[0][i];
}
return pitch;
}
/// <summary>
/// Finds the best quantized 3-tap pitch predictor by analysis by synthesis.
/// </summary>
/// <param name="target">Target vector</param>
/// <param name="ak">LPCs for this subframe</param>
/// <param name="awk1">Weighted LPCs #1 for this subframe</param>
/// <param name="awk2">Weighted LPCs #2 for this subframe</param>
/// <param name="exc">Excitation</param>
/// <param name="es"></param>
/// <param name="pitch">Pitch value</param>
/// <param name="p">Number of LPC coeffs</param>
/// <param name="nsf">Number of samples in subframe</param>
/// <param name="bits"></param>
/// <param name="exc2"></param>
/// <param name="e2s"></param>
/// <param name="r"></param>
/// <param name="cdbk_index"></param>
/// <returns>the best quantized 3-tap pitch predictor by analysis by</returns>
private float Pitch_gain_search_3tap(float[] target,
float[] ak, float[] awk1, float[] awk2,
float[] exc, int es, int pitch, int p,
int nsf, Bits bits, float[] exc2, int e2s,
float[] r, int[] cdbk_index)
{
int i, j;
float[][] x;
// float[][] e;
float[] corr = new float[3];
float[][] A = CreateJaggedArray<float>(3, 3);
int gain_cdbk_size;
float err1, err2;
gain_cdbk_size = 1 << gain_bits;
x = CreateJaggedArray<float>(3, nsf);
e = CreateJaggedArray<float>(3, nsf);
for (i = 2; i >= 0; i--)
{
int pp = pitch + 1 - i;
for (j = 0; j < nsf; j++)
{
if (j - pp < 0)
e[i][j] = exc2[e2s + j - pp];
else if (j - pp - pitch < 0)
e[i][j] = exc2[e2s + j - pp - pitch];
else
e[i][j] = 0;
}
if (i == 2)
NSpeex.Filters.Syn_percep_zero(e[i], 0, ak, awk1, awk2, x[i],
nsf, p);
else
{
for (j = 0; j < nsf - 1; j++)
x[i][j + 1] = x[i + 1][j];
x[i][0] = 0;
for (j = 0; j < nsf; j++)
x[i][j] += e[i][0] * r[j];
}
}
for (i = 0; i < 3; i++)
corr[i] = NSpeex.Ltp.Inner_prod(x[i], 0, target, 0, nsf);
for (i = 0; i < 3; i++)
for (j = 0; j <= i; j++)
A[i][j] = A[j][i] = NSpeex.Ltp.Inner_prod(x[i], 0, x[j], 0, nsf);
{
float[] C = new float[9];
int ptr = 0;
int best_cdbk = 0;
float best_sum = 0;
C[0] = corr[2];
C[1] = corr[1];
C[2] = corr[0];
C[3] = A[1][2];
C[4] = A[0][1];
C[5] = A[0][2];
C[6] = A[2][2];
C[7] = A[1][1];
C[8] = A[0][0];
for (i = 0; i < gain_cdbk_size; i++)
{
float sum = 0;
float g0, g1, g2;
ptr = 3 * i;
g0 = 0.015625f * gain_cdbk[ptr] + .5f;
g1 = 0.015625f * gain_cdbk[ptr + 1] + .5f;
g2 = 0.015625f * gain_cdbk[ptr + 2] + .5f;
sum += C[0] * g0;
sum += C[1] * g1;
sum += C[2] * g2;
sum -= C[3] * g0 * g1;
sum -= C[4] * g2 * g1;
sum -= C[5] * g2 * g0;
sum -= .5f * C[6] * g0 * g0;
sum -= .5f * C[7] * g1 * g1;
sum -= .5f * C[8] * g2 * g2;
/*
* If true, force "safe" pitch values to handle packet loss
* better
*/
if (false)
{
float tot = Math.Abs(gain_cdbk[ptr + 1]);
if (gain_cdbk[ptr] > 0)
tot += gain_cdbk[ptr];
if (gain_cdbk[ptr + 2] > 0)
tot += gain_cdbk[ptr + 2];
if (tot > 1)
continue;
}
if (sum > best_sum || i == 0)
{
best_sum = sum;
best_cdbk = i;
}
}
gain[0] = 0.015625f * gain_cdbk[best_cdbk * 3] + .5f;
gain[1] = 0.015625f * gain_cdbk[best_cdbk * 3 + 1] + .5f;
gain[2] = 0.015625f * gain_cdbk[best_cdbk * 3 + 2] + .5f;
cdbk_index[0] = best_cdbk;
}
for (i = 0; i < nsf; i++)
exc[es + i] = gain[0] * e[2][i] + gain[1] * e[1][i] + gain[2]
* e[0][i];
err1 = 0;
err2 = 0;
for (i = 0; i < nsf; i++)
err1 += target[i] * target[i];
for (i = 0; i < nsf; i++)
err2 += (target[i] - gain[2] * x[0][i] - gain[1] * x[1][i] - gain[0]
* x[2][i])
* (target[i] - gain[2] * x[0][i] - gain[1] * x[1][i] - gain[0]
* x[2][i]);
return err2;
}
}
}