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
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
|
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
#include "audiooutput.h"
#include <QVBoxLayout>
Generator::Generator(const QAudioFormat &format, qint64 durationUs, int sampleRate)
{
if (format.isValid())
generateData(format, durationUs, sampleRate);
}
void Generator::start()
{
open(QIODevice::ReadOnly);
}
void Generator::stop()
{
m_pos = 0;
close();
}
using namespace Qt::Literals::StringLiterals;
static QString sampleFormatToString(QAudioFormat::SampleFormat f)
{
switch (f) {
case QAudioFormat::UInt8: return u"UInt8"_s;
case QAudioFormat::Int16: return u"Int16"_s;
case QAudioFormat::Int32: return u"Int32"_s;
case QAudioFormat::Float: return u"Float"_s;
default: return u"Unknown"_s;
}
}
static constexpr std::array allSupportedSampleRates{
8'000, 11'025, 12'000, 16'000, 22'050, 24'000, 32'000, 44'100,
48'000, 64'000, 88'200, 96'000, 128'000, 176'400, 192'000,
};
template<typename T>
static void setCurrentValue(QComboBox *box, const T &value) {
int idx = box->findData(QVariant::fromValue(value));
if (idx >= 0)
box->setCurrentIndex(idx);
}
static void syncFormatGui(QComboBox *m_formatBox,
QComboBox *m_channelsBox,
QComboBox *m_rateBox,
const QAudioFormat &format) {
setCurrentValue(m_formatBox, format.sampleFormat());
setCurrentValue(m_rateBox, format.sampleRate());
setCurrentValue(m_channelsBox, format.channelCount());
}
void Generator::generateData(const QAudioFormat &format, qint64 durationUs, int sampleRate)
{
const int channelBytes = format.bytesPerSample();
[[maybe_unused]] const int sampleBytes = format.channelCount() * channelBytes;
Q_ASSERT(sampleBytes != 0);
qint64 length = format.bytesForDuration(durationUs);
Q_ASSERT(length % sampleBytes == 0);
Q_UNUSED(sampleBytes); // suppress warning in release builds
m_buffer.resize(length);
unsigned char *ptr = reinterpret_cast<unsigned char *>(m_buffer.data());
int sampleIndex = 0;
while (length) {
// Produces value (-1..1)
const qreal x = qSin(2 * M_PI * sampleRate * qreal(sampleIndex++ % format.sampleRate())
/ format.sampleRate());
for (int i = 0; i < format.channelCount(); ++i) {
switch (format.sampleFormat()) {
case QAudioFormat::UInt8:
*reinterpret_cast<quint8 *>(ptr) = static_cast<quint8>((1.0 + x) / 2 * 255);
break;
case QAudioFormat::Int16:
*reinterpret_cast<qint16 *>(ptr) = static_cast<qint16>(x * 32767);
break;
case QAudioFormat::Int32:
*reinterpret_cast<qint32 *>(ptr) =
static_cast<qint32>(x * std::numeric_limits<qint32>::max());
break;
case QAudioFormat::Float:
*reinterpret_cast<float *>(ptr) = x;
break;
default:
break;
}
ptr += channelBytes;
length -= channelBytes;
}
}
}
qint64 Generator::readData(char *data, qint64 len)
{
qint64 total = 0;
if (!m_buffer.isEmpty()) {
while (len - total > 0) {
const qint64 chunk = qMin((m_buffer.size() - m_pos), len - total);
memcpy(data + total, m_buffer.constData() + m_pos, chunk);
m_pos = (m_pos + chunk) % m_buffer.size();
total += chunk;
}
}
return total;
}
qint64 Generator::writeData(const char *data, qint64 len)
{
Q_UNUSED(data);
Q_UNUSED(len);
return 0;
}
qint64 Generator::bytesAvailable() const
{
return m_buffer.size() + QIODevice::bytesAvailable();
}
AudioTest::AudioTest() : m_devices(new QMediaDevices(this)), m_pushTimer(new QTimer(this))
{
initializeWindow();
initializeAudio(m_devices->defaultAudioOutput());
}
AudioTest::~AudioTest()
{
m_pushTimer->stop();
}
void AudioTest::initializeWindow()
{
QWidget *window = new QWidget;
QVBoxLayout *layout = new QVBoxLayout;
m_deviceBox = new QComboBox(this);
const QAudioDevice &defaultDeviceInfo = m_devices->defaultAudioOutput();
m_deviceBox->addItem(defaultDeviceInfo.description(), QVariant::fromValue(defaultDeviceInfo));
for (auto &deviceInfo : m_devices->audioOutputs()) {
if (deviceInfo != defaultDeviceInfo)
m_deviceBox->addItem(deviceInfo.description(), QVariant::fromValue(deviceInfo));
}
connect(m_deviceBox, &QComboBox::currentIndexChanged, this, &AudioTest::deviceChanged);
connect(m_devices, &QMediaDevices::audioOutputsChanged, this, &AudioTest::updateAudioDevices);
layout->addWidget(m_deviceBox);
m_modeButton = new QPushButton(this);
connect(m_modeButton, &QPushButton::clicked, this, &AudioTest::toggleMode);
layout->addWidget(m_modeButton);
m_suspendResumeButton = new QPushButton(this);
connect(m_suspendResumeButton, &QPushButton::clicked, this, &AudioTest::toggleSuspendResume);
layout->addWidget(m_suspendResumeButton);
QHBoxLayout *volumeBox = new QHBoxLayout;
m_volumeLabel = new QLabel;
m_volumeLabel->setText(tr("Volume:"));
m_volumeSlider = new QSlider(Qt::Horizontal);
m_volumeSlider->setMinimum(0);
m_volumeSlider->setMaximum(100);
m_volumeSlider->setSingleStep(10);
connect(m_volumeSlider, &QSlider::valueChanged, this, &AudioTest::volumeChanged);
volumeBox->addWidget(m_volumeLabel);
volumeBox->addWidget(m_volumeSlider);
layout->addLayout(volumeBox);
// Sample Format selector
QHBoxLayout *formatBox = new QHBoxLayout;
QLabel *formatLabel = new QLabel;
formatLabel->setText(tr("Sample Format:"));
m_formatBox = new QComboBox(this);
// populate the sample format combo box
// supportedSampleFormats returns enum so we cast it to string.
const auto formats = defaultDeviceInfo.supportedSampleFormats();
for (const QAudioFormat::SampleFormat fmt : formats)
m_formatBox->addItem(sampleFormatToString(fmt), QVariant::fromValue(fmt));
//Sample rate button
QLabel *rateLabel = new QLabel;
rateLabel->setText(tr("Sample Rate:"));
m_rateBox = new QComboBox(this);
// populate from the hardcoded list in this cpp file
for (int rate : allSupportedSampleRates)
m_rateBox->addItem(QString::number(rate), rate);
// setting channel count
QLabel *chLabel = new QLabel;
chLabel->setText(tr("Channels:"));
m_channelsBox = new QComboBox(this);
// populate from device min..max
int minCh = defaultDeviceInfo.minimumChannelCount();
int maxCh = defaultDeviceInfo.maximumChannelCount();
for (int ch = minCh; ch <= maxCh; ++ch)
m_channelsBox->addItem(QString::number(ch), ch);
// set the value of the boxes to be the initial values of the format.
const QAudioFormat pref = defaultDeviceInfo.preferredFormat();
syncFormatGui(m_formatBox, m_channelsBox, m_rateBox, pref);
for (auto box : {m_channelsBox, m_rateBox, m_formatBox}) {
connect(box, &QComboBox::activated, this, [this, box]() {
formatChanged(box);
});
}
// add all to the same row
formatBox->addWidget(formatLabel);
formatBox->addWidget(m_formatBox);
formatBox->addSpacing(12);
formatBox->addWidget(rateLabel);
formatBox->addWidget(m_rateBox);
formatBox->addSpacing(12);
formatBox->addWidget(chLabel);
formatBox->addWidget(m_channelsBox);
layout->addLayout(formatBox);
window->setLayout(layout);
setCentralWidget(window);
window->show();
connect(this, &AudioTest::pullModeChanged, this, [&] {
if (m_pullMode)
m_modeButton->setText(tr("Enable push mode"));
else
m_modeButton->setText(tr("Enable pull mode"));
});
emit pullModeChanged();
}
void AudioTest::initializeAudio(const QAudioDevice &deviceInfo)
{
QAudioFormat format = deviceInfo.preferredFormat();
applyAudioFormat(deviceInfo, format);
}
void AudioTest::applyAudioFormat(const QAudioDevice &deviceInfo, const QAudioFormat &format)
{
// keep previous format to roll back if changing the audio format fails
QAudioFormat prevFmt;
if (m_audioSink)
prevFmt = m_audioSink->format();
else
prevFmt = deviceInfo.preferredFormat();
// rebuild generator and sink with the requested format
const int durationSeconds = 1;
const int toneSampleRateHz = 600;
m_generator.reset(new Generator(format, durationSeconds * 1000000, toneSampleRateHz));
m_audioSink.reset(new QAudioSink(deviceInfo, format));
m_generator->start();
// handle startup/runtime errors and success negotiation
connect(m_audioSink.get(), &QAudioSink::stateChanged, this,
[this, prevFmt](QAudio::State s) {
const auto err = m_audioSink->error();
// startup failure (format rejected or device unavailable)
if (err == QAudio::OpenError && s == QAudio::StoppedState) {
QMessageBox::warning(this, tr("Audio start failed"),
tr("Device rejected the format or is unavailable."));
auto dev = m_deviceBox->currentData().value<QAudioDevice>();
applyAudioFormat(dev, prevFmt);
return;
}
// runtime I/O or fatal device error (disconnects, etc.)
if (err == QAudio::IOError || err == QAudio::FatalError) {
QMessageBox::warning(this, tr("Audio error"),
tr("Audio device error. Restoring previous format/device."));
auto dev = m_deviceBox->currentData().value<QAudioDevice>();
applyAudioFormat(dev, prevFmt);
return;
}
// reflect negotiated format on successful activation
if (s == QAudio::ActiveState) {
syncFormatGui(m_formatBox, m_channelsBox, m_rateBox, m_audioSink->format());
}
// reset suspend/resume to new audiosink
m_suspendResumeButton->setText(tr("Suspend playback"));
if (s == QAudio::SuspendedState) {
m_suspendResumeButton->setText(tr("Resume playback"));
}
});
// set initial volume and kick the stream
qreal initialVolume = QAudio::convertVolume(m_audioSink->volume(),
QAudio::LinearVolumeScale,
QAudio::LogarithmicVolumeScale);
m_volumeSlider->setValue(qRound(initialVolume * 100));
restartAudioStream();
}
void AudioTest::deviceChanged(int index)
{
m_generator->stop();
m_audioSink->stop();
m_audioSink->disconnect(this);
QAudioDevice dev = m_deviceBox->itemData(index).value<QAudioDevice>();
// formats
m_formatBox->clear();
const auto formats = dev.supportedSampleFormats();
for (const QAudioFormat::SampleFormat sf : formats)
m_formatBox->addItem(sampleFormatToString(sf), QVariant::fromValue(sf));
// channels
m_channelsBox->clear();
for (int ch = dev.minimumChannelCount(); ch <= dev.maximumChannelCount(); ++ch)
m_channelsBox->addItem(QString::number(ch), ch);
initializeAudio(m_deviceBox->itemData(index).value<QAudioDevice>());
}
void AudioTest::volumeChanged(int value)
{
qreal linearVolume = QAudio::convertVolume(value / qreal(100),
QAudio::LogarithmicVolumeScale,
QAudio::LinearVolumeScale);
m_audioSink->setVolume(linearVolume);
}
void AudioTest::formatChanged(QComboBox *box)
{
QAudioDevice device = m_deviceBox->currentData().value<QAudioDevice>();
QAudioFormat newFormat = m_audioSink->format();
if (box == m_formatBox) {
newFormat.setSampleFormat(
static_cast<QAudioFormat::SampleFormat>(box->currentData().toInt()));
} else if (box == m_rateBox) {
newFormat.setSampleRate(box->currentData().toInt());
} else if (box == m_channelsBox) {
newFormat.setChannelCount(box->currentData().toInt());
}
applyAudioFormat(device, newFormat);
}
void AudioTest::updateAudioDevices()
{
m_deviceBox->clear();
const QList<QAudioDevice> devices = m_devices->audioOutputs();
for (const QAudioDevice &deviceInfo : devices)
m_deviceBox->addItem(deviceInfo.description(), QVariant::fromValue(deviceInfo));
}
void AudioTest::toggleMode()
{
m_pullMode = !m_pullMode;
emit pullModeChanged();
restartAudioStream();
}
void AudioTest::restartAudioStream()
{
m_pushTimer->stop();
// Reset audiosink
m_audioSink->reset();
qreal initialVolume = QAudio::convertVolume(m_audioSink->volume(),
QAudio::LinearVolumeScale,
QAudio::LogarithmicVolumeScale);
m_volumeSlider->setValue(qRound(initialVolume * 100));
if (m_pullMode) {
// pull mode: QAudioSink pulls from Generator as needed
m_audioSink->start(m_generator.get());
} else {
// push mode: periodically push to QAudioSink using a timer
auto io = m_audioSink->start();
m_pushTimer->disconnect();
connect(m_pushTimer, &QTimer::timeout, this, [this, io]() {
if (m_audioSink->state() == QAudio::StoppedState)
return;
int len = m_audioSink->bytesFree();
QByteArray buffer(len, 0);
len = m_generator->read(buffer.data(), len);
if (len)
io->write(buffer.data(), len);
});
m_pushTimer->start(10);
}
}
void AudioTest::toggleSuspendResume()
{
switch (m_audioSink->state()) {
case QAudio::SuspendedState:
m_audioSink->resume();
return;
case QAudio::ActiveState:
m_audioSink->suspend();
return;
default:
return;
}
}
#include "moc_audiooutput.cpp"
|