-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathbuffer.go
177 lines (156 loc) · 4.46 KB
/
buffer.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
package aubio
/*
#cgo LDFLAGS: -laubio
#include <aubio/aubio.h>
*/
import "C"
// SimpleBuffer is a wrapper for the aubio fvec_t type. It is used
// as the buffer for processing audio data in an aubio pipeline.
// It is a short sample buffer (32 or 64 bits in size).
type SimpleBuffer struct {
vec *C.fvec_t
}
// NewSimpleBuffer constructs a new SimpleBuffer.
//
// The caller is responsible for calling Free on the returned
// SimpleBuffer to release memory when done.
//
// buf := NewSimpleBuffer(bufSize)
// defer buf.Free()
func NewSimpleBuffer(size uint) *SimpleBuffer {
return &SimpleBuffer{C.new_fvec(C.uint_t(size))}
}
// NewSimpleBuffer constructs a new SimpleBuffer.
//
// The caller is responsible for calling Free on the returned
// SimpleBuffer to release memory when done.
//
// buf := NewSimpleBuffer(bufSize)
// defer buf.Free()
func NewSimpleBufferData(size uint, data []float64) *SimpleBuffer {
b := C.new_fvec(C.uint_t(size))
for i := uint(0); i < uint(len(data)); i++ {
C.fvec_set_sample(b, C.smpl_t(data[i]), C.uint_t(i))
}
return &SimpleBuffer{b}
}
// Returns the contents of this buffer as a slice.
// The data is copied so the slices are still valid even
// after the buffer has changed.
func (b *SimpleBuffer) Slice() []float64 {
sl := make([]float64, b.Size())
for i := uint(0); i < b.Size(); i++ {
sl[int(i)] = float64(C.fvec_get_sample(b.vec, C.uint_t(i)))
}
return sl
}
// Size returns the size of this buffer.
func (b *SimpleBuffer) Size() uint {
if b.vec == nil {
return 0
}
return uint(b.vec.length)
}
// Free frees the memory aubio allocated for this buffer.
func (b *SimpleBuffer) Free() {
if b.vec == nil {
return
}
C.del_fvec(b.vec)
b.vec = nil
}
// ComplexBuffer is a wrapper for the aubio cvec_t type.
// It contains complex sample data.
type ComplexBuffer struct {
data *C.cvec_t
}
// NewComplexBuffer constructs a buffer.
//
// The caller is responsible for calling Free on the returned
// ComplexBuffer to release memory when done.
//
// buf := NewComplexBuffer(bufSize)
// defer buf.Free()
func NewComplexBuffer(size uint) *ComplexBuffer {
return &ComplexBuffer{data: C.new_cvec(C.uint_t(size))}
}
// NewComplexBuffer constructs a buffer with data.
//
func NewComplexBufferData(size uint, data []float64) *ComplexBuffer {
b := C.new_cvec(C.uint_t(size))
for i := uint(0); i < uint(len(data)); i++ {
C.cvec_norm_set_sample(b, C.smpl_t(data[i]), C.uint_t(i))
}
return &ComplexBuffer{b}
}
// Free frees the memory aubio has allocated for this buffer.
func (cb *ComplexBuffer) Free() {
if cb.data != nil {
C.del_cvec(cb.data)
}
}
// Size returns the size of this ComplexBuffer.
func (cb *ComplexBuffer) Size() uint {
if cb.data == nil {
return 0
}
return uint(cb.data.length)
}
// Norm returns the slice of norm data.
// The data is copies so the slice is still
// valid after the buffer has changed.
func (cb *ComplexBuffer) Norm() []float64 {
sl := make([]float64, cb.Size())
for i := uint(0); i < cb.Size(); i++ {
sl[int(i)] = float64(C.cvec_norm_get_sample(cb.data, C.uint_t(i)))
}
return sl
}
// Norm returns the slice of phase data.
// The data is copies so the slice is still
// valid after the buffer has changed.
func (cb *ComplexBuffer) Phase() []float64 {
sl := make([]float64, cb.Size())
for i := uint(0); i < cb.Size(); i++ {
sl[int(i)] = float64(C.cvec_phas_get_sample(cb.data, C.uint_t(i)))
}
return sl
}
// Buffer for Long sample data (64 bits)
type LongSampleBuffer struct {
vec *C.lvec_t
}
// NewLBuffer constructs a *LongSampleBuffer.
//
// The caller is responsible for calling Free on the returned
// LongSampleBuffer to release memory when done.
//
// buf := NewLBuffer(bufSize)
// defer buf.Free()
func NewLBuffer(size uint) *LongSampleBuffer {
return newLBufferFromVec(C.new_lvec(C.uint_t(size)))
}
func newLBufferFromVec(v *C.lvec_t) *LongSampleBuffer {
return &LongSampleBuffer{vec: v}
}
// Free frees the memory allocated by aubio for this buffer.
func (lb *LongSampleBuffer) Free() {
if lb.vec != nil {
C.del_lvec(lb.vec)
lb.vec = nil
}
}
// Size returns this buffers size.
func (lb *LongSampleBuffer) Size() uint {
return uint(lb.vec.length)
}
// Returns the contents of this buffer as a slice.
// The data is copied so the slices are still valid even
// after the buffer has changed.
func (lb *LongSampleBuffer) Slice() []float64 {
sl := make([]float64, lb.Size())
for i := uint(0); i < lb.Size(); i++ {
sl[int(i)] = float64(C.lvec_get_sample(lb.vec, C.uint_t(i)))
}
return sl
}