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 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587
|
/***************************************************************************
PlayBack-Qt.cpp - playback device for Qt Multimedia
-------------------
begin : Thu Nov 12 2015
copyright : (C) 2015 by Thomas Eschenbacher
email : Thomas.Eschenbacher@gmx.de
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#include "config.h"
#ifdef HAVE_QT_AUDIO_SUPPORT
#include <errno.h>
#include <algorithm>
#include <new>
#include <QApplication>
#include <QAudioDevice>
#include <QAudioFormat>
#include <QAudioSink>
#include <QMediaDevices>
#include <QObject>
#include <QSysInfo>
#include <QThread>
#include <KLocalizedString>
#include "libkwave/SampleEncoderLinear.h"
#include "libkwave/String.h"
#include "libkwave/Utils.h"
#include "PlayBack-Qt.h"
/** gui name of the default device */
#define DEFAULT_DEVICE (i18n("Default device") + _("|sound_note"))
//***************************************************************************
Kwave::PlayBackQt::PlayBackQt()
:QObject(), Kwave::PlayBackDevice(),
m_lock(),
m_device_name_map(),
m_available_devices(),
m_output(nullptr),
m_buffer_size(0),
m_encoder(nullptr),
m_buffer(),
m_one_frame()
{
}
//***************************************************************************
Kwave::PlayBackQt::~PlayBackQt()
{
close();
}
//***************************************************************************
void Kwave::PlayBackQt::createEncoder(const QAudioFormat &format)
{
// discard the old encoder
delete m_encoder;
m_encoder = nullptr;
// get the sample format
Kwave::SampleFormat::Format sample_format = Kwave::SampleFormat::Unknown;
unsigned int bits = 0;
switch (format.sampleFormat()) {
case QAudioFormat::UInt8:
sample_format = Kwave::SampleFormat::Unsigned;
bits = 8;
break;
case QAudioFormat::Int16:
sample_format = Kwave::SampleFormat::Signed;
bits = 16;
break;
case QAudioFormat::Int32:
sample_format = Kwave::SampleFormat::Signed;
bits = 32;
break;
case QAudioFormat::Float:
sample_format = Kwave::SampleFormat::Float;
bits = 32;
break;
default:
sample_format = Kwave::SampleFormat::Unknown;
break;
}
if (sample_format == Kwave::SampleFormat::Unknown) {
qWarning("PlayBackQt: unsupported sample format %d",
static_cast<int>(format.sampleFormat()));
return;
}
// create the sample encoder
m_encoder = new(std::nothrow)
Kwave::SampleEncoderLinear(sample_format, bits, Kwave::CpuEndian);
}
//***************************************************************************
QString Kwave::PlayBackQt::open(const QString &device, double rate,
unsigned int channels, unsigned int bits,
unsigned int bufbase)
{
qDebug("PlayBackQt::open(device='%s', rate=%0.1f,channels=%u, bits=%u, "
"bufbase=%u)", DBG(device), rate, channels, bits, bufbase);
if ((rate < double(1.0f)) || !channels || !bits || !bufbase)
return i18n("One or more invalid/out of range arguments.");
// close the previous device
close();
QMutexLocker _lock(&m_lock); // context: main thread
// make sure we have a valid list of devices
scanDevices();
const QAudioDevice info(getDevice(device));
if (info.isNull()) {
return i18n("The audio device '%1' is unknown or no longer connected",
device.section(QLatin1Char('|'), 0, 0));
}
// find a supported sample format
QAudioFormat format(info.preferredFormat());
switch (Kwave::toInt(bits)) {
case 8:
format.setSampleFormat(QAudioFormat::UInt8);
break;
case 16:
format.setSampleFormat(QAudioFormat::Int16);
break;
case 32:
if (format.sampleFormat() == QAudioFormat::Float) {
break;
} else {
format.setSampleFormat(QAudioFormat::Int32);
}
break;
default:
return i18n("%1 bits per sample are not supported", bits);
}
format.setChannelCount(Kwave::toInt(channels));
format.setSampleRate(Kwave::toInt(rate));
if (!format.isValid() || !info.isFormatSupported(format))
return i18n("format not supported");
// create a sample encoder
createEncoder(format);
Q_ASSERT(m_encoder);
if (!m_encoder) return i18n("Out of memory");
// create a new Qt output device
m_output = new(std::nothrow) QAudioSink(format, nullptr);
Q_ASSERT(m_output);
if (!m_output) return i18n("Out of memory");
// connect the state machine and the notification engine
connect(m_output, SIGNAL(stateChanged(QAudio::State)),
this, SLOT(stateChanged(QAudio::State)));
// calculate the buffer size in bytes
if (bufbase < 8) bufbase = 8;
m_buffer_size = (1U << bufbase);
qDebug(" buffer size (user selection) = %u", m_buffer_size);
// QAudioSink::bufferSize returns the platform default buffer size if
// called before QAudioSink::start or QAudioSink::setBufferSize is called.
// We want to use the default QAudioSink buffer size, unless the requested
// buffer size is larger, because a smaller than default QAudioSink buffer
// will likely underrun
qsizetype min_buffer_size = m_output->bufferSize();
if (m_buffer_size > min_buffer_size) {
qDebug (" increase QAudioSink buffer size to %u bytes",
m_buffer_size);
m_output->setBufferSize(m_buffer_size);
} else {
m_buffer_size = Kwave::toUint(min_buffer_size);
qDebug (" increased buffer size to %u bytes as used in QAudioSink",
m_buffer_size);
}
// calculate an appropriate timeout, based on the buffer size
unsigned int bytes_per_frame = m_encoder->rawBytesPerSample() * channels;
unsigned int buffer_size = qMax<unsigned int>(m_buffer_size,
static_cast<unsigned int>(m_output->bufferSize()));
unsigned int buffer_frames =
(buffer_size + (bytes_per_frame - 1)) / bytes_per_frame;
int timeout = qMax(Kwave::toInt((1000 * buffer_frames) / rate), 500);
qDebug(" timeout = %d ms", timeout);
// open the output device for writing
m_buffer.start(m_buffer_size, timeout);
m_output->start(&m_buffer);
qDebug(" QAudioSink buffer size = %lld", m_output->bufferSize());
if (m_output->error() != QAudio::NoError) {
qDebug("error no: %d", int(m_output->error()));
return i18n("Opening the Qt Multimedia device '%1' failed", device);
}
return QString();
}
//***************************************************************************
int Kwave::PlayBackQt::write(const Kwave::SampleArray &samples)
{
{
QMutexLocker _lock(&m_lock); // context: worker thread
if (!m_encoder || !m_output) return -EIO;
int bytes_per_sample = m_encoder->rawBytesPerSample();
int bytes_raw = samples.size() * bytes_per_sample;
m_one_frame.resize(bytes_raw);
m_one_frame.fill(char(0));
m_encoder->encode(samples, samples.size(), m_one_frame);
}
qint64 written = m_buffer.writeData(
m_one_frame.constData(), m_one_frame.size());
return (written == m_one_frame.size()) ? 0 : -EAGAIN;
}
//***************************************************************************
void Kwave::PlayBackQt::stateChanged(QAudio::State state)
{
Q_ASSERT(m_output);
if (!m_output) return;
if (m_output->error() != QAudio::NoError) {
qDebug("PlaybBackQt::stateChanged(%d), ERROR=%d, "
"buffer free=%lld",
static_cast<int>(state),
static_cast<int>(m_output->error()),
m_output->bytesFree()
);
}
switch (state) {
case QAudio::ActiveState:
qDebug("PlaybBackQt::stateChanged(ActiveState)");
break;
case QAudio::SuspendedState:
qDebug("PlaybBackQt::stateChanged(SuspendedState)");
break;
case QAudio::StoppedState: {
qDebug("PlaybBackQt::stateChanged(StoppedState)");
break;
}
case QAudio::IdleState:
qDebug("PlaybBackQt::stateChanged(IdleState)");
break;
default:
qWarning("PlaybBackQt::stateChanged(%d)",
static_cast<int>(state));
break;
}
}
//***************************************************************************
QAudioDevice Kwave::PlayBackQt::getDevice(const QString &device) const
{
// check for default device
if (!device.length() || (device == DEFAULT_DEVICE))
return QMediaDevices::defaultAudioOutput();
// check if the device name is known
if (m_device_name_map.isEmpty() || !m_device_name_map.contains(device))
return QAudioDevice();
// translate the path into a Qt audio output device id
// iterate over all available devices
const QByteArray dev_id = m_device_name_map[device];
for (const QAudioDevice &dev : m_available_devices) {
if (dev.id() == dev_id)
return QAudioDevice(dev);
}
// fallen through: return null device
return QAudioDevice();
}
//***************************************************************************
int Kwave::PlayBackQt::close()
{
qDebug("Kwave::PlayBackQt::close()");
QMutexLocker _lock(&m_lock); // context: main thread
if (m_output && m_encoder) {
// create padding data for exactly one frame, as we do not know
// the relationship between the buffer size used in our internal
// buffer object (which has been set up early) and the buffer used
// in Qt (which might have been adjusted after opening).
int bytes_per_frame = m_output->format().bytesPerFrame();
if (bytes_per_frame > 0) {
Kwave::SampleArray pad_samples(1);
pad_samples.fill(0);
QByteArray pad_bytes(bytes_per_frame, char(0));
m_encoder->encode(pad_samples, 1, pad_bytes);
m_buffer.drain(pad_bytes);
}
m_output->stop();
m_buffer.stop();
// stopping the engine might block, so we need to do this unlocked
qDebug("Kwave::PlayBackQt::close() - flushing..., state=%d",
m_output->state());
while (m_output && (m_output->state() != QAudio::StoppedState)) {
qApp->processEvents(QEventLoop::ExcludeUserInputEvents);
}
qDebug("Kwave::PlayBackQt::close() - flushing done.");
}
if (m_output) {
// WARNING: QAudioOutput::~QAudioOutput() calls processEvents() !!!
m_output->deleteLater();
m_output = nullptr;
}
delete m_encoder;
m_encoder = nullptr;
m_device_name_map.clear();
m_available_devices.clear();
qDebug("Kwave::PlayBackQt::close() - DONE");
return 0;
}
//***************************************************************************
QStringList Kwave::PlayBackQt::supportedDevices()
{
QMutexLocker _lock(&m_lock); // context: main thread
// re-validate the list if necessary
if (m_device_name_map.isEmpty() || m_available_devices.isEmpty())
scanDevices();
QStringList list = m_device_name_map.keys();
// move the "default" device to the start of the list
if (list.contains(DEFAULT_DEVICE))
list.move(list.indexOf(DEFAULT_DEVICE), 0);
if (!list.isEmpty()) list.append(_("#TREE#"));
return list;
}
//***************************************************************************
void Kwave::PlayBackQt::scanDevices()
{
m_device_name_map.clear();
// get the list of available audio output devices from Qt
m_available_devices = QMediaDevices::audioOutputs();
for (const QAudioDevice &device : m_available_devices)
{
QByteArray qt_name = device.id();
// for debugging: list all devices
// qDebug("name='%s'", DBG(qt_name));
// device name not available ?
if (!qt_name.length()) {
qWarning("PlayBackQt::supportedDevices() "
"=> BUG: device with no name?");
continue;
}
QString gui_name = device.description() + _("|sound_note");
if (m_device_name_map.contains(gui_name)) {
qWarning("PlayBackQt::supportedDevices() "
"=> BUG: duplicate device name: '%s'", DBG(gui_name));
continue;
}
m_device_name_map[gui_name] = qt_name;
}
}
//***************************************************************************
QString Kwave::PlayBackQt::fileFilter()
{
return _("");
}
//***************************************************************************
QList<unsigned int> Kwave::PlayBackQt::supportedBits(const QString &device)
{
QMutexLocker _lock(&m_lock); // context: main thread
QList<unsigned int> list;
const QAudioDevice info(getDevice(device));
// no devices at all -> empty list
if (info.isNull()) return list;
// iterate over all supported sample sizes
unsigned int bits = 0;
for (QAudioFormat::SampleFormat format : info.supportedSampleFormats()) {
switch (format) {
case QAudioFormat::UInt8:
bits = 8;
break;
case QAudioFormat::Int16:
bits = 16;
break;
case QAudioFormat::Int32:
bits = 32;
break;
case QAudioFormat::Float:
bits = 32;
break;
default:
bits = 0;
break;
}
if (!list.contains(bits) && (bits > 0))
list << Kwave::toUint(bits);
}
std::sort(list.begin(), list.end(), std::greater<unsigned int>());
return list;
}
//***************************************************************************
int Kwave::PlayBackQt::detectChannels(const QString &device,
unsigned int &min, unsigned int &max)
{
QMutexLocker _lock(&m_lock); // context: main thread
const QAudioDevice info(getDevice(device));
// no devices at all -> empty
if (info.isNull()) return -1;
max = info.maximumChannelCount();
min = info.minimumChannelCount();
return (max > 0) ? max : -1;
}
//***************************************************************************
//***************************************************************************
//***************************************************************************
Kwave::PlayBackQt::Buffer::Buffer()
:QIODevice(),
m_lock(),
m_sem_free(0),
m_sem_filled(0),
m_raw_buffer(),
m_rp(0),
m_wp(0),
m_timeout(1000),
m_pad_data(),
m_pad_ofs(0)
{
}
//***************************************************************************
Kwave::PlayBackQt::Buffer::~Buffer()
{
}
//***************************************************************************
void Kwave::PlayBackQt::Buffer::start(unsigned int buf_size, int timeout)
{
QMutexLocker _lock(&m_lock); // context: main thread
m_raw_buffer.resize(buf_size);
m_rp = 0;
m_wp = 0;
m_sem_filled.acquire(m_sem_filled.available());
m_sem_free.acquire(m_sem_free.available());
m_sem_free.release(buf_size);
m_timeout = timeout;
m_pad_data.clear();
m_pad_ofs = 0;
open(QIODevice::ReadOnly);
}
//***************************************************************************
void Kwave::PlayBackQt::Buffer::drain(const QByteArray &padding)
{
m_pad_data = padding;
m_pad_ofs = 0;
}
//***************************************************************************
void Kwave::PlayBackQt::Buffer::stop()
{
close();
}
//***************************************************************************
qint64 Kwave::PlayBackQt::Buffer::readData(char *data, qint64 len)
{
// qDebug("Kwave::PlayBackQt::Buffer::readData(..., len=%lld", len);
if (len == 0) return 0;
if (len < 0) return -1;
const qsizetype maxlen = m_raw_buffer.size();
qint64 remaining = len;
while (remaining) {
if (Q_LIKELY(m_sem_filled.tryAcquire(1, m_timeout))) {
*(data++) = m_raw_buffer[m_rp];
if (Q_UNLIKELY(++m_rp >= maxlen)) m_rp = 0;
m_sem_free.release(1);
remaining--;
} else {
qDebug("PlayBackQt::Buffer::readData() - TIMEOUT");
break;
}
}
// if we are at the end of the stream: do some padding to satisfy Qt
const qsizetype padlen = m_pad_data.size();
if (remaining) {
if (padlen)
qDebug("Kwave::PlayBackQt::Buffer::readData(...) -> "
"read=%lld/%lld, padding %lld",
len - remaining, len, remaining);
else
qDebug("Kwave::PlayBackQt::Buffer::readData(...) -> "
"read=%lld/%lld, UNDERRUN", len - remaining, len);
do {
*(data++) = 0;
if (Q_UNLIKELY(++m_rp >= maxlen)) m_rp = 0;
} while (--remaining);
}
if (remaining)
qDebug("Kwave::PlayBackQt::Buffer::readData(...) -> read=%lld/%lld",
len - remaining, len);
QThread::yieldCurrentThread();
return len - remaining;
}
//***************************************************************************
qint64 Kwave::PlayBackQt::Buffer::writeData(const char *data, qint64 len)
{
const qsizetype maxlen = m_raw_buffer.size();
for (qint64 remaining = len; remaining; remaining--) {
if (Q_LIKELY(m_sem_free.tryAcquire(1, m_timeout))) {
m_raw_buffer[m_wp] = *(data++);
if (Q_UNLIKELY(++m_wp >= maxlen)) m_wp = 0;
m_sem_filled.release(1);
} else {
qDebug("PlayBackQt::Buffer::writeData() - TIMEOUT");
return 0;
}
}
QThread::yieldCurrentThread();
return len;
}
//***************************************************************************
qint64 Kwave::PlayBackQt::Buffer::bytesAvailable() const
{
return QIODevice::bytesAvailable() +
m_sem_filled.available() +
m_pad_data.size() -
m_pad_ofs;
}
#endif /* HAVE_QT_AUDIO_SUPPORT */
//***************************************************************************
//***************************************************************************
#include "moc_PlayBack-Qt.cpp"
|