-
Notifications
You must be signed in to change notification settings - Fork 2
/
audiotest.cpp
215 lines (170 loc) · 4.96 KB
/
audiotest.cpp
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
#include "audiotest.h"
#include <QDebug>
#include "stopwatch.h"
void AudioReader::onReadyRead()
{
qint64 readresult;
for (;;)
{
readresult = aio->read((char*)(buf.data() + bufLevel),
(buf.size() - bufLevel * sizeof(Sample)));
if (!readresult)
break;
bufLevel += readresult / sizeof(short);
auto beginBuf = std::begin(buf);
auto stBuf = beginBuf;
auto enBuf = stBuf + bufLevel;
while (stBuf < enBuf) {
auto enMax = stBuf + batchSize;
// If there isn't enough, done
if (enMax > enBuf)
break;
Stopwatch sw;
sw.start();
fft->process(stBuf, enMax, result, inverseGain);
sw.update();
updateLevel(stBuf, enMax);
stBuf = enMax;
//std::transform(std::begin(result),
// std::end(result),
// std::begin(quantizedResult),
// [&](float f) {
// return (std::min)((std::numeric_limits<Sample>::max)(),
// Sample(f + 0.5f));
//});
emit incoming(std::begin(result), FFTType::halfPoints);
}
if (stBuf != beginBuf) {
bufLevel = enBuf - stBuf;
std::copy(stBuf, enBuf, beginBuf);
}
}
}
void AudioReader::setGain(int gain)
{
inverseGain = 0.0005 * gain;
}
void AudioReader::setBatchRate(int ratePerSec)
{
batchRatePerSec = ratePerSec;
batchSize = afmt.sampleRate() / ratePerSec;
}
AudioReader::AudioReader(QObject *parent)
: QObject(parent)
, ai(nullptr)
, aio(nullptr)
, batchRatePerSec(60)
, batchSize(0)
, bufLevel(0)
, inverseGain(0.001)
{
}
AudioReader::~AudioReader()
{
if (aio)
aio->close();
if (ai)
ai->stop();
}
void AudioReader::start()
{
QList<QAudioDeviceInfo> devices =
QAudioDeviceInfo::availableDevices(QAudio::AudioInput);
std::for_each(devices.begin(), devices.end(),
[](QAudioDeviceInfo& device) {
qDebug() << device.deviceName();
});
qDebug() << "Default == " << QAudioDeviceInfo::defaultInputDevice().deviceName();
afmt.setSampleRate(48000);
afmt.setChannelCount(1);
afmt.setCodec("audio/pcm");
afmt.setByteOrder(QAudioFormat::LittleEndian);
afmt.setSampleType(QAudioFormat::SignedInt);
afmt.setSampleSize(16);
if (!afmt.isValid())
return;
QAudioDeviceInfo deviceinfo(QAudioDeviceInfo::defaultInputDevice());
for (auto supportedCodec : deviceinfo.supportedCodecs())
{
qDebug() << "Supported codec: " << supportedCodec;
}
char const* sampleType;
for (auto i : deviceinfo.supportedSampleTypes())
{
switch (i) {
case QAudioFormat::Unknown:
sampleType = "Unknown";
break;
case QAudioFormat::SignedInt:
sampleType = "SignedInt";
break;
case QAudioFormat::UnSignedInt:
sampleType = "UnSignedInt";
break;
case QAudioFormat::Float:
sampleType = "Float";
break;
default:
sampleType = "???";
break;
}
qDebug() << "Supports sample type: " << sampleType;
}
for (auto supportedRate: deviceinfo.supportedSampleRates())
{
qDebug() << "Supported rate: " << supportedRate;
}
for (auto supportedSize : deviceinfo.supportedSampleSizes())
{
qDebug() << "Supported size: " << supportedSize;
}
if (!deviceinfo.isFormatSupported(afmt))
afmt = deviceinfo.nearestFormat(afmt);
QAudio::Error err;
ai = new QAudioInput(deviceinfo, afmt, this);
ai->setBufferSize(8192);
ai->setNotifyInterval(4);
qDebug() << "Actual notify interval " << ai->notifyInterval();
connect(ai, SIGNAL(notify()), this, SLOT(onNotify()));
setBatchRate(batchRatePerSec);
aio = ai->start();
connect(aio, SIGNAL(readyRead()), this, SLOT(onReadyRead()));
//qDebug() << "State=" << ai->state();
err = ai->error();
if (err)
qDebug() << "Err=" << err;
ai->resume();
//qDebug() << "State=" << ai->state();
err = ai->error();
//qDebug() << "Err=" << err;
fft.reset(new FFTType(afmt.sampleRate()));
level = 0;
emit inputLevel(level);
startTimer(100);
}
void AudioReader::onNotify()
{
//qDebug() << "State=" << ai->state();
}
void AudioReader::stop()
{
aio->close();
ai->stop();
}
void AudioReader::timerEvent(QTimerEvent *event)
{
Sample curlevel = 0;
std::swap(curlevel, level);
emit inputLevel(curlevel);
}
AudioReader::Sample
AudioReader::updateLevel(Sample const* st,
Sample const* en)
{
level = std::accumulate(st, en, level,
[](Sample level, Sample sample) {
Sample absSample = std::abs(sample);
return (std::max)(level, absSample);
});
return level;
}