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
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#include "qaudiosource.h"
#include <QtMultimedia/qaudio.h>
#include <QtMultimedia/qaudiodevice.h>
#include <QtMultimedia/private/qaudiosystem_p.h>
#include <QtMultimedia/private/qaudiohelpers_p.h>
#include <QtMultimedia/private/qplatformaudiodevices_p.h>
#include <QtMultimedia/private/qplatformmediaintegration_p.h>
QT_BEGIN_NAMESPACE
/*!
\class QAudioSource
\brief The QAudioSource class provides an interface for receiving audio data from an audio input
device.
\inmodule QtMultimedia
\ingroup multimedia
\ingroup multimedia_audio
You can construct an audio input with the system's
default audio input device. It is also possible to
create QAudioSource with a specific QAudioDevice. When
you create the audio input, you should also send in the
QAudioFormat to be used for the recording (see the QAudioFormat
class description for details).
QAudioSink can be used in two different modes:
\list
\li Using a QIODevice from an application thread
\li Using a callback-based interface from the audio thread
\endlist
\section1 QIODevice interface
QAudioSource lets you record audio with an audio input device. The
default constructor of this class will use the systems default
audio device, but you can also specify a QAudioDevice for a
specific device. You also need to pass in the QAudioFormat in
which you wish to record.
Starting up the QAudioSource is simply a matter of calling start()
with a QIODevice opened for writing. For instance, to record to a
file, you can:
\snippet multimedia-snippets/audio.cpp Audio input class members
\snippet multimedia-snippets/audio.cpp Audio input setup
This will start recording if the format specified is supported by
the input device (you can check this with
QAudioDevice::isFormatSupported(). In case there are any
snags, use the error() function to check what went wrong. We stop
recording in the \c stopRecording() slot.
\snippet multimedia-snippets/audio.cpp Audio input stop recording
At any point in time, QAudioSource will be in one of four states:
active, suspended, stopped, or idle. These states are specified by
the QtAudio::State enum.
QAudioSource provides several ways of measuring the time that has
passed since the start() of the recording. The \c processedUSecs()
function returns the length of the stream in microseconds written,
i.e., it leaves out the times the audio input was suspended or idle.
The elapsedUSecs() function returns the time elapsed since start() was called regardless of
which states the QAudioSource has been in.
\section2 Threading model and buffering
The QIODevice interface is designed to be used from the application thread.
A wait-free ringbuffer is used to communicate to the audio thread. The size
of this ringbuffer can be configured with setBufferSize() and defaults to
250ms. The state of this buffer can be queried with bytesFree(). If the
ringbuffer is full because the application does not read from the QIODevice in time,
the state will change to QtAudio::IdleState and resume to QtAudio::ActiveState
once the application has read data from the QIODevice. Note that this state change will drop
audio data, so you should always read from the QIODevice as fast as possible to avoid dropouts.
\section1 Callback interface
The preferred way to achieve low audio latencies is to use the callback based interface.
It allows you to read audio data directly from the audio device without having to go through
a QIODevice. This is done by calling start() with a callback function that will be called
from the audio thread. This callback function will be called with a QSpan<const SampleType>
whenever the audio backend produces data.
\snippet multimedia-snippets/audio.cpp Audio callback capture class members
\snippet multimedia-snippets/audio.cpp Audio callback capture setup peak meter
Unlike the QIODevice-based interface, the QAudioSource can only be in the states active,
suspendend and stopped. The setBufferSize() API is not available when using the callback,
the size of the callback argument is determined by the audio backend.
\qtmmaudiocallbacksupportednote
\qtmmaudiocallbacknote
\section1 State and error handling
State changes are reported through the stateChanged() signal. You can request a state change
directly through suspend(), resume(), stop(), reset(), and start().
The QAudioSource will enter the \l{QtAudio::}{StoppedState} when an error is encountered.
The \l{QtAudio::Error}{error type} can be retrieved error() function. Please see the
QtAudio::Error enum for a description of the possible errors that are reported. Calling stop()
or reset() will reset the error state to \l{QtAudio::Error}{NoError}.
\snippet multimedia-snippets/audio.cpp Audio input state changed
\sa QAudioSink, QAudioDevice
*/
/*!
Construct a new audio input and attach it to \a parent.
The default audio input device is used with the output
\a format parameters. If \a format is default-initialized,
the format will be set to the preferred format of the audio device.
*/
QAudioSource::QAudioSource(const QAudioFormat &format, QObject *parent)
: QAudioSource({}, format, parent)
{
}
/*!
Construct a new audio input and attach it to \a parent.
The device referenced by \a audioDevice is used with the input
\a format parameters. If \a format is default-initialized,
the format will be set to the preferred format of \a audioDevice.
*/
QAudioSource::QAudioSource(const QAudioDevice &audioDevice, const QAudioFormat &format, QObject *parent):
QObject(parent)
{
d = QPlatformMediaIntegration::instance()->audioDevices()->audioInputDevice(format, audioDevice,
this);
if (d)
connect(d, &QPlatformAudioSource::stateChanged, this, &QAudioSource::stateChanged);
else
qWarning("No audio device detected");
}
/*!
\fn bool QAudioSource::isNull() const
Returns \c true if the audio source is \c null, otherwise returns \c false.
*/
/*!
Destroy this audio input.
*/
QAudioSource::~QAudioSource()
{
delete d;
}
static bool validateFormatAtStart(QPlatformAudioSource *d)
{
if (!d->format().isValid()) {
qWarning() << "QAudioSource::start: QAudioFormat not valid";
d->setError(QAudio::OpenError);
return false;
}
if (!d->isFormatSupported(d->format())) {
qWarning() << "QAudioSource::start: QAudioFormat not supported by QAudioDevice";
d->setError(QAudio::OpenError);
return false;
}
return true;
};
/*!
Starts transferring audio data from the system's audio input to the \a device.
The \a device must have been opened in the \l{QIODevice::WriteOnly}{WriteOnly},
\l{QIODevice::Append}{Append} or \l{QIODevice::ReadWrite}{ReadWrite} modes.
If the QAudioSource is able to successfully get audio data, state() returns
either QtAudio::ActiveState or QtAudio::IdleState, error() returns QtAudio::NoError
and the stateChanged() signal is emitted.
If a problem occurs during this process, error() returns QtAudio::OpenError,
state() returns QtAudio::StoppedState and the stateChanged() signal is emitted.
\sa QIODevice {QAudioSource#Callback interface}{QIODevice interface}
*/
void QAudioSource::start(QIODevice* device)
{
if (!d)
return;
d->setError(QAudio::NoError);
if (!device->isWritable()) {
qWarning() << "QAudioSource::start: QIODevice is not writable";
d->setError(QAudio::OpenError);
return;
}
if (!validateFormatAtStart(d))
return;
d->elapsedTime.start();
d->start(device);
}
/*!
Returns a pointer to the internal QIODevice being used to transfer data from
the system's audio input. The device will already be open and
\l{QIODevice::read()}{read()} can read data directly from it.
\note The pointer will become invalid after the stream is stopped or
if you start another stream.
If the QAudioSource is able to access the system's audio device, state() returns
QtAudio::IdleState, error() returns QtAudio::NoError
and the stateChanged() signal is emitted.
If a problem occurs during this process, error() returns QtAudio::OpenError,
state() returns QtAudio::StoppedState and the stateChanged() signal is emitted.
\sa QIODevice {QAudioSource#Callback interface}{QIODevice interface}
*/
QIODevice* QAudioSource::start()
{
if (!d)
return nullptr;
d->setError(QAudio::NoError);
if (!validateFormatAtStart(d))
return nullptr;
d->elapsedTime.start();
return d->start();
}
/*!
\fn template <typename Callback, QtAudio::if_audio_source_callback<Callback> = true> void QAudioSource::start(Callback &&)
Starts the QAudioSource with a callback function that will be called on a soft-realtime audio
thread. The callback is a callable that takes a QSpan<const SampleType> as an argument,
SampleType has to match the QAudioFormat::SampleFormat of the QAudioSource's format. The span
contains the interleaved audio data.
If the QAudioSource is able to successfully start, error() returns QtAudio::NoError.
If a problem occurs during this process, error() returns QtAudio::OpenError, state() returns
QtAudio::StoppedState and the stateChanged() signal is emitted.
\qtmmaudiocallbacksupportednote
\qtmmaudiocallbacknote
\sa {QAudioSource#Callback interface}{Callback interface}
\since 6.11
*/
template <typename T>
void QAudioSource::startImpl(T &&callback)
{
if (!d)
return;
if (!d->hasCallbackAPI()) {
qWarning() << "QAudioSource::start: Callback API not supported on this platform";
d->setError(QAudio::OpenError);
return;
}
using namespace QtMultimediaPrivate;
if (!validateAudioCallback(callback, format())) {
d->setError(QAudio::OpenError);
return;
}
if (!validateFormatAtStart(d))
return;
d->elapsedTime.start();
d->start(std::forward<T>(callback));
}
void QAudioSource::startABIImpl(QtAudioPrivate::AudioSourceCallback &&callback)
{
return QAudioSource::startImpl(QtMultimediaPrivate::asAudioSourceCallback(std::move(callback)));
}
/*!
Returns the QAudioFormat being used.
*/
QAudioFormat QAudioSource::format() const
{
return d ? d->format() : QAudioFormat();
}
/*!
Stops the audio input, detaching from the system resource.
Sets error() to QtAudio::NoError, state() to QtAudio::StoppedState and
emit stateChanged() signal.
*/
void QAudioSource::stop()
{
if (d)
d->stop();
}
/*!
Drops all audio data in the buffers, resets buffers to zero.
*/
void QAudioSource::reset()
{
if (d)
d->reset();
}
/*!
Stops processing audio data, preserving buffered audio data.
Sets error() to QtAudio::NoError, state() to QtAudio::SuspendedState and
emit stateChanged() signal.
*/
void QAudioSource::suspend()
{
if (d)
d->suspend();
}
/*!
Resumes processing audio data after a suspend().
Sets error() to QtAudio::NoError.
Sets state() to QtAudio::ActiveState if you previously called start(QIODevice*).
Sets state() to QtAudio::IdleState if you previously called start().
emits stateChanged() signal.
*/
void QAudioSource::resume()
{
if (d)
d->resume();
}
/*!
Sets the audio buffer size to \a value bytes.
\note This function can be called anytime before start(), calls to this
are ignored after start(). It should not be assumed that the buffer size
set is the actual buffer size used, calling bufferSize() anytime after start()
will return the actual buffer size being used.
\sa setBufferFrameCount
\since 6.10
*/
void QAudioSource::setBufferSize(qsizetype value)
{
if (d)
d->setBufferSize(value);
}
/*!
Returns the audio buffer size in bytes.
If called before \l start(), returns platform default value.
If called before \c start() but \l setBufferSize() or \l setBufferFrameCount() was called prior, returns
value set by \c setBufferSize() or \c setBufferFrameCount(). If called after \c start(), returns the actual
buffer size being used. This may not be what was set previously by
\c setBufferSize() or \c setBufferFrameCount().
\sa bufferFrameCount
\since 6.10
*/
qsizetype QAudioSource::bufferSize() const
{
return d ? d->bufferSize() : 0;
}
/*!
Sets the audio buffer size to \a value in frame count.
\note This function can be called anytime before start(). Calls to this
are ignored after start(). It should not be assumed that the buffer size
set is the actual buffer size used - call bufferFrameCount() anytime
after start() to return the actual buffer size being used.
\sa setBufferSize
*/
void QAudioSource::setBufferFrameCount(qsizetype value)
{
if (d)
setBufferSize(d->format().bytesForFrames(value));
}
/*!
Returns the audio buffer size in frames.
If called before \l start(), returns platform default value.
If called before \c start() but \l setBufferSize() or \l setBufferFrameCount() was called prior, returns
value set by \c setBufferSize() or \c setBufferFrameCount(). If called after \c start(), returns the actual
buffer size being used. This may not be what was set previously by
\c setBufferSize() or \c setBufferFrameCount().
\sa bufferSize
*/
qsizetype QAudioSource::bufferFrameCount() const
{
return d ? d->format().framesForBytes(bufferSize()) : 0;
}
/*!
Returns the amount of audio data available to read in bytes.
\note returned value is only valid while in QtAudio::ActiveState or QtAudio::IdleState
state, otherwise returns zero.
\sa framesAvailable
*/
qsizetype QAudioSource::bytesAvailable() const
{
return d ? d->bytesReady() : 0;
}
/*!
Returns the amount of audio data available to read in frames.
Note: returned value is only valid while in QtAudio::ActiveState or QtAudio::IdleState
state, otherwise returns zero.
\sa bytesAvailable
\since 6.10
*/
qsizetype QAudioSource::framesAvailable() const
{
return d ? d->format().framesForBytes(bytesAvailable()) : 0;
}
/*!
Sets the input volume to \a volume.
The volume is scaled linearly from \c 0.0 (silence) to \c 1.0 (full volume). Values outside this
range will be clamped.
If the device does not support adjusting the input
volume then \a volume will be ignored and the input
volume will remain at 1.0.
The default volume is \c 1.0.
\note Adjustments to the volume will change the volume of this audio stream, not the global
volume.
*/
void QAudioSource::setVolume(qreal volume)
{
if (!d)
return;
std::optional<float> newVolume = QAudioHelperInternal::sanitizeVolume(volume, this->volume());
if (newVolume)
d->setVolume(*newVolume);
}
/*!
Returns the input volume.
If the device does not support adjusting the input volume
the returned value will be 1.0.
*/
qreal QAudioSource::volume() const
{
return d ? d->volume() : 1.0;
}
/*!
Returns the amount of audio data processed since start()
was called in microseconds.
*/
qint64 QAudioSource::processedUSecs() const
{
return d ? d->processedUSecs() : 0;
}
/*!
Returns the microseconds since start() was called, including time in Idle and
Suspend states.
*/
qint64 QAudioSource::elapsedUSecs() const
{
return state() == QAudio::StoppedState ? 0 : d->elapsedTime.nsecsElapsed()/1000;
}
/*!
Returns the error state.
*/
QtAudio::Error QAudioSource::error() const
{
return d ? d->error() : QAudio::OpenError;
}
/*!
Returns the state of audio processing.
*/
QtAudio::State QAudioSource::state() const
{
return d ? d->state() : QAudio::StoppedState;
}
/*!
\fn QAudioSource::stateChanged(QtAudio::State state)
This signal is emitted when the device \a state has changed.
\note The QtAudio namespace was named QAudio up to and including Qt 6.6.
String-based connections to this signal have to use \c{QAudio::State} as
the parameter type: \c{connect(source, SIGNAL(stateChanged(QAudio::State)), ...);}
*/
QT_END_NAMESPACE
#include "moc_qaudiosource.cpp"
|