wfview/audiohandler.cpp

442 wiersze
13 KiB
C++
Czysty Zwykły widok Historia

2021-02-11 19:18:35 +00:00
/*
2021-05-23 15:09:41 +00:00
This class handles both RX and TX audio, each is created as a seperate instance of the class
but as the setup/handling if output (RX) and input (TX) devices is so similar I have combined them.
2021-02-11 19:18:35 +00:00
*/
#include "audiohandler.h"
2021-05-16 20:16:59 +00:00
2021-02-23 21:21:22 +00:00
#include "logcategories.h"
2021-05-24 17:00:38 +00:00
#include "ulaw.h"
2021-02-13 00:45:59 +00:00
2021-02-11 19:18:35 +00:00
audioHandler::audioHandler(QObject* parent) :
2021-05-23 15:09:41 +00:00
isInitialized(false),
isUlaw(false),
audioLatency(0),
isInput(0),
chunkAvailable(false)
2021-02-11 19:18:35 +00:00
{
}
audioHandler::~audioHandler()
{
2021-05-23 15:09:41 +00:00
//stop();
if (resampler != Q_NULLPTR) {
2021-03-09 17:22:16 +00:00
speex_resampler_destroy(resampler);
}
2021-05-23 15:09:41 +00:00
if (audio.isStreamRunning())
{
audio.stopStream();
2021-05-24 17:00:38 +00:00
audio.closeStream();
2021-05-23 15:09:41 +00:00
}
if (ringBuf != Q_NULLPTR)
delete ringBuf;
2021-02-11 19:18:35 +00:00
}
2021-05-23 15:09:41 +00:00
bool audioHandler::init(const quint8 bits, const quint8 channels, const quint16 samplerate, const quint16 latency, const bool ulaw, const bool isinput, int port, quint8 resampleQuality)
2021-02-11 19:18:35 +00:00
{
2021-05-23 15:09:41 +00:00
if (isInitialized) {
return false;
}
2021-02-11 19:18:35 +00:00
2021-05-16 20:16:59 +00:00
this->audioLatency = latency;
this->isUlaw = ulaw;
2021-05-23 15:09:41 +00:00
this->isInput = isinput;
this->radioSampleBits = bits;
this->radioSampleRate = samplerate;
2021-03-09 17:22:16 +00:00
this->radioChannels = channels;
// chunk size is always relative to Internal Sample Rate.
this->chunkSize = (INTERNAL_SAMPLE_RATE / 25) * radioChannels;
2021-03-09 17:22:16 +00:00
ringBuf = new wilt::Ring<audioPacket>(100); // Should be customizable.
tempBuf.sent = 0;
2021-05-23 15:09:41 +00:00
if (port > 0) {
aParams.deviceId = port;
}
else if (isInput) {
aParams.deviceId = audio.getDefaultInputDevice();
}
else {
aParams.deviceId = audio.getDefaultOutputDevice();
}
aParams.firstChannel = 0;
2021-02-11 19:18:35 +00:00
2021-05-24 17:00:38 +00:00
try {
info = audio.getDeviceInfo(aParams.deviceId);
}
catch (RtAudioError& e) {
qInfo(logAudio()) << "Device error:" << aParams.deviceId << ":" << QString::fromStdString(e.getMessage());
return false;
}
2021-05-23 15:09:41 +00:00
if (info.probed)
{
qInfo(logAudio()) << (isInput ? "Input" : "Output") << QString::fromStdString(info.name) << "(" << aParams.deviceId << ") successfully probed";
if (info.nativeFormats == 0)
qInfo(logAudio()) << " No natively supported data formats!";
else {
qDebug(logAudio()) << " Supported formats:" <<
(info.nativeFormats & RTAUDIO_SINT8 ? "8-bit int," : "") <<
(info.nativeFormats & RTAUDIO_SINT16 ? "16-bit int," : "") <<
(info.nativeFormats & RTAUDIO_SINT24 ? "24-bit int," : "") <<
(info.nativeFormats & RTAUDIO_SINT32 ? "32-bit int," : "") <<
(info.nativeFormats & RTAUDIO_FLOAT32 ? "32-bit float," : "") <<
(info.nativeFormats & RTAUDIO_FLOAT64 ? "64-bit float," : "");
qInfo(logAudio()) << " Preferred sample rate:" << info.preferredSampleRate;
if (isInput)
qInfo(logAudio()) << " Input Channels:" << info.inputChannels;
else
qInfo(logAudio()) << " Output Channels:" << info.outputChannels;
}
2021-05-23 15:09:41 +00:00
qInfo(logAudio()) << " chunkSize: " << chunkSize;
}
else
{
2021-05-23 15:09:41 +00:00
qCritical(logAudio()) << (isInput ? "Input" : "Output") << QString::fromStdString(info.name) << "(" << aParams.deviceId << ") could not be probed, check audio configuration!";
}
2021-05-23 15:09:41 +00:00
int resample_error = 0;
2021-05-23 15:09:41 +00:00
if (isInput) {
resampler = wf_resampler_init(radioChannels, info.preferredSampleRate, samplerate, resampleQuality, &resample_error);
2021-05-23 15:09:41 +00:00
try {
aParams.nChannels = radioChannels;
audio.openStream(NULL, &aParams, RTAUDIO_SINT16, info.preferredSampleRate, &this->chunkSize, &staticWrite, this);
2021-05-23 15:09:41 +00:00
audio.startStream();
}
catch (RtAudioError& e) {
qInfo(logAudio()) << "Error opening:" << QString::fromStdString(e.getMessage());
return false;
}
}
2021-05-23 15:09:41 +00:00
else
{
resampler = wf_resampler_init(radioChannels, samplerate, info.preferredSampleRate, resampleQuality, &resample_error);
2021-05-23 15:09:41 +00:00
try {
unsigned int length = chunkSize / 2;
2021-05-27 12:54:52 +00:00
aParams.nChannels = 2; // Internally this is always 2 channels
audio.openStream(&aParams, NULL, RTAUDIO_SINT16, info.preferredSampleRate, &length, &staticRead, this);
2021-05-23 15:09:41 +00:00
audio.startStream();
}
catch (RtAudioError& e) {
qInfo(logAudio()) << "Error opening:" << QString::fromStdString(e.getMessage());
return false;
}
}
qInfo(logAudio()) << (isInput ? "Input" : "Output") << "device successfully opened";
2021-05-16 20:16:59 +00:00
wf_resampler_get_ratio(resampler, &ratioNum, &ratioDen);
2021-05-23 15:09:41 +00:00
qInfo(logAudio()) << (isInput ? "Input" : "Output") << "wf_resampler_init() returned: " << resample_error << " ratioNum" << ratioNum << " ratioDen" << ratioDen;
2021-05-23 15:09:41 +00:00
return isInitialized;
2021-02-11 19:18:35 +00:00
}
void audioHandler::setVolume(unsigned char volume)
2021-03-22 16:02:22 +00:00
{
2021-05-27 17:34:44 +00:00
qInfo(logAudio()) << (isInput ? "Input" : "Output") << "setVolume: " << volume << "(" << (qreal)(volume / 255.0) << ")";
this->volume = (qreal)(volume/255.0);
2021-02-11 19:18:35 +00:00
}
2021-03-09 17:22:16 +00:00
/// <summary>
/// This function processes the incoming audio FROM the radio and pushes it into the playback buffer *data
/// </summary>
/// <param name="data"></param>
/// <param name="maxlen"></param>
/// <returns></returns>
2021-05-23 15:09:41 +00:00
int audioHandler::readData(void* outputBuffer, void* inputBuffer, unsigned int nFrames, double streamTime, RtAudioStreamStatus status)
2021-02-11 19:18:35 +00:00
{
2021-05-23 15:09:41 +00:00
// Calculate output length, always full samples
int sentlen = 0;
quint8* buffer = (quint8*)outputBuffer;
2021-05-24 08:27:18 +00:00
if (status == RTAUDIO_OUTPUT_UNDERFLOW)
qDebug(logAudio()) << "Underflow detected";
unsigned int nBytes = nFrames * 2 * 2; // This is ALWAYS 2 bytes per sample and 2 channels
2021-05-23 21:45:10 +00:00
if (ringBuf->size()>0)
{
2021-05-23 21:45:10 +00:00
// Output buffer is ALWAYS 16 bit.
while (sentlen < nBytes)
2021-05-23 21:45:10 +00:00
{
audioPacket packet;
if (!ringBuf->try_read(packet))
{
qDebug() << "No more data available but buffer is not full! sentlen:" << sentlen << " nBytes:" << nBytes ;
return 0;
2021-05-23 21:45:10 +00:00
}
currentLatency = packet.time.msecsTo(QTime::currentTime());
2021-05-23 21:45:10 +00:00
// This shouldn't be required but if we did output a partial packet
// This will add the remaining packet data to the output buffer.
if (tempBuf.sent != tempBuf.data.length())
2021-05-23 21:45:10 +00:00
{
int send = qMin((int)nBytes - sentlen, tempBuf.data.length() - tempBuf.sent);
memcpy(buffer + sentlen, tempBuf.data.constData() + tempBuf.sent, send);
tempBuf.sent = tempBuf.sent + send;
sentlen = sentlen + send;
2021-05-28 17:13:08 +00:00
if (tempBuf.sent != tempBuf.data.length())
{
// We still don't have enough buffer space for this?
return 0;
}
//qDebug(logAudio()) << "Adding partial:" << send;
}
2021-05-23 21:45:10 +00:00
2021-05-27 17:46:01 +00:00
if (currentLatency > (int)audioLatency) {
qInfo(logAudio()) << (isInput ? "Input" : "Output") << "Packet " << hex << packet.seq <<
" arrived too late (increase output latency!) " <<
dec << packet.time.msecsTo(QTime::currentTime()) << "ms";
lastSeq = packet.seq;
if (!ringBuf->try_read(packet))
return sentlen;
currentLatency = packet.time.msecsTo(QTime::currentTime());
}
2021-05-23 21:45:10 +00:00
int send = qMin((int)nBytes - sentlen, packet.data.length());
memcpy(buffer + sentlen, packet.data.constData(), send);
sentlen = sentlen + send;
if (send < packet.data.length())
{
//qDebug(logAudio()) << "Asking for partial, sent:" << send << "packet length" << packet.data.length();
tempBuf = packet;
tempBuf.sent = tempBuf.sent + send;
lastSeq = packet.seq;
break;
}
2021-05-23 21:45:10 +00:00
if (packet.seq <= lastSeq) {
qDebug(logAudio()) << (isInput ? "Input" : "Output") << "Duplicate/early audio packet: " << hex << lastSeq << " got " << hex << packet.seq;
2021-05-23 21:45:10 +00:00
}
else if (packet.seq != lastSeq + 1) {
qDebug(logAudio()) << (isInput ? "Input" : "Output") << "Missing audio packet(s) from: " << hex << lastSeq + 1 << " to " << hex << packet.seq - 1;
2021-05-23 21:45:10 +00:00
}
lastSeq = packet.seq;
2021-05-23 21:45:10 +00:00
}
}
//qDebug(logAudio()) << "looking for: " << nBytes << " got: " << sentlen;
2021-05-23 21:45:10 +00:00
2021-05-23 15:09:41 +00:00
return 0;
}
2021-02-11 19:18:35 +00:00
2021-05-23 15:09:41 +00:00
int audioHandler::writeData(void* outputBuffer, void* inputBuffer, unsigned int nFrames, double streamTime, RtAudioStreamStatus status)
2021-02-11 19:18:35 +00:00
{
2021-05-23 15:09:41 +00:00
int sentlen = 0;
unsigned int nBytes = nFrames * 2 * radioChannels; // This is ALWAYS 2 bytes per sample
2021-05-27 12:54:52 +00:00
const char* data = (const char*)inputBuffer;
while (sentlen < nBytes) {
if (tempBuf.sent != chunkSize)
{
2021-05-27 12:54:52 +00:00
int send = qMin((int)(nBytes - sentlen), (int)chunkSize - tempBuf.sent);
tempBuf.data.append(QByteArray::fromRawData(data + sentlen, send));
sentlen = sentlen + send;
tempBuf.seq = 0; // Not used in TX
tempBuf.time = QTime::currentTime();
tempBuf.sent = tempBuf.sent + send;
2021-05-27 12:54:52 +00:00
}
else {
if (!ringBuf->try_write(tempBuf))
{
2021-05-27 12:54:52 +00:00
qDebug(logAudio()) << "outgoing audio buffer full!";
2021-05-27 13:09:12 +00:00
break;
}
2021-05-27 12:54:52 +00:00
tempBuf.data.clear();
tempBuf.sent = 0;
}
2021-05-23 15:09:41 +00:00
}
2021-05-27 12:54:52 +00:00
return 0;
2021-02-11 19:18:35 +00:00
}
qint64 audioHandler::bytesAvailable() const
{
2021-05-23 15:09:41 +00:00
return 0;
2021-02-11 19:18:35 +00:00
}
bool audioHandler::isSequential() const
{
2021-05-23 15:09:41 +00:00
return true;
2021-02-11 19:18:35 +00:00
}
void audioHandler::notified()
{
}
2021-02-12 23:56:02 +00:00
2021-02-11 19:18:35 +00:00
void audioHandler::stateChanged(QAudio::State state)
{
2021-05-23 15:09:41 +00:00
2021-02-11 19:18:35 +00:00
}
2021-05-27 17:34:44 +00:00
void audioHandler::incomingAudio(audioPacket data)
2021-02-11 19:18:35 +00:00
{
2021-05-23 21:45:10 +00:00
// No point buffering audio until stream is actually running.
if (!audio.isStreamRunning())
{
qDebug(logAudio()) << "Packet received before stream was started";
2021-05-27 17:34:44 +00:00
return;
2021-05-23 21:45:10 +00:00
}
// Incoming data is 8bits?
if (radioSampleBits == 8)
{
QByteArray outPacket((int)data.data.length() * 2, (char)0xff);
qint16* out = (qint16*)outPacket.data();
for (int f = 0; f < data.data.length(); f++)
2021-03-09 17:22:16 +00:00
{
if (isUlaw)
2021-03-09 17:22:16 +00:00
{
out[f] = ulaw_decode[(quint8)data.data[f]];
}
else
{
// Convert 8-bit sample to 16-bit
out[f] = (qint16)(((quint8)data.data[f] << 8) - 32640);
2021-03-09 17:22:16 +00:00
}
}
data.data.clear();
data.data = outPacket; // Replace incoming data with converted.
}
2021-03-09 17:22:16 +00:00
//qInfo(logAudio()) << "Adding packet to buffer:" << data.seq << ": " << data.data.length();
2021-03-09 17:22:16 +00:00
/* We now have an array of 16bit samples in the NATIVE samplerate of the radio
If the radio sample rate is below 48000, we need to resample.
*/
2021-03-09 17:22:16 +00:00
if (ratioDen != 1) {
2021-03-09 17:22:16 +00:00
// We need to resample
quint32 outFrames = ((data.data.length() / 2) * ratioDen) / radioChannels;
quint32 inFrames = (data.data.length() / 2) / radioChannels;
QByteArray outPacket(outFrames * 2 * radioChannels, 0xff); // Preset the output buffer size.
2021-03-09 17:22:16 +00:00
int err = 0;
if (this->radioChannels == 1) {
err = wf_resampler_process_int(resampler, 0, (const qint16*)data.data.constData(), &inFrames, (qint16*)outPacket.data(), &outFrames);
2021-03-09 17:22:16 +00:00
}
else {
err = wf_resampler_process_interleaved_int(resampler, (const qint16*)data.data.constData(), &inFrames, (qint16*)outPacket.data(), &outFrames);
}
if (err) {
qInfo(logAudio()) << (isInput ? "Input" : "Output") << "Resampler error " << err << " inFrames:" << inFrames << " outFrames:" << outFrames;
2021-03-09 17:22:16 +00:00
}
data.data.clear();
data.data = outPacket; // Replace incoming data with converted.
}
2021-03-09 17:22:16 +00:00
2021-05-27 12:54:52 +00:00
if (radioChannels == 1) {
// Convert to stereo and set volume.
QByteArray outPacket(data.data.length()*2, 0xff); // Preset the output buffer size.
qint16* in = (qint16*)data.data.data();
qint16* out = (qint16*)outPacket.data();
for (int f = 0; f < data.data.length()/2; f++)
{
2021-05-27 12:54:52 +00:00
*out++ = *in * volume;
*out++ = *in++ * volume;
}
data.data.clear();
data.data = outPacket; // Replace incoming data with converted.
2021-05-27 12:54:52 +00:00
} else {
// We already have two channels so just update volume.
qint16* in = (qint16*)data.data.data();
for (int f = 0; f < data.data.length() / 2; f++)
{
in[f] = in[f] * volume;
}
}
2021-05-27 12:54:52 +00:00
if (!ringBuf->try_write(data))
{
qDebug(logAudio()) << "Buffer full! capacity:" << ringBuf->capacity() << "length" << ringBuf->size();
}
2021-05-27 17:34:44 +00:00
return;
2021-02-11 19:18:35 +00:00
}
void audioHandler::changeLatency(const quint16 newSize)
2021-02-11 19:18:35 +00:00
{
2021-05-23 15:09:41 +00:00
qInfo(logAudio()) << (isInput ? "Input" : "Output") << "Changing latency to: " << newSize << " from " << audioLatency;
audioLatency = newSize;
2021-02-11 19:18:35 +00:00
}
2021-05-27 17:34:44 +00:00
int audioHandler::getLatency()
2021-02-11 19:18:35 +00:00
{
2021-05-27 17:34:44 +00:00
return currentLatency;
2021-02-11 19:18:35 +00:00
}
bool audioHandler::isChunkAvailable()
{
2021-05-23 15:09:41 +00:00
return (chunkAvailable);
}
2021-02-13 11:04:26 +00:00
void audioHandler::getNextAudioChunk(QByteArray& ret)
2021-02-12 20:42:56 +00:00
{
2021-05-27 12:54:52 +00:00
audioPacket packet;
packet.sent = 0;
if (ringBuf != Q_NULLPTR && ringBuf->try_read(packet))
2021-02-27 09:34:56 +00:00
{
2021-05-27 12:54:52 +00:00
if (ratioNum != 1)
2021-02-27 09:34:56 +00:00
{
2021-05-27 12:54:52 +00:00
// We need to resample (we are STILL 16 bit!)
quint32 outFrames = ((packet.data.length() / 2) / ratioNum) / radioChannels;
quint32 inFrames = (packet.data.length() / 2) / radioChannels;
QByteArray inPacket((int)outFrames * 2 * radioChannels, (char)0xff);
const qint16* in = (qint16*)packet.data.constData();
qint16* out = (qint16*)inPacket.data();
int err = 0;
if (this->radioChannels == 1) {
err = wf_resampler_process_int(resampler, 0, in, &inFrames, out, &outFrames);
2021-02-27 13:43:53 +00:00
}
else {
2021-05-27 12:54:52 +00:00
err = wf_resampler_process_interleaved_int(resampler, in, &inFrames, out, &outFrames);
}
if (err) {
qInfo(logAudio()) << (isInput ? "Input" : "Output") << "Resampler error " << err << " inFrames:" << inFrames << " outFrames:" << outFrames;
}
//qInfo(logAudio()) << "Resampler run " << err << " inFrames:" << inFrames << " outFrames:" << outFrames;
//qInfo(logAudio()) << "Resampler run inLen:" << packet->datain.length() << " outLen:" << packet->dataout.length();
packet.data.clear();
packet.data = inPacket; // Copy output packet back to input buffer.
}
// Do we need to convert 16-bit to 8-bit?
if (radioSampleBits == 8) {
QByteArray inPacket((int)packet.data.length() / 2, (char)0xff);
qint16* in = (qint16*)packet.data.data();
for (int f = 0; f < inPacket.length(); f++)
{
quint8 outdata = 0;
if (isUlaw) {
qint16 enc = qFromLittleEndian<quint16>(in + f);
if (enc >= 0)
outdata = ulaw_encode[enc];
else
outdata = 0x7f & ulaw_encode[-enc];
2021-02-27 13:43:53 +00:00
}
else {
2021-05-27 12:54:52 +00:00
outdata = (quint8)(((qFromLittleEndian<qint16>(in + f) >> 8) ^ 0x80) & 0xff);
2021-02-27 13:43:53 +00:00
}
2021-05-27 12:54:52 +00:00
inPacket[f] = (char)outdata;
2021-02-27 13:43:53 +00:00
}
2021-05-27 12:54:52 +00:00
packet.data.clear();
packet.data = inPacket; // Copy output packet back to input buffer.
2021-02-27 09:34:56 +00:00
}
2021-05-27 12:54:52 +00:00
ret = packet.data;
2021-02-27 09:34:56 +00:00
}
2021-05-27 12:54:52 +00:00
2021-05-23 15:09:41 +00:00
return;
2021-05-27 12:54:52 +00:00
2021-02-12 20:42:56 +00:00
}
2021-05-23 15:09:41 +00:00
2021-02-11 19:18:35 +00:00