-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathspeexdsp_test.go
399 lines (376 loc) · 8.51 KB
/
speexdsp_test.go
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
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
package speexdsp
import (
"math"
"testing"
)
const (
inLenGen = 960
stereo = 2
mono = 1
)
func TestInit(t *testing.T) {
inLen, channels := inLenGen, 2
pcm := makeSinePcm(inLen, channels)
r, err := ResamplerInit(2, 48000, 48000, 4)
if err != nil {
t.Error(err)
}
for i := 0; i < 1000; i++ {
if _, _, err := r.PocessIntInterleaved(pcm); err != nil {
t.Error(err)
}
}
r.Destroy()
}
func TestError(t *testing.T) {
errors := []string{
"Success.",
"Memory allocation failed.",
"Bad resampler state.",
"Invalid argument.",
"Input and output buffers overlap.",
}
unknownError := "Unknown error. Bad error code or strange version mismatch."
for i := 0; i < ErrorMaxError+100; i++ {
s := StrError(i)
if i >= ErrorMaxError {
if s.Error() != unknownError {
t.Error("error code mismatch text", i)
}
} else if s.Error() != errors[i] {
t.Error("error code mismatch text", i)
}
}
}
// makes interleaved pcm odd channels=sin, even=cos
func makeSinePcm(samples, channels int) []int16 {
pcm := make([]int16, samples*channels)
for s := 0; s < samples; s++ {
sin, cos := math.Sincos(math.Pi * 2 / float64(samples) * float64(s))
sin *= math.MaxInt16
cos *= math.MaxInt16
for c := 0; c < channels; c++ {
if c&1 == 0 {
pcm[s*channels+c] = int16(sin)
} else {
pcm[s*channels+c] = int16(cos)
}
}
}
return pcm
}
func TestProcessInt(t *testing.T) {
fromBase := int(48000)
pcm := makeSinePcm(inLenGen, mono)
r, err := ResamplerInit(mono, fromBase, fromBase, QualityDefault)
if err != nil {
t.Error(err)
}
if _, _, err := r.PocessInt(1, pcm); err == nil {
t.Error("PocessInt returns noerr on errored channel")
}
x := [](*Resampler){}
for i := 0.1; i < 2; i += .01 {
toBase := int(float64(fromBase) * i)
r, err := ResamplerInit(mono, fromBase, toBase, QualityDefault)
if err != nil {
t.Error(err)
}
x = append(x, r)
pos := 0
out := 0
steps := 0
// speexdsp is used as "Black Box", we dont know all situations, when
// resampler returns earlier, than input ends
for q := 1; q < 100; q++ {
for pos < len(pcm) {
readed, resPcm, err := r.PocessInt(0, pcm[pos:])
if err != nil {
t.Error(err)
break
}
out += len(resPcm)
pos += readed
steps++
}
if math.Abs(float64(out)/float64(len(pcm))-i) > 1e-2 {
t.Error(i, steps, inLenGen, out)
}
}
}
for _, r := range x {
r.Destroy()
}
}
func TestProcessIntInterleaved(t *testing.T) {
fromBase := int(48000)
inLen := inLenGen
channels := stereo
pcm := makeSinePcm(inLen, channels)
var r *Resampler
var err error
var x [](*Resampler)
loop:
for i := 0.1; i < 2; i += .01 {
toBase := int(float64(fromBase) * i)
r, err = ResamplerInit(channels, fromBase, toBase, QualityDefault)
if err != nil {
t.Error(err)
}
x = append(x, r)
pos := 0
out := 0
steps := 0
// speexdsp is used as "Black Box", we dont know all situations, when
// resampler returns earlier, than input ends
for pos < len(pcm) {
readed, resPcm, err := r.PocessIntInterleaved(pcm[pos:])
if err != nil {
t.Error(err)
break loop
}
out += len(resPcm)
pos += readed
steps++
}
if math.Abs(float64(out)/float64(len(pcm))-i) > 1e-2 {
t.Error(i, steps, inLen, out)
break loop
}
}
for _, r := range x {
r.Destroy()
}
}
// makes interleaved float32 pcm odd channels=sin, even=cos
func makeSinePcmFloat32(samples, channels int) []float32 {
pcm := make([]float32, samples*channels)
for s := 0; s < samples; s++ {
sin, cos := math.Sincos(math.Pi * 2 / float64(samples) * float64(s))
for c := 0; c < channels; c++ {
if c&1 == 0 {
pcm[s*channels+c] = float32(sin)
} else {
pcm[s*channels+c] = float32(cos)
}
}
}
return pcm
}
func TestProcessFloat(t *testing.T) {
fromBase := int(48000)
inLen := inLenGen
channels := mono
pcm := makeSinePcmFloat32(inLen, channels)
var r *Resampler
var err error
r, err = ResamplerInit(channels, fromBase, fromBase, QualityDefault)
if _, _, err := r.PocessFloat(1, pcm); err == nil {
t.Error("PocessFloat returns noerr on errored channel")
}
x := [](*Resampler){}
for i := 0.5; i < 2; i += .01 {
toBase := int(float64(fromBase) * i)
r, err = ResamplerInit(channels, fromBase, toBase, QualityDefault)
if err != nil {
t.Error(err)
}
x = append(x, r)
pos := 0
out := 0
steps := 0
// speexdsp is used as "Black Box", we dont know all situations, when
// resampler returns earlier, than input ends
for pos < len(pcm) {
readed, resPcm, err := r.PocessFloat(0, pcm[pos:])
if err != nil {
t.Error(err)
break
}
out += len(resPcm)
pos += readed
steps++
}
if math.Abs(float64(out)/float64(len(pcm))-i) > 0.1 {
t.Error(i, steps, inLen, out, float64(toBase)/float64(fromBase), float64(out)/float64(len(pcm)))
}
}
for _, r := range x {
r.Destroy()
}
}
func TestProcessFloatInterleaved(t *testing.T) {
fromBase := int(48000)
inLen := inLenGen
channels := 2
pcm := makeSinePcmFloat32(inLen, channels)
x := [](*Resampler){}
loop:
for i := 0.1; i < 2; i += .01 {
toBase := int(float64(fromBase) * i)
r, err := ResamplerInit(channels, fromBase, toBase, QualityDefault)
if err != nil {
t.Error(err)
}
x = append(x, r)
pos := 0
out := 0
steps := 0
// speexdsp is used as "Black Box", we dont know all situations, when
// resampler returns earlier, than input ends
for pos < len(pcm) {
readed, resPcm, err := r.PocessFloatInterleaved(pcm[pos:])
if err != nil {
t.Error(err)
break loop
}
out += len(resPcm)
pos += readed
steps++
}
if math.Abs(float64(out)/float64(len(pcm))-i) > 1e-2 {
t.Error(i, steps, inLen, out)
break loop
}
}
for _, r := range x {
r.Destroy()
}
}
func TestFrac(t *testing.T) {
inLen, channels := inLenGen, 2
pcm := makeSinePcm(inLen, channels)
num, denum := 7, 11
r, err := ResamplerInitFrac(2, num, denum, 48000, 48000, 4)
if err != nil {
t.Error(err)
}
for i := 0; i < 10; i++ {
if _, _, err := r.PocessIntInterleaved(pcm); err != nil {
t.Error(err)
}
}
if num1, denum1, err := r.GetRatio(); err == nil {
if num != num1 || denum != denum1 {
t.Error("Ratio error")
}
} else {
t.Error(err)
}
newNum, newDenum := 17, 13
if err := r.SetRateFrac(newNum, newDenum, 48000, 48000); err != nil {
t.Error(err)
}
if num1, denum1, err := r.GetRatio(); err == nil {
if newNum != num1 || newDenum != denum1 {
t.Error("Ratio error")
}
} else {
t.Error(err)
}
r.Destroy()
}
func TestLatency(t *testing.T) {
inLen, channels := inLenGen, 2
pcm := makeSinePcm(inLen, channels)
inF, outF := 48000, 44100
r, err := ResamplerInit(2, inF, outF, 4)
if err != nil {
t.Error(err)
}
for i := 0; i < 10; i++ {
if _, _, err := r.PocessIntInterleaved(pcm); err != nil {
t.Error(err)
}
}
if latency, err := r.GetOutputLatency(); err != nil {
t.Error(err)
} else {
if latency == 0 {
t.Error("Latency error")
}
}
if latency, err := r.GetInputLatency(); err != nil {
t.Error(err)
} else {
if latency == 0 {
t.Error("Latency error")
}
}
r.Destroy()
}
func TestRate(t *testing.T) {
inLen, channels := inLenGen, 2
pcm := makeSinePcm(inLen, channels)
inF, outF := 48000, 44100
r, err := ResamplerInit(2, inF, outF, 4)
if err != nil {
t.Error(err)
}
for i := 0; i < 10; i++ {
if _, _, err := r.PocessIntInterleaved(pcm); err != nil {
t.Error(err)
}
}
if inF1, outF1, err := r.GetRate(); err == nil {
if inF != inF1 || outF != outF1 {
t.Error("Rate error")
}
} else {
t.Error(err)
}
inF, outF = outF, inF
if err := r.SetRate(inF, outF); err != nil {
t.Error(err)
}
if inF1, outF1, err := r.GetRate(); err == nil {
if inF != inF1 || outF != outF1 {
t.Error("Rate error")
}
} else {
t.Error(err)
}
r.Destroy()
}
func TestQuality(t *testing.T) {
inF, outF := 48000, 44100
r, err := ResamplerInit(2, inF, outF, 4)
if err != nil {
t.Error(err)
}
for i := QualityMin; i <= QualityMax; i++ {
if err := r.SetQuality(i); err != nil {
t.Error(err)
break
}
}
for _, i := range []int{QualityMin - 1, QualityMax + 1} {
if err := r.SetQuality(i); err == nil {
t.Error("SetQuality return noerr w/quality ", i)
break
}
}
r.Destroy()
}
func TestSkipZeros(t *testing.T) {
inF, outF := 48000, 44100
r, err := ResamplerInit(2, inF, outF, 4)
if err != nil {
t.Fatal(err)
}
if err := r.SkipZeros(); err != nil {
t.Error(err)
}
r.Destroy()
}
func TestResetMem(t *testing.T) {
inF, outF := 48000, 44100
r, err := ResamplerInit(2, inF, outF, 4)
if err != nil {
t.Error(err)
}
if err := r.ResetMem(); err != nil {
t.Error(err)
}
r.Destroy()
}