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 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135
|
/*************************************************************************
Record-ALSA.cpp - device for audio recording via ALSA
-------------------
begin : Sun Jul 24 2005
copyright : (C) 2005 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_ALSA_SUPPORT
#include <errno.h>
#include <math.h>
#include <QtGlobal>
#include "libkwave/Compression.h"
#include "libkwave/String.h"
#include "libkwave/Utils.h"
#include "Record-ALSA.h"
/** initializer for the list of devices */
QMap<QString, QString> Kwave::RecordALSA::m_device_list;
/** gui name of the default device */
#define DEFAULT_DEVICE (i18n("DSNOOP plugin") + _("|sound_note"))
/** helper macro: returns the number of elements in an array */
#define ELEMENTS_OF(__array__) (sizeof(__array__) / sizeof(__array__[0]))
//***************************************************************************
/* define some endian dependent symbols that are missing in ALSA */
#if Q_BYTE_ORDER == Q_BIG_ENDIAN
// big endian
#define SND_PCM_FORMAT_S18_3 SND_PCM_FORMAT_S18_3BE
#define SND_PCM_FORMAT_U18_3 SND_PCM_FORMAT_U18_3BE
#define SND_PCM_FORMAT_U20_3 SND_PCM_FORMAT_U20_3BE
#define SND_PCM_FORMAT_S20_3 SND_PCM_FORMAT_S20_3BE
#define SND_PCM_FORMAT_U24_3 SND_PCM_FORMAT_U24_3BE
#define SND_PCM_FORMAT_S24_3 SND_PCM_FORMAT_S24_3BE
#else
// little endian
#define SND_PCM_FORMAT_S18_3 SND_PCM_FORMAT_S18_3LE
#define SND_PCM_FORMAT_U18_3 SND_PCM_FORMAT_U18_3LE
#define SND_PCM_FORMAT_U20_3 SND_PCM_FORMAT_U20_3LE
#define SND_PCM_FORMAT_S20_3 SND_PCM_FORMAT_S20_3LE
#define SND_PCM_FORMAT_U24_3 SND_PCM_FORMAT_U24_3LE
#define SND_PCM_FORMAT_S24_3 SND_PCM_FORMAT_S24_3LE
#endif
/**
* Global list of all known sample formats.
* @note this list should be sorted so that the most preferable formats
* come first in the list. When searching for a format that matches
* a given set of parameters, the first entry is taken.
*
* The sort order should be:
* - compression: none -> ulaw -> alaw -> adpcm -> mpeg ...
* - bits per sample: ascending
* - sample format: signed -> unsigned -> float -> double ...
* - endianness: cpu -> little -> big
* - bytes per sample: ascending
*/
static const snd_pcm_format_t _known_formats[] =
{
/* 8 bit */
SND_PCM_FORMAT_S8,
SND_PCM_FORMAT_U8,
/* 16 bit */
SND_PCM_FORMAT_S16, SND_PCM_FORMAT_S16_LE, SND_PCM_FORMAT_S16_BE,
SND_PCM_FORMAT_U16, SND_PCM_FORMAT_U16_LE, SND_PCM_FORMAT_U16_BE,
/* 18 bit / 3 byte */
SND_PCM_FORMAT_S18_3, SND_PCM_FORMAT_S18_3LE, SND_PCM_FORMAT_S18_3BE,
SND_PCM_FORMAT_U18_3, SND_PCM_FORMAT_U18_3LE, SND_PCM_FORMAT_U18_3BE,
/* 20 bit / 3 byte */
SND_PCM_FORMAT_S20_3, SND_PCM_FORMAT_S20_3LE, SND_PCM_FORMAT_S20_3BE,
SND_PCM_FORMAT_U20_3, SND_PCM_FORMAT_U20_3LE, SND_PCM_FORMAT_U20_3BE,
/* 24 bit / 3 byte */
SND_PCM_FORMAT_S24_3, SND_PCM_FORMAT_S24_3LE, SND_PCM_FORMAT_S24_3BE,
SND_PCM_FORMAT_U24_3, SND_PCM_FORMAT_U24_3LE, SND_PCM_FORMAT_U24_3BE,
/* 24 bit / 4 byte */
SND_PCM_FORMAT_S24, SND_PCM_FORMAT_S24_LE, SND_PCM_FORMAT_S24_BE,
SND_PCM_FORMAT_U24, SND_PCM_FORMAT_U24_LE, SND_PCM_FORMAT_U24_BE,
/* 32 bit */
SND_PCM_FORMAT_S32, SND_PCM_FORMAT_S32_LE, SND_PCM_FORMAT_S32_BE,
SND_PCM_FORMAT_U32, SND_PCM_FORMAT_U32_LE, SND_PCM_FORMAT_U32_BE,
/* float, 32 bit */
SND_PCM_FORMAT_FLOAT, SND_PCM_FORMAT_FLOAT_LE, SND_PCM_FORMAT_FLOAT_BE,
/* float, 64 bit */
SND_PCM_FORMAT_FLOAT64,
SND_PCM_FORMAT_FLOAT64_LE, SND_PCM_FORMAT_FLOAT64_BE,
#if 0
/* IEC958 subframes (not supported) */
SND_PCM_FORMAT_IEC958_SUBFRAME,
SND_PCM_FORMAT_IEC958_SUBFRAME_LE, SND_PCM_FORMAT_IEC958_SUBFRAME_BE,
#endif
/* G711 ULAW */
SND_PCM_FORMAT_MU_LAW,
/* G711 ALAW */
SND_PCM_FORMAT_A_LAW,
/*
* some exotic formats, does anyone really use them
* for recording ?
* -> omit support for them, this makes life easier ;-)
*/
#if 0
/* IMA ADPCM, 3 or 4 bytes per sample (not supported) */
SND_PCM_FORMAT_IMA_ADPCM,
/* MPEG (not supported) */
SND_PCM_FORMAT_MPEG,
/* GSM */
SND_PCM_FORMAT_GSM,
/* special (not supported) */
SND_PCM_FORMAT_SPECIAL,
#endif
};
//***************************************************************************
/** find out the SampleFormat of an ALSA format */
static Kwave::SampleFormat::Format sample_format_of(snd_pcm_format_t fmt)
{
if (snd_pcm_format_float(fmt)) {
if (snd_pcm_format_width(fmt) == 32)
return Kwave::SampleFormat::Float;
if (snd_pcm_format_width(fmt) == 64)
return Kwave::SampleFormat::Double;
} else if (snd_pcm_format_linear(fmt)) {
if (snd_pcm_format_signed(fmt) == 1)
return Kwave::SampleFormat::Signed;
else if (snd_pcm_format_unsigned(fmt) == 1)
return Kwave::SampleFormat::Unsigned;
}
return Kwave::SampleFormat::Unknown;
}
//***************************************************************************
/** find out the endianness of an ALSA format */
static Kwave::byte_order_t endian_of(snd_pcm_format_t fmt)
{
if (snd_pcm_format_little_endian(fmt) == 1)
return Kwave::LittleEndian;
if (snd_pcm_format_big_endian(fmt) == 1)
return Kwave::BigEndian;
return Kwave::CpuEndian;
}
//***************************************************************************
static Kwave::Compression::Type compression_of(snd_pcm_format_t fmt)
{
Kwave::Compression::Type c = Kwave::Compression::NONE;
switch (fmt) {
case SND_PCM_FORMAT_MU_LAW:
c = Kwave::Compression::G711_ULAW; break;
case SND_PCM_FORMAT_A_LAW:
c = Kwave::Compression::G711_ALAW; break;
case SND_PCM_FORMAT_IMA_ADPCM:
c = Kwave::Compression::MS_ADPCM; break;
case SND_PCM_FORMAT_MPEG:
c = Kwave::Compression::MPEG_LAYER_I; break;
case SND_PCM_FORMAT_GSM:
c = Kwave::Compression::GSM; break;
default:
break;
}
return c;
}
//***************************************************************************
Kwave::RecordALSA::RecordALSA()
:Kwave::RecordDevice(), m_handle(nullptr), m_hw_params(nullptr),
m_sw_params(nullptr), m_open_result(0), m_tracks(0),
m_rate(0.0), m_compression(Kwave::Compression::NONE),
m_bits_per_sample(0), m_bytes_per_sample(0),
m_sample_format(Kwave::SampleFormat::Unknown),
m_supported_formats(), m_initialized(false), m_buffer_size(0),
m_chunk_size(0)
{
snd_pcm_hw_params_malloc(&m_hw_params);
snd_pcm_sw_params_malloc(&m_sw_params);
Q_ASSERT(m_hw_params);
Q_ASSERT(m_sw_params);
}
//***************************************************************************
Kwave::RecordALSA::~RecordALSA()
{
close();
snd_pcm_hw_params_free(m_hw_params);
snd_pcm_sw_params_free(m_sw_params);
}
//***************************************************************************
void Kwave::RecordALSA::detectSupportedFormats()
{
// start with an empty list
m_supported_formats.clear();
Q_ASSERT(m_handle);
if (!m_handle || !m_hw_params) return;
if (snd_pcm_hw_params_any(m_handle, m_hw_params) < 0) return;
// try all known formats
// qDebug("--- list of supported formats --- ");
const unsigned int count =
sizeof(_known_formats) / sizeof(_known_formats[0]);
for (unsigned int i = 0; i < count; i++) {
// test the sample format
snd_pcm_format_t format = _known_formats[i];
int err = snd_pcm_hw_params_test_format(m_handle, m_hw_params, format);
if (err < 0) continue;
const snd_pcm_format_t *fmt = &(_known_formats[i]);
// eliminate duplicate alsa sample formats (e.g. BE/LE)
foreach (int it, m_supported_formats) {
const snd_pcm_format_t *f = &_known_formats[it];
if (*f == *fmt) {
fmt = nullptr;
break;
}
}
if (!fmt) continue;
// Kwave::Compression t;
// Kwave::SampleFormat::Map sf;
// qDebug("#%2u, %2d, %2u bit [%u byte], %s, '%s', '%s'",
// i,
// *fmt,
// snd_pcm_format_width(*fmt),
// (snd_pcm_format_physical_width(*fmt)+7) >> 3,
// endian_of(*fmt) == Kwave::CpuEndian ? "CPU" :
// (endian_of(*fmt) == Kwave::LittleEndian ? "LE " : "BE "),
// DBG(sf.description(sf.findFromData(sample_format_of(
// DBG(t.description(t.findFromData(compression_of(
// *fmt), true))));
m_supported_formats.append(i);
}
// qDebug("--------------------------------- ");
}
//***************************************************************************
QString Kwave::RecordALSA::open(const QString &device)
{
// qDebug("RecordALSA::open(%s)", DBG(device));
// close the previous device
if (m_handle) close();
m_initialized = false;
if (!device.length()) return QString::number(EINVAL); // no device name
// translate verbose name to internal ALSA name
QString alsa_device = alsaDeviceName(device);
qDebug("RecordALSA::open -> '%s'", DBG(alsa_device));
if (!alsa_device.length()) return QString::number(EINVAL);
// workaround for bug in ALSA
// if the device name ends with "," -> invalid name
if (alsa_device.endsWith(_(","))) return QString::number(EINVAL);
// open the device in case it's not already open
m_open_result = snd_pcm_open(&m_handle, alsa_device.toLocal8Bit().data(),
SND_PCM_STREAM_CAPTURE,
SND_PCM_NONBLOCK);
if (m_open_result < 0) {
m_handle = nullptr;
qWarning("RecordALSA::openDevice('%s') - failed, err=%d (%s)",
DBG(alsa_device),
m_open_result, snd_strerror(m_open_result));
QString reason;
switch (m_open_result) {
case -ENOENT:
case -ENODEV:
case -ENXIO:
case -EIO:
reason = QString::number(ENODEV);
break;
case -EBUSY:
reason = QString::number(EBUSY);
break;
default:
reason = QString::fromLocal8Bit(snd_strerror(m_open_result));
break;
}
return reason;
}
// now we can detect all supported formats
detectSupportedFormats();
return QString();
}
//***************************************************************************
int Kwave::RecordALSA::initialize()
{
int err;
snd_output_t *output = nullptr;
snd_pcm_uframes_t buffer_size;
unsigned period_time = 0; // period time in us
unsigned buffer_time = 0; // ring buffer length in us
snd_pcm_uframes_t period_frames = 0;
snd_pcm_uframes_t buffer_frames = 0;
snd_pcm_uframes_t start_threshold, stop_threshold;
// qDebug("RecordALSA::initialize");
Q_ASSERT(!m_initialized);
m_buffer_size = 0;
Q_ASSERT(m_handle);
if (!m_handle || !m_hw_params) return -EBADF; // file not opened
// close the device if it was previously open
snd_pcm_drop(m_handle);
err = snd_output_stdio_attach(&output, stderr, 0);
if (err < 0) {
qWarning("Output failed: %s", snd_strerror(err));
}
if ((err = snd_pcm_hw_params_any(m_handle, m_hw_params)) < 0) {
qWarning("Cannot initialize hardware parameters: %s",
snd_strerror(err));
snd_output_close(output);
return -EIO;
}
err = snd_pcm_hw_params_set_access(m_handle, m_hw_params,
SND_PCM_ACCESS_RW_INTERLEAVED);
if (err < 0) {
qWarning("Cannot set access type: %s", snd_strerror(err));
snd_output_close(output);
return -EIO;
}
int format_index = mode2format(m_compression, m_bits_per_sample,
m_sample_format);
Q_ASSERT(format_index >= 0);
if (format_index < 0) {
Kwave::SampleFormat::Map sf;
qWarning("RecordkALSA::setFormat(): no matching format for "\
"compression '%s', %u bits/sample, format '%s'",
DBG(sf.description(sf.findFromData(m_sample_format), true)),
m_bits_per_sample,
DBG(Kwave::Compression(m_compression).name()));
snd_output_close(output);
return -EINVAL;
}
Q_ASSERT(format_index >= 0);
snd_pcm_format_t alsa_format = _known_formats[format_index];
m_bytes_per_sample = ((snd_pcm_format_physical_width(
_known_formats[format_index])+7) >> 3) * m_tracks;
err = snd_pcm_hw_params_test_format(m_handle, m_hw_params, alsa_format);
if (err) {
qWarning("RecordkALSA::setFormat(): format %d is not supported",
static_cast<int>(alsa_format));
snd_output_close(output);
return -EINVAL;
}
// activate the settings
err = snd_pcm_hw_params_set_format(m_handle, m_hw_params, alsa_format);
if (err < 0) {
qWarning("Cannot set sample format: %s", snd_strerror(err));
snd_output_close(output);
return -EINVAL;
}
err = snd_pcm_hw_params_set_channels(m_handle, m_hw_params, m_tracks);
if (err < 0) {
qWarning("Cannot set channel count: %s", snd_strerror(err));
snd_output_close(output);
return -EINVAL;
}
unsigned int rrate = (m_rate > 0) ? Kwave::toUint(rint(m_rate)) : 0;
err = snd_pcm_hw_params_set_rate_near(m_handle, m_hw_params, &rrate,
nullptr);
if (err < 0) {
qWarning("Cannot set sample rate: %s", snd_strerror(err));
snd_output_close(output);
return -EINVAL;
}
// qDebug(" real rate = %u", rrate);
if (m_rate * 1.05 < rrate || m_rate * 0.95 > rrate) {
qWarning("rate is not accurate (requested = %iHz, got = %iHz)",
Kwave::toInt(m_rate), Kwave::toInt(rrate));
}
m_rate = rrate;
err = snd_pcm_hw_params_get_buffer_time_max(m_hw_params, &buffer_time,
nullptr);
Q_ASSERT(err >= 0);
if (buffer_time > 500000) buffer_time = 500000;
if (buffer_time > 0)
period_time = buffer_time / 4;
else
period_frames = buffer_frames / 4;
if (period_time > 0) {
err = snd_pcm_hw_params_set_period_time_near(m_handle, m_hw_params,
&period_time, nullptr);
} else {
err = snd_pcm_hw_params_set_period_size_near(m_handle, m_hw_params,
&period_frames, nullptr);
}
Q_ASSERT(err >= 0);
if (buffer_time > 0) {
err = snd_pcm_hw_params_set_buffer_time_near(m_handle, m_hw_params,
&buffer_time, nullptr);
} else {
err = snd_pcm_hw_params_set_buffer_size_near(m_handle, m_hw_params,
&buffer_frames);
}
Q_ASSERT(err >= 0);
// qDebug(" setting hw_params");
err = snd_pcm_hw_params(m_handle, m_hw_params);
if (err < 0) {
snd_pcm_dump(m_handle, output);
snd_output_close(output);
qWarning("Cannot set parameters: %s", snd_strerror(err));
return err;
}
snd_pcm_hw_params_get_period_size(m_hw_params, &m_chunk_size, nullptr);
snd_pcm_hw_params_get_buffer_size(m_hw_params, &buffer_size);
if (m_chunk_size == buffer_size) {
qWarning("Can't use period equal to buffer size (%lu == %lu)",
m_chunk_size, buffer_size);
snd_output_close(output);
return -EIO;
}
/* set software parameters */
err = snd_pcm_sw_params_current(m_handle, m_sw_params);
if (err < 0) {
qWarning("Unable to determine current software parameters: %s",
snd_strerror(err));
snd_output_close(output);
return err;
}
/* err =*/ snd_pcm_sw_params_set_avail_min(m_handle, m_sw_params,
m_chunk_size);
/* round up to closest transfer boundary */
start_threshold = qMax<snd_pcm_uframes_t>(1, buffer_size);
err = snd_pcm_sw_params_set_start_threshold(m_handle, m_sw_params,
start_threshold);
Q_ASSERT(err >= 0);
stop_threshold = buffer_size;
err = snd_pcm_sw_params_set_stop_threshold(m_handle, m_sw_params,
stop_threshold);
Q_ASSERT(err >= 0);
// write the software parameters to the recording device
err = snd_pcm_sw_params(m_handle, m_sw_params);
if (err < 0) {
qDebug(" activating snd_pcm_sw_params FAILED");
snd_pcm_dump(m_handle, output);
qWarning("Unable to set software parameters: %s", snd_strerror(err));
}
// prepare the device for recording
if ((err = snd_pcm_prepare(m_handle)) < 0) {
snd_pcm_dump(m_handle, output);
qWarning("cannot prepare interface for use: %s",snd_strerror(err));
}
if ((err = snd_pcm_start(m_handle)) < 0) {
snd_pcm_dump(m_handle, output);
qWarning("cannot start interface: %s",snd_strerror(err));
}
// resize our buffer and reset it
Q_ASSERT(m_chunk_size);
Q_ASSERT(m_bytes_per_sample);
// snd_pcm_dump(m_handle, output);
snd_output_close(output);
return 0;
}
//***************************************************************************
int Kwave::RecordALSA::read(QByteArray &buffer, unsigned int offset)
{
unsigned int length = static_cast<unsigned int>(buffer.size());
if (!m_handle) return m_open_result; // file not opened / open has failed
if (!length) return 0; // no buffer, nothing to do
// we configure our device at a late stage, not on the fly like in OSS
if (!m_initialized) {
int err = initialize();
if (err < 0) return err;
m_initialized = true;
}
Q_ASSERT(m_chunk_size);
if (!m_chunk_size) return 0;
unsigned int chunk_bytes = Kwave::toUint(m_chunk_size) * m_bytes_per_sample;
Q_ASSERT(chunk_bytes);
if (!chunk_bytes) return 0;
// align the buffer size to the chunk size if necessary
unsigned int n = (length / chunk_bytes);
if (length != (n * chunk_bytes)) {
n++;
length = n * chunk_bytes;
// qDebug("resizing buffer %p from %u to %u bytes",
// buffer.data(), buffer.size(), length);
buffer.resize(length);
}
Q_ASSERT(length >= offset);
Q_ASSERT(m_rate > 0);
unsigned int samples = (length - offset) / m_bytes_per_sample;
// do not read more than one chunk at a time
if (samples > m_chunk_size)
samples = Kwave::toUint(m_chunk_size);
#ifdef DEBUG
// just for debugging: detect state changes of the device
static snd_pcm_state_t last_state = SND_PCM_STATE_DISCONNECTED;
snd_pcm_state_t state = snd_pcm_state(m_handle);
if (state != last_state) {
switch (state) {
case SND_PCM_STATE_OPEN:
qDebug("SND_PCM_STATE_OPEN");
break;
case SND_PCM_STATE_SETUP:
qDebug("SND_PCM_STATE_SETUP");
break;
case SND_PCM_STATE_PREPARED:
qDebug("ND_PCM_STATE_PREPARED");
break;
case SND_PCM_STATE_RUNNING:
qDebug("SND_PCM_STATE_RUNNING");
break;
case SND_PCM_STATE_XRUN:
qDebug("SND_PCM_STATE_XRUN");
break;
case SND_PCM_STATE_DRAINING:
qDebug("SND_PCM_STATE_DRAINING");
break;
case SND_PCM_STATE_PAUSED:
qDebug("SND_PCM_STATE_PAUSED");
break;
case SND_PCM_STATE_SUSPENDED:
qDebug("SND_PCM_STATE_SUSPENDED");
break;
case SND_PCM_STATE_DISCONNECTED:
qDebug("SND_PCM_STATE_DISCONNECTED");
break;
default:
qDebug("SND_PCM_STATE_<unknown>");
break;
}
last_state = state;
}
#endif /* DEBUG */
// try to read as much as the device accepts
Q_ASSERT(samples);
Q_ASSERT(offset + samples <= Kwave::toUint(buffer.size()));
int r = Kwave::toInt(
snd_pcm_readi(m_handle, buffer.data() + offset, samples)
);
// handle all negative result codes
if (r == -EAGAIN) {
unsigned int timeout = (m_rate > 0) ?
(((1000 * samples) / 4) / Kwave::toUint(m_rate)) : 10U;
snd_pcm_wait(m_handle, timeout);
return -EAGAIN;
} else if (r == -EPIPE) {
// underrun -> start again
qWarning("RecordALSA::read(), underrun");
r = snd_pcm_prepare(m_handle);
if (r >= 0) r = snd_pcm_start(m_handle);
if (r < 0) {
qWarning("RecordALSA::read(), "
"resume after underrun failed: %s",
snd_strerror(r));
return r;
}
qWarning("RecordALSA::read(), after underrun: resuming");
return -EAGAIN; // try again
} else if (r == -ESTRPIPE) {
qWarning("RecordALSA::read(), suspended. "\
"trying to resume...");
while ((r = snd_pcm_resume(m_handle)) == -EAGAIN)
return -EAGAIN; /* wait until suspend flag is released */
if (r < 0) {
qWarning("RecordALSA::read(), resume failed, "
"restarting stream.");
if ((r = snd_pcm_prepare(m_handle)) < 0) {
qWarning("RecordALSA::read(), resume error: %s",
snd_strerror(r));
return r;
}
}
qWarning("RecordALSA::read(), after suspend: resuming");
return -EAGAIN; // try again
} else if (r < 0) {
qWarning("RecordALSA: read error: %s", snd_strerror(r));
return r;
}
// no error, successfully read something:
// advance in the buffer
// qDebug("<<< after read, r=%d", r);
Q_ASSERT(r <= Kwave::toInt(samples));
if (r > Kwave::toInt(samples)) r = samples;
return (r * m_bytes_per_sample);
}
//***************************************************************************
int Kwave::RecordALSA::close()
{
// close the device handle
if (m_handle) {
snd_pcm_drop(m_handle);
snd_pcm_hw_free(m_handle);
snd_pcm_close(m_handle);
}
m_handle = nullptr;
m_open_result = -EINVAL;
// we need to re-initialize the next time
m_initialized = false;
// clear the list of supported formats, nothing open -> nothing supported
m_supported_formats.clear();
return 0;
}
//***************************************************************************
int Kwave::RecordALSA::detectTracks(unsigned int &min, unsigned int &max)
{
min = max = 0;
if (!m_handle || !m_hw_params) return -1;
if (snd_pcm_hw_params_any(m_handle, m_hw_params) >= 0) {
int err;
if ((err = snd_pcm_hw_params_get_channels_min(m_hw_params, &min)) < 0)
qWarning("RecordALSA::detectTracks: min: %s",
snd_strerror(err));
if ((err = snd_pcm_hw_params_get_channels_max(m_hw_params, &max)) < 0)
qWarning("RecordALSA::detectTracks: max: %s",
snd_strerror(err));
}
// qDebug("RecordALSA::detectTracks, min=%u, max=%u", min, max);
return 0;
}
//***************************************************************************
int Kwave::RecordALSA::setTracks(unsigned int &tracks)
{
if (tracks != m_tracks) m_initialized = false;
m_tracks = tracks;
return 0;
}
//***************************************************************************
int Kwave::RecordALSA::tracks()
{
return m_tracks;
}
//***************************************************************************
QList<double> Kwave::RecordALSA::detectSampleRates()
{
QList<double> list;
if (!m_handle || !m_hw_params) return list;
if (snd_pcm_hw_params_any(m_handle, m_hw_params) < 0) return list;
static const unsigned int known_rates[] = {
1000, // (just for testing)
2000, // (just for testing)
4000, // standard OSS
5125, // seen in Harmony driver (HP712, 715/new)
5510, // seen in AD1848 driver
5512, // seen in ES1370 driver
6215, // seen in ES188X driver
6615, // seen in Harmony driver (HP712, 715/new)
6620, // seen in AD1848 driver
7350, // seen in AWACS and Burgundy sound driver
8000, // standard OSS
8820, // seen in AWACS and Burgundy sound driver
9600, // seen in AD1848 driver
11025, // soundblaster
14700, // seen in AWACS and Burgundy sound driver
16000, // standard OSS
17640, // seen in AWACS and Burgundy sound driver
18900, // seen in Harmony driver (HP712, 715/new)
22050, // soundblaster
24000, // seen in NM256 driver
27428, // seen in Harmony driver (HP712, 715/new)
29400, // seen in AWACS and Burgundy sound driver
32000, // standard OSS
32768, // seen in CS4299 driver
33075, // seen in Harmony driver (HP712, 715/new)
37800, // seen in Harmony driver (HP712, 715/new)
44100, // soundblaster
48000, // AC97
64000, // AC97
88200, // seen in RME96XX driver
96000, // AC97
128000, // (just for testing)
192000, // AC97
196000, // (just for testing)
256000 // (just for testing)
};
// try all known sample rates
for (unsigned int i = 0; i < ELEMENTS_OF(known_rates); i++) {
unsigned int rate = known_rates[i];
int err = snd_pcm_hw_params_test_rate(m_handle, m_hw_params, rate, 0);
if (err < 0) continue;
// do not produce duplicates
bool is_duplicate = false;
foreach (const double &r, list)
if (qFuzzyCompare(rate, r)) { is_duplicate = true; break; }
if (is_duplicate) continue;
// qDebug("found rate %u Hz", rate);
list.append(rate);
}
return list;
}
//***************************************************************************
int Kwave::RecordALSA::setSampleRate(double &new_rate)
{
if (!qFuzzyCompare(new_rate, m_rate)) m_initialized = false;
m_rate = new_rate;
return 0;
}
//***************************************************************************
double Kwave::RecordALSA::sampleRate()
{
return m_rate;
}
//***************************************************************************
int Kwave::RecordALSA::mode2format(Kwave::Compression::Type compression,
int bits,
Kwave::SampleFormat::Format sample_format)
{
// loop over all supported formats and keep only those that are
// compatible with the given compression, bits and sample format
foreach (int index, m_supported_formats)
{
const snd_pcm_format_t *fmt = &_known_formats[index];
if (compression_of(*fmt) != compression) continue;
if (snd_pcm_format_width(*fmt) != bits) continue;
if (!(sample_format_of(*fmt) == sample_format)) continue;
// mode is compatible
// As the list of known formats is already sorted so that
// the simplest formats come first, we don't have a lot
// of work -> just take the first entry ;-)
// qDebug("RecordALSA::mode2format -> %d", index);
return index;
}
qWarning("RecordALSA::mode2format -> no match found !?");
return -1;
}
//***************************************************************************
QList<Kwave::Compression::Type> Kwave::RecordALSA::detectCompressions()
{
QList<Kwave::Compression::Type> list;
// try all known sample formats
foreach(int it, m_supported_formats)
{
const snd_pcm_format_t *fmt = &(_known_formats[it]);
Kwave::Compression::Type comp = compression_of(*fmt);
// do not produce duplicates
if (list.contains(comp)) continue;
// Kwave::Compression t;
// qDebug("found compression %d '%s'", compression,
// DBG(t.name(t.findFromData(compression))));
list.append(comp);
}
return list;
}
//***************************************************************************
int Kwave::RecordALSA::setCompression(Kwave::Compression::Type new_compression)
{
if (m_compression != new_compression) m_initialized = false;
m_compression = new_compression;
return 0;
}
//***************************************************************************
Kwave::Compression::Type Kwave::RecordALSA::compression()
{
return m_compression;
}
//***************************************************************************
QList<unsigned int> Kwave::RecordALSA::supportedBits()
{
QList<unsigned int> list;
// try all known sample formats
foreach(int it, m_supported_formats)
{
const snd_pcm_format_t *fmt = &(_known_formats[it]);
const unsigned int bits = snd_pcm_format_width(*fmt);
// 0 bits means invalid/does not apply
if (!bits) continue;
// only accept bits/sample if compression matches
if (compression_of(*fmt) != m_compression) continue;
// do not produce duplicates
if (list.contains(bits)) continue;
// qDebug("found bits/sample %u", bits);
list.append(bits);
}
return list;
}
//***************************************************************************
int Kwave::RecordALSA::setBitsPerSample(unsigned int new_bits)
{
if (m_bits_per_sample != new_bits) m_initialized = false;
m_bits_per_sample = new_bits;
return 0;
}
//***************************************************************************
int Kwave::RecordALSA::bitsPerSample()
{
return m_bits_per_sample;
}
//***************************************************************************
QList<Kwave::SampleFormat::Format> Kwave::RecordALSA::detectSampleFormats()
{
QList<Kwave::SampleFormat::Format> list;
// try all known sample formats
foreach(int it, m_supported_formats)
{
const snd_pcm_format_t *fmt = &(_known_formats[it]);
const Kwave::SampleFormat::Format sample_format =
sample_format_of(*fmt);
// only accept bits/sample if compression types
// and bits per sample match
if (compression_of(*fmt) != m_compression) continue;
if (snd_pcm_format_width(*fmt) != Kwave::toInt(m_bits_per_sample))
continue;
// do not produce duplicates
if (list.contains(sample_format)) continue;
// Kwave::SampleFormat::Map sf;
// qDebug("found sample format %u ('%s')", (int)sample_format,
// DBG(sf.name(sf.findFromData(sample_format))));
list.append(sample_format);
}
return list;
}
//***************************************************************************
int Kwave::RecordALSA::setSampleFormat(Kwave::SampleFormat::Format new_format)
{
if (m_sample_format != new_format) m_initialized = false;
m_sample_format = new_format;
return 0;
}
//***************************************************************************
Kwave::SampleFormat::Format Kwave::RecordALSA::sampleFormat()
{
return m_sample_format;
}
//***************************************************************************
Kwave::byte_order_t Kwave::RecordALSA::endianness()
{
int index = mode2format(m_compression, m_bits_per_sample, m_sample_format);
return (index >= 0) ?
endian_of(_known_formats[index]) : Kwave::UnknownEndian;
}
//***************************************************************************
QStringList Kwave::RecordALSA::supportedDevices()
{
// re-validate the list if necessary
scanDevices();
QStringList list = m_device_list.keys();
// move the default device to the start of the list
if (list.contains(DEFAULT_DEVICE))
list.move(list.indexOf(DEFAULT_DEVICE), 0);
list.append(_("#TREE#"));
return list;
}
//***************************************************************************
void Kwave::RecordALSA::scanDevices()
{
snd_ctl_t *handle = nullptr;
int card, err, dev;
int idx;
snd_ctl_card_info_t *info = nullptr;
snd_pcm_info_t *pcminfo = nullptr;
m_device_list.clear();
card = -1;
if (snd_card_next(&card) < 0 || card < 0) {
qWarning("no soundcards found...");
return;
}
snd_ctl_card_info_malloc(&info);
snd_pcm_info_malloc(&pcminfo);
// qDebug("**** List of RECORD Hardware Devices ****");
while (card >= 0) {
QString name;
name = _("hw:%1");
name = name.arg(card);
if ((err = snd_ctl_open(&handle, name.toLocal8Bit().data(), 0)) < 0) {
qWarning("control open (%i): %s", card, snd_strerror(err));
goto next_card;
}
if ((err = snd_ctl_card_info(handle, info)) < 0) {
qWarning("control hardware info (%i): %s",
card, snd_strerror(err));
snd_ctl_close(handle);
goto next_card;
}
dev = -1;
while (1) {
unsigned int count;
if (snd_ctl_pcm_next_device(handle, &dev)<0)
qWarning("snd_ctl_pcm_next_device");
if (dev < 0)
break;
snd_pcm_info_set_device(pcminfo, dev);
snd_pcm_info_set_subdevice(pcminfo, 0);
snd_pcm_info_set_stream(pcminfo, SND_PCM_STREAM_CAPTURE);
if ((err = snd_ctl_pcm_info(handle, pcminfo)) < 0) {
if (err != -ENOENT)
qWarning("control digital audio info (%i): %s", card,
snd_strerror(err));
continue;
}
count = snd_pcm_info_get_subdevices_count(pcminfo);
// qDebug("card %i: %s [%s], device %i: %s [%s]",
// card,
// snd_ctl_card_info_get_id(info),
// snd_ctl_card_info_get_name(info),
// dev,
// snd_pcm_info_get_id(pcminfo),
// snd_pcm_info_get_name(pcminfo));
// add the device to the list
QString hw_device;
hw_device = _("hw:%1,%2");
hw_device = hw_device.arg(card).arg(dev);
QString card_name = _(snd_ctl_card_info_get_name(info));
QString device_name = _(snd_pcm_info_get_name(pcminfo));
// qDebug(" Subdevices: %i/%i\n",
// snd_pcm_info_get_subdevices_avail(pcminfo), count);
if (count > 1) {
for (idx = 0; idx < Kwave::toInt(count); idx++) {
snd_pcm_info_set_subdevice(pcminfo, idx);
if ((err = snd_ctl_pcm_info(handle, pcminfo)) < 0) {
qWarning("ctrl digital audio playback info (%i): %s",
card, snd_strerror(err));
} else {
QString hwdev = hw_device + _(",%1").arg(idx);
QString subdevice_name = _(
snd_pcm_info_get_subdevice_name(pcminfo));
QString full_name =
i18n("Card %1: ", card_name) +
_("|sound_card||") +
i18n("Device %1: ", device_name) +
_("|sound_device||") +
i18n("Subdevice %1: ", subdevice_name) +
_("|sound_subdevice");
qDebug("# '%s' -> '%s'", DBG(hwdev), DBG(full_name));
m_device_list.insert(full_name, hwdev);
}
}
} else {
// no sub-devices
QString full_name = QString(
i18n("Card %1: ", card_name) +
_("|sound_card||") +
i18n("Device %1: ", device_name) +
_("|sound_subdevice")
)/*.arg(card).arg(dev)*/;
// qDebug("# '%s' -> '%s'", hw_device.data(), name.data());
m_device_list.insert(full_name, hw_device);
}
}
snd_ctl_close(handle);
next_card:
if (snd_card_next(&card) < 0) {
qWarning("snd_card_next failed");
break;
}
}
// per default: offer the dsnoop plugin if any slave devices exist
if (!m_device_list.isEmpty()) {
m_device_list.insert(DEFAULT_DEVICE, _("plug:dsnoop"));
}
snd_ctl_card_info_free(info);
snd_pcm_info_free(pcminfo);
/*
* BUG: this call is allowed due to ALSA documentation, but causes
* SIGSEGV when closing the record device. Somehow the internal
* structures of the PCM devices get messed up :-(
* (THE, 2009-07-18)
*/
/* snd_config_update_free_global(); */
}
//***************************************************************************
QString Kwave::RecordALSA::alsaDeviceName(const QString &name)
{
if (m_device_list.isEmpty() || (name.length() &&
!m_device_list.contains(name)))
{
scanDevices();
}
if (!m_device_list.contains(name)) {
// maybe we already have a ALSA compatible name (like in init state)
for (QMap<QString, QString>::const_iterator
it(m_device_list.constBegin());
it != m_device_list.constEnd(); ++it)
{
if (it.value() == name) return it.value();
}
qWarning("RecordALSA::alsaDeviceName('%s') - NOT FOUND", DBG(name));
return _("");
}
return m_device_list[name];
}
#endif /* HAVE_ALSA_SUPPORT */
//***************************************************************************
//***************************************************************************
|