forked from gen2brain/malgo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
miniaudio_test.go
186 lines (145 loc) · 4.06 KB
/
miniaudio_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
package malgo_test
import (
"fmt"
"io/ioutil"
"testing"
"time"
"github.com/gen2brain/malgo"
)
func TestCapturePlayback(t *testing.T) {
onLog := func(message string) {
fmt.Fprintf(ioutil.Discard, message)
}
ctx, err := malgo.InitContext(nil, malgo.ContextConfig{}, onLog)
if err != nil {
t.Fatal(err)
}
defer func() {
_ = ctx.Uninit()
ctx.Free()
}()
deviceConfig := malgo.DefaultDeviceConfig(malgo.Capture)
deviceConfig.Capture.Format = malgo.FormatS16
deviceConfig.Capture.Channels = 2
deviceConfig.Playback.Format = malgo.FormatS16
deviceConfig.Playback.Channels = 2
deviceConfig.SampleRate = 44100
deviceConfig.Alsa.NoMMap = 1
var playbackSampleCount uint32
var capturedSampleCount uint32
pCapturedSamples := make([]byte, 0)
sizeInBytes := uint32(malgo.SampleSizeInBytes(deviceConfig.Playback.Format))
onRecvFrames := func(outpuSamples, inputSamples []byte, framecount uint32) {
sampleCount := framecount * deviceConfig.Playback.Channels * sizeInBytes
newCapturedSampleCount := capturedSampleCount + sampleCount
pCapturedSamples = append(pCapturedSamples, inputSamples...)
capturedSampleCount = newCapturedSampleCount
}
captureCallbacks := malgo.DeviceCallbacks{
Data: onRecvFrames,
}
captureDeviceConfig := deviceConfig
captureDeviceConfig.DeviceType = malgo.Capture
device, err := malgo.InitDevice(ctx.Context, captureDeviceConfig, captureCallbacks)
if err != nil {
t.Fatal(err)
}
if device.Type() != malgo.Capture {
t.Errorf("wrong device type")
}
if device.PlaybackFormat() != malgo.FormatS16 {
t.Errorf("wrong format")
}
if device.PlaybackChannels() != 2 {
t.Errorf("wrong number of channels")
}
if device.SampleRate() != 44100 {
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(outputSamples, inputSamples []byte, framecount uint32) {
samplesToRead := framecount * deviceConfig.Playback.Channels * sizeInBytes
if samplesToRead > capturedSampleCount-playbackSampleCount {
samplesToRead = capturedSampleCount - playbackSampleCount
}
copy(outputSamples, pCapturedSamples[playbackSampleCount:playbackSampleCount+samplesToRead])
playbackSampleCount += samplesToRead
}
playbackCallbacks := malgo.DeviceCallbacks{
Data: onSendFrames,
}
playbackDeviceConfig := deviceConfig
playbackDeviceConfig.DeviceType = malgo.Playback
device, err = malgo.InitDevice(ctx.Context, playbackDeviceConfig, 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(nil, malgo.ContextConfig{}, nil)
if err != nil {
t.Fatal(err)
}
defer func() {
_ = ctx.Uninit()
ctx.Free()
}()
onSendFrames := func(outputSamples, inputSamples []byte, framecount uint32) {
}
deviceConfig := malgo.DefaultDeviceConfig(malgo.Playback)
deviceConfig.Playback.Format = malgo.FormatType(99)
deviceConfig.Playback.Channels = 99
deviceConfig.SampleRate = 44100
_, err = malgo.InitDevice(ctx.Context, deviceConfig, malgo.DeviceCallbacks{})
if err == nil {
t.Fatalf("device init with invalid config")
}
deviceConfig.Playback.Format = malgo.FormatS16
deviceConfig.Playback.Channels = 2
deviceConfig.SampleRate = 44100
dev, err := malgo.InitDevice(ctx.Context, deviceConfig, malgo.DeviceCallbacks{
Data: 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()
}