forked from gen2brain/malgo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmini_al_test.go
192 lines (147 loc) · 4 KB
/
mini_al_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
package malgo_test
import (
"flag"
"fmt"
"io/ioutil"
"testing"
"time"
"github.com/gen2brain/malgo"
)
var testenvWithHardware bool
func init() {
flag.BoolVar(&testenvWithHardware, "malgo.hw", false, "Add flag to run tests expecting hardware")
flag.Parse()
}
func TestCapturePlayback(t *testing.T) {
onLog := func(message string) {
fmt.Fprintf(ioutil.Discard, message)
}
ctx, err := malgo.InitContext([]malgo.Backend{malgo.BackendNull}, malgo.ContextConfig{}, onLog)
if err != nil {
t.Fatal(err)
}
defer func() {
_ = ctx.Uninit()
ctx.Free()
}()
deviceConfig := malgo.DefaultDeviceConfig()
deviceConfig.Format = malgo.FormatS16
deviceConfig.Channels = 2
deviceConfig.SampleRate = 48000
deviceConfig.Alsa.NoMMap = 1
var playbackSampleCount uint32
var capturedSampleCount uint32
pCapturedSamples := make([]byte, 0)
sizeInBytes := uint32(malgo.SampleSizeInBytes(deviceConfig.Format))
onRecvFrames := func(framecount uint32, pSamples []byte) {
sampleCount := framecount * deviceConfig.Channels * sizeInBytes
newCapturedSampleCount := capturedSampleCount + sampleCount
pCapturedSamples = append(pCapturedSamples, pSamples...)
capturedSampleCount = newCapturedSampleCount
}
captureCallbacks := malgo.DeviceCallbacks{
Recv: onRecvFrames,
}
device, err := malgo.InitDevice(ctx.Context, malgo.Capture, nil, deviceConfig, captureCallbacks)
if err != nil {
t.Fatal(err)
}
if device.Type() != malgo.Capture {
t.Errorf("wrong device type")
}
if device.Format() != malgo.FormatS16 {
t.Errorf("wrong format")
}
if device.Channels() != 2 {
t.Errorf("wrong number of channels")
}
if device.SampleRate() != 48000 {
t.Errorf("wrong samplerate")
}
err = device.Start()
if err != nil {
t.Fatal(err)
}
if !device.IsStarted() {
t.Fatalf("device not started")
}
time.Sleep(1 * time.Second)
device.Uninit()
onSendFrames := func(framecount uint32, pSamples []byte) uint32 {
samplesToRead := framecount * deviceConfig.Channels * sizeInBytes
if samplesToRead > capturedSampleCount-playbackSampleCount {
samplesToRead = capturedSampleCount - playbackSampleCount
}
copy(pSamples, pCapturedSamples[playbackSampleCount:playbackSampleCount+samplesToRead])
playbackSampleCount += samplesToRead
return samplesToRead / deviceConfig.Channels / sizeInBytes
}
playbackCallbacks := malgo.DeviceCallbacks{
Send: onSendFrames,
}
device, err = malgo.InitDevice(ctx.Context, malgo.Playback, nil, deviceConfig, playbackCallbacks)
if err != nil {
t.Fatal(err)
}
if device.Type() != malgo.Playback {
t.Errorf("wrong device type")
}
err = device.Start()
if err != nil {
t.Fatal(err)
}
time.Sleep(1 * time.Second)
device.Uninit()
}
func TestErrors(t *testing.T) {
_, err := malgo.InitContext([]malgo.Backend{malgo.Backend(99)}, malgo.ContextConfig{}, nil)
if err == nil {
t.Fatalf("context init with invalid backend")
}
ctx, err := malgo.InitContext([]malgo.Backend{malgo.BackendNull}, malgo.ContextConfig{}, nil)
if err != nil {
t.Fatal(err)
}
defer func() {
_ = ctx.Uninit()
ctx.Free()
}()
onSendFrames := func(framecount uint32, pSamples []byte) uint32 {
return 0
}
deviceConfig := malgo.DefaultDeviceConfig()
deviceConfig.Format = malgo.FormatType(99)
deviceConfig.Channels = 99
deviceConfig.SampleRate = 48000
_, err = malgo.InitDevice(ctx.Context, malgo.Playback, nil, deviceConfig, malgo.DeviceCallbacks{})
if err == nil {
t.Fatalf("device init with invalid config")
}
deviceConfig.Format = malgo.FormatS16
deviceConfig.Channels = 2
deviceConfig.SampleRate = 48000
dev, err := malgo.InitDevice(ctx.Context, malgo.Playback, nil, deviceConfig, malgo.DeviceCallbacks{
Send: onSendFrames,
})
if err != nil {
t.Fatal(err)
}
err = dev.Start()
if err != nil {
t.Fatal(err)
}
err = dev.Start()
if err == nil {
t.Fatalf("device start but already started")
}
time.Sleep(1 * time.Second)
err = dev.Stop()
if err != nil {
t.Fatal(err)
}
err = dev.Stop()
if err == nil {
t.Fatalf("device stop but already stopped")
}
dev.Uninit()
}