-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathreader.h
293 lines (246 loc) · 6.37 KB
/
reader.h
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
/*
* Copyright (C) 2019 - 2023 Judd Niemann - All Rights Reserved.
* You may use, distribute and modify this code under the
* terms of the GNU Lesser General Public License, version 2.1
*
* You should have received a copy of GNU Lesser General Public License v2.1
* with this file. If not, please refer to: https://github.com/jniemann66/ReSampler
*/
#ifndef READER_H
#define READER_H
#include <iostream>
#include <functional>
#include <array>
#include <vector>
#include <string>
#include <memory>
#include <cmath>
#include <sndfile.hh>
namespace Sndspec {
template <typename T>
class Reader
{
public:
using ProcessingFunc = std::function<void(int pos, int channel, const T* data)>;
Reader(const std::string& filename, int blockSize, int w)
: filename(filename), blockSize(blockSize), w(w)
{
sndFileHandle = std::make_unique<SndfileHandle>(Reader::filename);
if(sndFileHandle.get() != nullptr) {
setStartPos(0LL);
setFinishPos(sndFileHandle->frames());
nChannels = sndFileHandle->channels();
samplerate = sndFileHandle->samplerate();
nFrames = sndFileHandle->frames();
channelBuffers.resize(nChannels, nullptr);
// placeholder function
processingFunc = [](int pos, int ch, const T* data) -> void {
(void)data; // unused
std::cout << "pos " << pos << " ch " << ch << std::endl;
};
}
}
const SndfileHandle* getSndFileHandle() const
{
return sndFileHandle.get();
}
int64_t getStartPos() const
{
return startPos;
}
void setStartPos(const int64_t &value)
{
startPos = value;
interval = (finishPos - startPos) / w;
}
int64_t getFinishPos() const
{
return finishPos;
}
void setFinishPos(const int64_t &value)
{
finishPos = value;
interval = std::ceil((finishPos - startPos) / w);
}
void readSum()
{
if(!window.empty() && window.size() != blockSize) { // incorrect window size
return;
}
std::vector<T> inputBuffer(nChannels * blockSize);
int64_t startFrame = startPos;
for(int x = 0; x < w; x++) {
sndFileHandle->seek(startFrame, SEEK_SET);
int64_t framesRead = sndFileHandle->readf(inputBuffer.data(), blockSize);
if (framesRead < blockSize) {
// pad with trailing zeroes
for(size_t i = static_cast<size_t>(framesRead); i < inputBuffer.size(); i++) {
inputBuffer[i] = 0.0;
}
}
// deinterleave
const T* p = inputBuffer.data();
if(window.empty()) {
for(int64_t f = 0; f < framesRead; f++) {
for(int ch = 0; ch < nChannels; ch++) {
channelBuffers[ch][f] = 0.0; // clear
channelBuffers[0][f] += *p++; // sum
}
}
} else {
for(int64_t f = 0; f < framesRead; f++) {
for(int ch = 0; ch < nChannels; ch++) {
channelBuffers[ch][f] = 0.0; // clear
channelBuffers[0][f] += *p++; // sum
}
channelBuffers[0][f] *= window[f]; // apply window
}
}
// call processing function
processingFunc(x, 0, channelBuffers.at(0)); // only one output buffer is used : channelBuffers[0]
// advance
startFrame += interval;
}
}
void readDifference()
{
if(!window.empty() && window.size() != blockSize) { // incorrect window size
return;
}
std::vector<T> inputBuffer(nChannels * blockSize);
int64_t startFrame = startPos;
for(int x = 0; x < w; x++) {
sndFileHandle->seek(startFrame, SEEK_SET);
int64_t framesRead = sndFileHandle->readf(inputBuffer.data(), blockSize);
if (framesRead < blockSize) {
// pad with trailing zeroes
for(size_t i = static_cast<size_t>(framesRead); i < inputBuffer.size(); i++) {
inputBuffer[i] = 0.0;
}
}
// deinterleave
const T* p = inputBuffer.data();
if(window.empty()) {
for(int64_t f = 0; f < framesRead; f++) {
channelBuffers[0][f] = *p++;
for(int ch = 1; ch < nChannels; ch++) {
channelBuffers[ch][f] = 0.0; // clear
channelBuffers[0][f] -= *p++; // subtract
}
}
} else {
for(int64_t f = 0; f < framesRead; f++) {
channelBuffers[0][f] = *p++;
for(int ch = 1; ch < nChannels; ch++) {
channelBuffers[ch][f] = 0.0; // clear
channelBuffers[0][f] -= *p++; // subtract
}
channelBuffers[0][f] *= window[f]; // apply window
}
}
// call processing function
processingFunc(x, 0, channelBuffers.at(0)); // only one output buffer is used : channelBuffers[0]
// advance
startFrame += interval;
}
}
void readDeinterleaved()
{
if(!window.empty() && window.size() != blockSize) { // incorrect window size
return;
}
std::vector<T> inputBuffer(nChannels * blockSize);
int64_t startFrame = startPos;
for(int x = 0; x < w; x++) {
sndFileHandle->seek(startFrame, SEEK_SET);
int64_t framesRead = sndFileHandle->readf(inputBuffer.data(), blockSize);
if (framesRead < blockSize) {
// pad with trailing zeroes
for(size_t i = static_cast<size_t>(framesRead); i < inputBuffer.size(); i++) {
inputBuffer[i] = 0.0;
}
}
// deinterleave
const T* p = inputBuffer.data();
if(window.empty()) {
for(int64_t f = 0; f < framesRead; f++) {
for(int ch = 0; ch < nChannels; ch++) {
channelBuffers[ch][f] = *p++;
}
}
} else {
for(int64_t f = 0; f < framesRead; f++) {
for(int ch = 0; ch < nChannels; ch++) {
channelBuffers[ch][f] = *p++ * window[f];
}
}
}
// call processing function
for(int ch = 0; ch < nChannels; ch++) {
processingFunc(x, ch, channelBuffers.at(ch));
}
// advance
startFrame += interval;
}
}
std::vector<T> getWindow() const
{
return window;
}
void setWindow(const std::vector<T> &value)
{
window = value;
}
void setChannelBuffer(int channel, T* pBuf)
{
channelBuffers[channel] = pBuf;
}
int getNChannels() const
{
return nChannels;
}
void setProcessingFunc(const ProcessingFunc &value)
{
processingFunc = value;
}
int getSamplerate() const
{
return samplerate;
}
void setSamplerate(int value)
{
samplerate = value;
}
int getNFrames() const
{
return nFrames;
}
void setNFrames(int value)
{
nFrames = value;
}
int getBlockSize() const
{
return blockSize;
}
void setBlockSize(int value)
{
blockSize = value;
}
private:
std::string filename;
ProcessingFunc processingFunc;
int blockSize;
int64_t startPos;
int64_t finishPos;
int64_t interval;
int w;
std::unique_ptr<SndfileHandle> sndFileHandle;
int nChannels;
int samplerate;
int64_t nFrames;
std::vector<T> window;
std::vector<T*> channelBuffers;
};
} // namespace Sndspec
#endif // READER_H