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 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625
|
/***************************************************************************
PlayBack-OSS.cpp - playback device for standard linux OSS
-------------------
begin : Sat May 19 2001
copyright : (C) 2001 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_OSS_SUPPORT
#include <errno.h>
#include <fcntl.h>
#include <math.h>
#include <stdlib.h>
#include <sys/ioctl.h>
#include <sys/soundcard.h>
#include <sys/stat.h>
#include <stdlib.h>
#include <unistd.h>
#include <new>
#include <QDir>
#include <QFile>
#include <QLatin1Char>
#include <KLocalizedString>
#include "libkwave/ByteOrder.h"
#include "libkwave/Compression.h"
#include "libkwave/SampleEncoderLinear.h"
#include "libkwave/String.h"
#include "libkwave/Utils.h"
#include "libkwave/memcpy.h"
#include "PlayBack-OSS.h"
/** use at least 2^8 = 256 bytes for playback buffer !!! */
#define MIN_PLAYBACK_BUFFER 8
/** use at most 2^16 = 65536 bytes for playback buffer !!! */
#define MAX_PLAYBACK_BUFFER 16
/** highest available number of channels */
#define MAX_CHANNELS 7
// Linux 2.6.24 and above's OSS emulation supports 24 and 32 bit formats
// but did not declare them in <soundcard.h>
#ifndef AFMT_S24_LE
#define AFMT_S24_LE 0x00008000
#endif
#ifndef AFMT_S24_BE
#define AFMT_S24_BE 0x00010000
#endif
#ifndef AFMT_S32_LE
#define AFMT_S32_LE 0x00001000
#endif
#ifndef AFMT_S32_BE
#define AFMT_S32_BE 0x00002000
#endif
#ifndef SNDCTL_DSP_SPEED
#define SNDCTL_DSP_SPEED SOUND_PCM_WRITE_RATE
#endif
#ifndef SNDCTL_DSP_CHANNELS
#define SNDCTL_DSP_CHANNELS SOUND_PCM_WRITE_CHANNELS
#endif
#ifndef SOUND_PCM_SETFMT
#define SOUND_PCM_SETFMT SOUND_PCM_WRITE_BITS
#endif
#ifndef SNDCTL_DSP_SETFMT
#define SNDCTL_DSP_SETFMT SOUND_PCM_SETFMT
#endif
//***************************************************************************
Kwave::PlayBackOSS::PlayBackOSS()
:Kwave::PlayBackDevice(),
m_device_name(),
m_handle(-1),
m_rate(0),
m_channels(0),
m_bits(0),
m_bufbase(0),
m_buffer(),
m_raw_buffer(),
m_buffer_size(0),
m_buffer_used(0),
m_encoder(nullptr),
m_oss_version(-1)
{
}
//***************************************************************************
Kwave::PlayBackOSS::~PlayBackOSS()
{
close();
}
//***************************************************************************
QString Kwave::PlayBackOSS::open(const QString &device, double rate,
unsigned int channels, unsigned int bits,
unsigned int bufbase)
{
qDebug("PlayBackOSS::open(device=%s,rate=%0.1f,channels=%u,"
"bits=%u, bufbase=%u)", DBG(device.split(_("|")).at(0)),
rate, channels, bits, bufbase);
m_device_name = device;
m_rate = rate;
m_channels = channels;
m_bits = bits;
m_bufbase = bufbase;
m_buffer_size = 0;
m_buffer_used = 0;
m_handle = 0;
// prepeare for playback by opening the sound device
// and initializing with the proper settings
m_handle = ::open(qPrintable(m_device_name), O_WRONLY | O_NONBLOCK);
if (m_handle == -1) {
QString reason;
switch (errno) {
case ENOENT:
case ENODEV:
case ENXIO:
case EIO:
reason = i18n("I/O error. Maybe the driver\n"\
"is not present in your kernel or it is not\n"\
"properly configured.");
break;
case EBUSY:
reason = i18n(
"The device is busy. Maybe some other application is\n"\
"currently using it. Please try again later.\n"\
"(Hint: you might find out the name and process ID of\n"\
"the program by calling: \"fuser -v %1\"\n"\
"on the command line.)",
m_device_name.section(QLatin1Char('|'), 0, 0));
break;
default:
reason = QString::fromLocal8Bit(strerror(errno));
}
return reason;
}
// the device was opened in non-blocking mode to detect if it is
// busy or not - but from now on we need blocking mode again
::fcntl(m_handle, F_SETFL, fcntl(m_handle, F_GETFL) & ~O_NONBLOCK);
if (fcntl(m_handle, F_GETFL) & O_NONBLOCK) {
// resetting O:NONBLOCK failed
return i18n("The device '%1' cannot be opened "\
"in the correct mode.",
m_device_name.section(QLatin1Char('|'), 0, 0));
}
// query OSS driver version
m_oss_version = 0x030000;
#ifdef OSS_GETVERSION
ioctl(m_handle, OSS_GETVERSION, &m_oss_version);
#endif
int format;
switch (m_bits) {
case 8: format = AFMT_U8; break;
case 24: format = AFMT_S24_LE; break;
case 32: format = AFMT_S32_LE; break;
default: format = AFMT_S16_LE;
}
// number of bits per sample
int oldformat = format;
if ((ioctl(m_handle, SNDCTL_DSP_SETFMT, &format) == -1) ||
(format != oldformat)) {
return i18n("%1 bits per sample are not supported", m_bits);
}
// channels selection
if ((ioctl(m_handle, SNDCTL_DSP_CHANNELS, &m_channels) == -1) ||
(format != oldformat)) {
return i18n("%1 channels playback is not supported", m_channels);
}
// playback rate, we allow up to 10% variation
int int_rate = Kwave::toInt(m_rate);
if ((ioctl(m_handle, SNDCTL_DSP_SPEED, &int_rate) == -1) ||
(int_rate < 0.9 * m_rate) || (int_rate > 1.1 * m_rate)) {
return i18n("Playback rate %1 Hz is not supported", int_rate);
}
m_rate = int_rate;
// buffer size
Q_ASSERT(bufbase >= MIN_PLAYBACK_BUFFER);
Q_ASSERT(bufbase <= MAX_PLAYBACK_BUFFER);
if (bufbase < MIN_PLAYBACK_BUFFER) bufbase = MIN_PLAYBACK_BUFFER;
if (bufbase > MAX_PLAYBACK_BUFFER) bufbase = MAX_PLAYBACK_BUFFER;
if (ioctl(m_handle, SNDCTL_DSP_SETFRAGMENT, &bufbase) == -1) {
return i18n("Unusable buffer size: %1", 1 << bufbase);
}
// get the real buffer size in bytes
ioctl(m_handle, SNDCTL_DSP_GETBLKSIZE, &m_buffer_size);
// create the sample encoder
// we assume that OSS is always little endian
delete m_encoder;
m_encoder = nullptr;
switch (m_bits) {
case 8:
m_encoder = new(std::nothrow) Kwave::SampleEncoderLinear(
Kwave::SampleFormat::Unsigned, 8, Kwave::LittleEndian);
break;
case 24:
if (m_oss_version >= 0x040000) {
m_encoder = new(std::nothrow) Kwave::SampleEncoderLinear(
Kwave::SampleFormat::Signed, 24, Kwave::LittleEndian);
break;
} // else:
/* FALLTHROUGH */
case 32:
if (m_oss_version >= 0x040000) {
m_encoder = new(std::nothrow) Kwave::SampleEncoderLinear(
Kwave::SampleFormat::Signed, 32, Kwave::LittleEndian);
break;
}
// else:
/* FALLTHROUGH */
default:
m_encoder = new(std::nothrow) Kwave::SampleEncoderLinear(
Kwave::SampleFormat::Signed, 16, Kwave::LittleEndian);
break;
}
Q_ASSERT(m_encoder);
if (!m_encoder) return i18n("Out of memory");
// resize the raw buffer
m_raw_buffer.resize(m_buffer_size);
// resize our buffer (size in samples) and reset it
m_buffer_size /= m_encoder->rawBytesPerSample();
if (!m_buffer.resize(m_buffer_size))
return i18n("Out of memory");
return QString();
}
//***************************************************************************
int Kwave::PlayBackOSS::write(const Kwave::SampleArray &samples)
{
Q_ASSERT (m_buffer_used <= m_buffer_size);
if (m_buffer_used > m_buffer_size) {
qWarning("PlayBackOSS::write(): buffer overflow ?!");
m_buffer_used = m_buffer_size;
flush();
return -EIO;
}
// number of samples left in the buffer
unsigned int remaining = samples.size();
unsigned int offset = 0;
while (remaining) {
unsigned int length = remaining;
if (m_buffer_used + length > m_buffer_size)
length = m_buffer_size - m_buffer_used;
MEMCPY(&(m_buffer[m_buffer_used]),
&(samples[offset]),
length * sizeof(sample_t));
m_buffer_used += length;
offset += length;
remaining -= length;
// write buffer to device if it has become full
if (m_buffer_used >= m_buffer_size)
flush();
}
return 0;
}
//***************************************************************************
void Kwave::PlayBackOSS::flush()
{
if (!m_buffer_used || !m_encoder) return; // nothing to do
// convert into byte stream
unsigned int bytes = m_buffer_used * m_encoder->rawBytesPerSample();
m_encoder->encode(m_buffer, m_buffer_used, m_raw_buffer);
ssize_t res = 0;
if (m_handle)
res = ::write(m_handle, m_raw_buffer.data(), bytes);
if (res < 0) perror(__FUNCTION__);
m_buffer_used = 0;
}
//***************************************************************************
int Kwave::PlayBackOSS::close()
{
flush();
// close the device handle
if (m_handle) ::close(m_handle);
m_handle = 0;
// get rid of the old encoder
delete m_encoder;
m_encoder = nullptr;
return 0;
}
//***************************************************************************
static bool addIfExists(QStringList &list, const QString &name)
{
QFile file;
if (name.contains(_("%1"))) {
// test for the name without suffix first
addIfExists(list, name.arg(_("")));
// loop over the list and try until a suffix does not exist
for (unsigned int index=0; index < 64; index++)
addIfExists(list, name.arg(index));
} else {
// check a single name
file.setFileName(name);
if (!file.exists())
return false;
if (!list.contains(name))
list.append(name);
}
return true;
}
//***************************************************************************
static void scanFiles(QStringList &list, const QString &dirname,
const QString &mask)
{
QStringList files;
QDir dir;
dir.setPath(dirname);
dir.setNameFilters(mask.split(QLatin1Char(' ')));
dir.setFilter(QDir::Files | QDir::Writable | QDir::System);
dir.setSorting(QDir::Name);
files = dir.entryList();
for (QStringList::Iterator it=files.begin(); it != files.end(); ++it) {
QString devicename = dirname + QDir::separator() + (*it);
addIfExists(list, devicename);
}
}
//***************************************************************************
static void scanDirectory(QStringList &list, const QString &dir)
{
scanFiles(list, dir, _("dsp*"));
scanFiles(list, dir, _("*audio*"));
scanFiles(list, dir, _("adsp*"));
scanFiles(list, dir, _("dio*"));
scanFiles(list, dir, _("pcm*"));
}
//***************************************************************************
QStringList Kwave::PlayBackOSS::supportedDevices()
{
QStringList list, dirlist;
scanDirectory(list, _("/dev"));
scanDirectory(list, _("/dev/snd"));
scanDirectory(list, _("/dev/sound"));
scanFiles(dirlist, _("/dev/oss"), _("[^.]*"));
foreach (QString dir, dirlist)
scanDirectory(list, dir);
list.append(_("#EDIT#"));
list.append(_("#SELECT#"));
return list;
}
//***************************************************************************
QString Kwave::PlayBackOSS::fileFilter()
{
QString filter;
filter += _("dsp*|") + i18n("OSS playback device (dsp*)");
if (filter.length()) filter += _("\n");
filter += _("adsp*|") + i18n("ALSA playback device (adsp*)");
if (filter.length()) filter += _("\n");
filter += _("*|") + i18n("Any device (*)");
return filter;
}
//***************************************************************************
void Kwave::PlayBackOSS::format2mode(int format, int &compression,
int &bits, Kwave::SampleFormat::Format &sample_format) const
{
switch (format) {
case AFMT_MU_LAW:
compression = Kwave::Compression::G711_ULAW;
sample_format = Kwave::SampleFormat::Signed;
bits = 16;
break;
case AFMT_A_LAW:
compression = Kwave::Compression::G711_ALAW;
sample_format = Kwave::SampleFormat::Unsigned;
bits = 16;
break;
case AFMT_IMA_ADPCM:
compression = Kwave::Compression::MS_ADPCM;
sample_format = Kwave::SampleFormat::Signed;
bits = 16;
break;
case AFMT_U8:
compression = Kwave::Compression::NONE;
sample_format = Kwave::SampleFormat::Unsigned;
bits = 8;
break;
case AFMT_S16_LE:
case AFMT_S16_BE:
compression = Kwave::Compression::NONE;
sample_format = Kwave::SampleFormat::Signed;
bits = 16;
break;
case AFMT_S8:
compression = Kwave::Compression::NONE;
sample_format = Kwave::SampleFormat::Signed;
bits = 8;
break;
case AFMT_U16_LE:
case AFMT_U16_BE:
compression = Kwave::Compression::NONE;
sample_format = Kwave::SampleFormat::Unsigned;
bits = 16;
break;
case AFMT_MPEG:
compression = static_cast<int>(
Kwave::Compression::MPEG_LAYER_II);
sample_format = Kwave::SampleFormat::Signed;
bits = 16;
break;
#if 0
case AFMT_AC3: /* Dolby Digital AC3 */
compression = Kwave::SampleFormat::Unknown;
sample_format = 0;
bits = 16;
break;
#endif
case AFMT_S24_LE:
case AFMT_S24_BE:
if (m_oss_version >= 0x040000) {
compression = Kwave::Compression::NONE;
sample_format = Kwave::SampleFormat::Signed;
bits = 24;
break;
} /* FALLTHROUGH */
case AFMT_S32_LE:
case AFMT_S32_BE:
if (m_oss_version >= 0x040000) {
compression = Kwave::Compression::NONE;
sample_format = Kwave::SampleFormat::Signed;
bits = 32;
break;
} /* FALLTHROUGH */
default:
compression = -1;
sample_format = Kwave::SampleFormat::Unknown;
bits = -1;
}
}
//***************************************************************************
int Kwave::PlayBackOSS::openDevice(const QString &device)
{
int fd = m_handle;
// qDebug("PlayBackOSS::openDevice(%s)", device.local8Bit().data());
if (!device.length()) return -1;
if (fd <= 0) {
// open the device in case it's not already open
fd = ::open(qPrintable(device), O_WRONLY | O_NONBLOCK);
if (fd <= 0) {
qWarning("PlayBackOSS::openDevice('%s') - failed, errno=%d (%s)",
DBG(device),
errno, strerror(errno));
} else {
// we use blocking mode
::fcntl(fd, F_SETFL, fcntl(fd, F_GETFL) & ~O_NONBLOCK);
// query OSS driver version
m_oss_version = -1;
#ifdef OSS_GETVERSION
ioctl(fd, OSS_GETVERSION, &m_oss_version);
#endif
}
}
if (fd <= 0) {
qWarning("PlayBackOSS::openDevice('%s') - failed, errno=%d (%s)",
DBG(device), errno, strerror(errno));
}
return fd;
}
//***************************************************************************
QList<unsigned int> Kwave::PlayBackOSS::supportedBits(const QString &device)
{
QList<unsigned int> bits;
bits.clear();
int err = -1;
int mask = AFMT_QUERY;
int fd;
// qDebug("PlayBackOSS::supportedBits(%s)", device.local8Bit().data());
fd = openDevice(device);
if (fd >= 0) {
err = ::ioctl(fd, SNDCTL_DSP_GETFMTS, &mask);
if (err < 0) {
qWarning("PlayBackOSS::supportedBits() - "\
"SNDCTL_DSP_GETFMTS failed, "\
"fd=%d, result=%d, error=%d (%s)",
fd, err, errno, strerror(errno));
}
}
// close the device if *we* opened it
if ((fd != m_handle) && (fd >= 0)) ::close(fd);
if (err < 0) return bits;
// mask out all modes that do not match the current compression
const int compression = Kwave::Compression::NONE;
for (unsigned int bit=0; bit < (sizeof(mask) << 3); bit++) {
if (!(mask & (1U << bit))) continue;
// format is supported, split into compression, bits, sample format
int c, b;
Kwave::SampleFormat::Format s;
format2mode(1U << bit, c, b, s);
if (b < 0) continue; // unknown -> skip
// take the mode if compression matches and it is not already known
if ((c == compression) && !(bits.contains(b))) {
bits += b;
}
}
return bits;
}
//***************************************************************************
int Kwave::PlayBackOSS::detectChannels(const QString &device,
unsigned int &min, unsigned int &max)
{
int fd, t, err = -1;
min = 0;
max = 0;
fd = openDevice(device);
if (fd < 0) return -1;
// find the smalles number of tracks, limit to MAX_CHANNELS
for (t=1; t < MAX_CHANNELS; t++) {
int real_tracks = t;
err = ioctl(fd, SNDCTL_DSP_CHANNELS, &real_tracks);
Q_ASSERT(real_tracks == t);
if (err >= 0) {
min = real_tracks;
break;
}
}
if (t >= MAX_CHANNELS) {
// no minimum track number found :-o
qWarning("no minimum track number found, err=%d", err);
// close the device if *we* opened it
if ((fd != m_handle) && (fd >= 0)) ::close(fd);
return err;
}
// find the highest number of tracks, start from MAX_CHANNELS downwards
for (t = MAX_CHANNELS; t >= Kwave::toInt(min); t--) {
int real_tracks = t;
err = ioctl(fd, SNDCTL_DSP_CHANNELS, &real_tracks);
Q_ASSERT(real_tracks == t);
if (err >= 0) {
max = real_tracks;
break;
}
}
max = t;
// qDebug("PlayBackOSS::detectTracks, min=%u, max=%u", min, max);
// close the device if *we* opened it
if ((fd != m_handle) && (fd >= 0)) ::close(fd);
return 0;
}
#endif /* HAVE_OSS_SUPPORT */
//***************************************************************************
//***************************************************************************
|