mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-23 00:18:37 -05:00
SDRdaemon plugin: fixed buffer issues
This commit is contained in:
parent
6b16222792
commit
33a196e4aa
@ -16,11 +16,15 @@
|
|||||||
|
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
#include <cstring>
|
#include <cstring>
|
||||||
|
#include <cstdlib>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include "sdrdaemonbuffer.h"
|
#include "sdrdaemonbuffer.h"
|
||||||
|
|
||||||
SDRdaemonBuffer::SDRdaemonBuffer(uint32_t blockSize, uint32_t rateDivider) :
|
const int SDRdaemonBuffer::m_udpPayloadSize = 512;
|
||||||
m_blockSize(blockSize),
|
const int SDRdaemonBuffer::m_sampleSize = 2;
|
||||||
|
const int SDRdaemonBuffer::m_iqSampleSize = 2 * m_sampleSize;
|
||||||
|
|
||||||
|
SDRdaemonBuffer::SDRdaemonBuffer(uint32_t rateDivider) :
|
||||||
m_rateDivider(rateDivider),
|
m_rateDivider(rateDivider),
|
||||||
m_sync(false),
|
m_sync(false),
|
||||||
m_lz4(false),
|
m_lz4(false),
|
||||||
@ -37,11 +41,10 @@ SDRdaemonBuffer::SDRdaemonBuffer(uint32_t blockSize, uint32_t rateDivider) :
|
|||||||
m_sampleRate(1000000),
|
m_sampleRate(1000000),
|
||||||
m_sampleBytes(2),
|
m_sampleBytes(2),
|
||||||
m_sampleBits(12),
|
m_sampleBits(12),
|
||||||
m_writeCount(0),
|
m_writeIndex(0),
|
||||||
m_readCount(0),
|
m_readChunkIndex(0),
|
||||||
m_rawSize(0),
|
m_rawSize(0),
|
||||||
m_rawBuffer(0),
|
m_rawBuffer(0),
|
||||||
m_chunkBuffer(0),
|
|
||||||
m_bytesInBlock(0),
|
m_bytesInBlock(0),
|
||||||
m_nbBlocks(0)
|
m_nbBlocks(0)
|
||||||
{
|
{
|
||||||
@ -61,10 +64,6 @@ SDRdaemonBuffer::~SDRdaemonBuffer()
|
|||||||
if (m_lz4OutBuffer) {
|
if (m_lz4OutBuffer) {
|
||||||
delete[] m_lz4OutBuffer;
|
delete[] m_lz4OutBuffer;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (m_chunkBuffer) {
|
|
||||||
delete[] m_chunkBuffer;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool SDRdaemonBuffer::readMeta(char *array, uint32_t length)
|
bool SDRdaemonBuffer::readMeta(char *array, uint32_t length)
|
||||||
@ -87,10 +86,10 @@ bool SDRdaemonBuffer::readMeta(char *array, uint32_t length)
|
|||||||
m_currentMeta = *metaData;
|
m_currentMeta = *metaData;
|
||||||
|
|
||||||
// sanity checks
|
// sanity checks
|
||||||
if (metaData->m_blockSize == m_blockSize) // sent blocksize matches given blocksize
|
if (metaData->m_blockSize == m_udpPayloadSize) // sent blocksize matches given blocksize
|
||||||
{
|
{
|
||||||
m_sampleBytes = metaData->m_sampleBytes & 0x0F;
|
m_sampleBytes = metaData->m_sampleBytes & 0x0F;
|
||||||
uint32_t frameSize = 2 * 2 * metaData->m_nbSamples * metaData->m_nbBlocks;
|
uint32_t frameSize = m_iqSampleSize * metaData->m_nbSamples * metaData->m_nbBlocks;
|
||||||
uint32_t sampleRate = metaData->m_sampleRate;
|
uint32_t sampleRate = metaData->m_sampleRate;
|
||||||
|
|
||||||
if (metaData->m_sampleBytes & 0x10)
|
if (metaData->m_sampleBytes & 0x10)
|
||||||
@ -109,9 +108,9 @@ bool SDRdaemonBuffer::readMeta(char *array, uint32_t length)
|
|||||||
m_lz4 = false;
|
m_lz4 = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (frameSize != m_frameSize)
|
if (sampleRate != m_sampleRate)
|
||||||
{
|
{
|
||||||
updateBufferSize(sampleRate, frameSize);
|
updateBufferSize(sampleRate);
|
||||||
}
|
}
|
||||||
|
|
||||||
m_sampleRate = sampleRate;
|
m_sampleRate = sampleRate;
|
||||||
@ -182,7 +181,7 @@ void SDRdaemonBuffer::writeDataLZ4(const char *array, uint32_t length)
|
|||||||
m_nbCRCOK++;
|
m_nbCRCOK++;
|
||||||
}
|
}
|
||||||
|
|
||||||
int compressedSize = LZ4_decompress_fast((const char*) m_lz4InBuffer, (char*) &m_rawBuffer[m_writeCount], m_frameSize);
|
int compressedSize = LZ4_decompress_fast((const char*) m_lz4InBuffer, (char*) &m_rawBuffer[m_writeIndex], m_frameSize);
|
||||||
m_nbDecodes++;
|
m_nbDecodes++;
|
||||||
|
|
||||||
if (compressedSize == m_lz4InSize)
|
if (compressedSize == m_lz4InSize)
|
||||||
@ -199,16 +198,16 @@ void SDRdaemonBuffer::writeDataLZ4(const char *array, uint32_t length)
|
|||||||
void SDRdaemonBuffer::writeToRawBufferUncompressed(const char *array, uint32_t length)
|
void SDRdaemonBuffer::writeToRawBufferUncompressed(const char *array, uint32_t length)
|
||||||
{
|
{
|
||||||
// TODO: handle the 1 byte per I or Q sample
|
// TODO: handle the 1 byte per I or Q sample
|
||||||
if (m_writeCount + length < m_rawSize)
|
if (m_writeIndex + length < m_rawSize)
|
||||||
{
|
{
|
||||||
std::memcpy((void *) &m_rawBuffer[m_writeCount], (const void *) array, length);
|
std::memcpy((void *) &m_rawBuffer[m_writeIndex], (const void *) array, length);
|
||||||
m_writeCount += length;
|
m_writeIndex += length;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
std::memcpy((void *) &m_rawBuffer[m_writeCount], (const void *) array, m_rawSize - m_writeCount);
|
std::memcpy((void *) &m_rawBuffer[m_writeIndex], (const void *) array, m_rawSize - m_writeIndex);
|
||||||
m_writeCount = length - (m_rawSize - m_writeCount);
|
m_writeIndex = length - (m_rawSize - m_writeIndex);
|
||||||
std::memcpy((void *) m_rawBuffer, (const void *) &array[m_rawSize - m_writeCount], m_writeCount);
|
std::memcpy((void *) m_rawBuffer, (const void *) &array[m_rawSize - m_writeIndex], m_writeIndex);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -225,27 +224,26 @@ void SDRdaemonBuffer::writeToRawBufferLZ4(const char *array, uint32_t length)
|
|||||||
writeToRawBufferUncompressed((const char *) m_lz4OutBuffer, m_frameSize);
|
writeToRawBufferUncompressed((const char *) m_lz4OutBuffer, m_frameSize);
|
||||||
}
|
}
|
||||||
|
|
||||||
uint8_t *SDRdaemonBuffer::readData(uint32_t length)
|
uint8_t *SDRdaemonBuffer::readDataChunk()
|
||||||
{
|
{
|
||||||
if (m_readCount + length < m_rawSize)
|
// relies on the fact that we always have an integer number of chunks in the raw buffer
|
||||||
|
|
||||||
|
if (m_readChunkIndex == m_rateDivider * 2) // go back to start or middle of raw buffer
|
||||||
{
|
{
|
||||||
uint32_t readCount = m_readCount;
|
// make sure the read and write pointers are not in the same half of the raw buffer
|
||||||
m_readCount += length;
|
if (m_writeIndex < m_rateDivider * m_chunkSize - 1)
|
||||||
return &m_rawBuffer[readCount];
|
{
|
||||||
}
|
m_readChunkIndex = m_rateDivider; // go to middle
|
||||||
//else if (m_readCount > 0)
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (length > m_chunkSize) {
|
m_readChunkIndex = 0; // go to start
|
||||||
qDebug("SDRdaemonBuffer::readData: length: %d", length);
|
|
||||||
}
|
}
|
||||||
uint32_t retLength = std::min(length, m_chunkSize);
|
|
||||||
//uint32_t retLength = length;
|
|
||||||
std::memcpy((void *) m_chunkBuffer, (const void *) &m_rawBuffer[m_readCount], m_rawSize - m_readCount); // read last bit from raw buffer
|
|
||||||
m_readCount = retLength - (m_rawSize - m_readCount);
|
|
||||||
std::memcpy((void *) &m_chunkBuffer[m_rawSize - m_readCount], (const void *) m_rawBuffer, m_readCount); // read the rest at start of raw buffer
|
|
||||||
return m_chunkBuffer;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
uint32_t readIndex = m_readChunkIndex;
|
||||||
|
m_readChunkIndex++;
|
||||||
|
return &m_rawBuffer[readIndex * m_chunkSize];
|
||||||
}
|
}
|
||||||
|
|
||||||
void SDRdaemonBuffer::updateLZ4Sizes(uint32_t frameSize)
|
void SDRdaemonBuffer::updateLZ4Sizes(uint32_t frameSize)
|
||||||
@ -265,35 +263,34 @@ void SDRdaemonBuffer::updateLZ4Sizes(uint32_t frameSize)
|
|||||||
m_lz4OutBuffer = new uint8_t[frameSize];
|
m_lz4OutBuffer = new uint8_t[frameSize];
|
||||||
}
|
}
|
||||||
|
|
||||||
void SDRdaemonBuffer::updateBufferSize(uint32_t sampleRate, uint32_t frameSize)
|
void SDRdaemonBuffer::updateBufferSize(uint32_t sampleRate)
|
||||||
{
|
{
|
||||||
uint32_t nbFrames = ((sampleRate * 2 * 2) / frameSize) + 1; // store at least 1 second of samples
|
assert(sampleRate % m_rateDivider == 0); // make sure we get an integer number of samples in a chunk
|
||||||
|
|
||||||
std::cerr << "SDRdaemonBuffer::updateBufferSize:"
|
// Store 2 seconds long of samples so we have two one second long half buffers
|
||||||
<< " sampleRate: " << sampleRate
|
m_chunkSize = (sampleRate * m_iqSampleSize) / m_rateDivider;
|
||||||
<< " frameSize: " << frameSize
|
m_rawSize = m_chunkSize * m_rateDivider * 2;
|
||||||
<< " nbFrames: " << nbFrames
|
|
||||||
<< std::endl;
|
|
||||||
|
|
||||||
if (m_rawBuffer) {
|
if (m_rawBuffer) {
|
||||||
delete[] m_rawBuffer;
|
delete[] m_rawBuffer;
|
||||||
}
|
}
|
||||||
|
|
||||||
m_rawSize = nbFrames * frameSize;
|
|
||||||
m_rawBuffer = new uint8_t[m_rawSize];
|
m_rawBuffer = new uint8_t[m_rawSize];
|
||||||
|
|
||||||
if (m_chunkBuffer) {
|
m_writeIndex = 0;
|
||||||
delete[] m_chunkBuffer;
|
m_readChunkIndex = m_rateDivider;
|
||||||
}
|
|
||||||
|
|
||||||
m_chunkSize = (sampleRate * 2 * 2) / m_rateDivider;
|
std::cerr << "SDRdaemonBuffer::updateBufferSize:"
|
||||||
m_chunkBuffer = new uint8_t[m_chunkSize];
|
<< " sampleRate: " << sampleRate
|
||||||
|
<< " m_chunkSize: " << m_chunkSize
|
||||||
|
<< " m_rawSize: " << m_rawSize
|
||||||
|
<< std::endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
void SDRdaemonBuffer::updateBlockCounts(uint32_t nbBytesReceived)
|
void SDRdaemonBuffer::updateBlockCounts(uint32_t nbBytesReceived)
|
||||||
{
|
{
|
||||||
m_nbBlocks += m_bytesInBlock + nbBytesReceived > m_blockSize ? 1 : 0;
|
m_nbBlocks += m_bytesInBlock + nbBytesReceived > m_udpPayloadSize ? 1 : 0;
|
||||||
m_bytesInBlock = m_bytesInBlock + nbBytesReceived > m_blockSize ? nbBytesReceived : m_bytesInBlock + nbBytesReceived;
|
m_bytesInBlock = m_bytesInBlock + nbBytesReceived > m_udpPayloadSize ? nbBytesReceived : m_bytesInBlock + nbBytesReceived;
|
||||||
}
|
}
|
||||||
|
|
||||||
void SDRdaemonBuffer::printMeta(MetaData *metaData)
|
void SDRdaemonBuffer::printMeta(MetaData *metaData)
|
||||||
|
@ -61,24 +61,27 @@ public:
|
|||||||
};
|
};
|
||||||
#pragma pack(pop)
|
#pragma pack(pop)
|
||||||
|
|
||||||
SDRdaemonBuffer(uint32_t blockSize, uint32_t rateDivider);
|
SDRdaemonBuffer(uint32_t rateDivider);
|
||||||
~SDRdaemonBuffer();
|
~SDRdaemonBuffer();
|
||||||
bool readMeta(char *array, uint32_t length); //!< Attempt to read meta. Returns true if meta block
|
bool readMeta(char *array, uint32_t length); //!< Attempt to read meta. Returns true if meta block
|
||||||
void writeData(char *array, uint32_t length); //!< Write data into buffer.
|
void writeData(char *array, uint32_t length); //!< Write data into buffer.
|
||||||
uint8_t *readData(uint32_t length); //!< Read data from buffer
|
uint8_t *readDataChunk(); //!< Read a chunk of data from buffer
|
||||||
const MetaData& getCurrentMeta() const { return m_currentMeta; }
|
const MetaData& getCurrentMeta() const { return m_currentMeta; }
|
||||||
void updateBlockCounts(uint32_t nbBytesReceived);
|
void updateBlockCounts(uint32_t nbBytesReceived);
|
||||||
bool isSync() const { return m_sync; }
|
bool isSync() const { return m_sync; }
|
||||||
|
|
||||||
|
static const int m_udpPayloadSize;
|
||||||
|
static const int m_sampleSize;
|
||||||
|
static const int m_iqSampleSize;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void updateLZ4Sizes(uint32_t frameSize);
|
void updateLZ4Sizes(uint32_t frameSize);
|
||||||
void writeDataLZ4(const char *array, uint32_t length);
|
void writeDataLZ4(const char *array, uint32_t length);
|
||||||
void writeToRawBufferLZ4(const char *array, uint32_t originalLength);
|
void writeToRawBufferLZ4(const char *array, uint32_t originalLength);
|
||||||
void writeToRawBufferUncompressed(const char *array, uint32_t length);
|
void writeToRawBufferUncompressed(const char *array, uint32_t length);
|
||||||
void updateBufferSize(uint32_t sampleRate, uint32_t frameSize);
|
void updateBufferSize(uint32_t sampleRate);
|
||||||
void printMeta(MetaData *metaData);
|
void printMeta(MetaData *metaData);
|
||||||
|
|
||||||
uint32_t m_blockSize; //!< UDP block (payload) size
|
|
||||||
uint32_t m_rateDivider; //!< Number of times per seconds the samples are fetched
|
uint32_t m_rateDivider; //!< Number of times per seconds the samples are fetched
|
||||||
bool m_sync; //!< Meta data acquired (Stream synchronized)
|
bool m_sync; //!< Meta data acquired (Stream synchronized)
|
||||||
bool m_lz4; //!< Stream is compressed with LZ4
|
bool m_lz4; //!< Stream is compressed with LZ4
|
||||||
@ -100,11 +103,10 @@ private:
|
|||||||
uint8_t m_sampleBytes; //!< Current number of bytes per I or Q sample
|
uint8_t m_sampleBytes; //!< Current number of bytes per I or Q sample
|
||||||
uint8_t m_sampleBits; //!< Current number of effective bits per sample
|
uint8_t m_sampleBits; //!< Current number of effective bits per sample
|
||||||
|
|
||||||
uint32_t m_writeCount; //!< Current write position in the raw samples buffer
|
uint32_t m_writeIndex; //!< Current write position in the raw samples buffer
|
||||||
uint32_t m_readCount; //!< Current read position in the raw samples buffer
|
uint32_t m_readChunkIndex; //!< Current read chunk index in the raw samples buffer
|
||||||
uint32_t m_rawSize; //!< Size of the raw samples buffer in bytes
|
uint32_t m_rawSize; //!< Size of the raw samples buffer in bytes
|
||||||
uint8_t *m_rawBuffer; //!< Buffer for raw samples obtained from UDP (I/Q not in a formal I/Q structure)
|
uint8_t *m_rawBuffer; //!< Buffer for raw samples obtained from UDP (I/Q not in a formal I/Q structure)
|
||||||
uint8_t *m_chunkBuffer; //!< Buffer to build a chunk length of raw samples
|
|
||||||
uint32_t m_chunkSize; //!< Size of a chunk of samples in bytes
|
uint32_t m_chunkSize; //!< Size of a chunk of samples in bytes
|
||||||
uint32_t m_bytesInBlock; //!< Number of bytes received in the current UDP block
|
uint32_t m_bytesInBlock; //!< Number of bytes received in the current UDP block
|
||||||
uint32_t m_nbBlocks; //!< Number of UDP blocks received in the current frame
|
uint32_t m_nbBlocks; //!< Number of UDP blocks received in the current frame
|
||||||
|
@ -23,19 +23,16 @@
|
|||||||
#include "sdrdaemoninput.h"
|
#include "sdrdaemoninput.h"
|
||||||
|
|
||||||
const int SDRdaemonUDPHandler::m_rateDivider = 1000/SDRDAEMON_THROTTLE_MS;
|
const int SDRdaemonUDPHandler::m_rateDivider = 1000/SDRDAEMON_THROTTLE_MS;
|
||||||
const int SDRdaemonUDPHandler::m_udpPayloadSize = 512;
|
|
||||||
|
|
||||||
SDRdaemonUDPHandler::SDRdaemonUDPHandler(SampleFifo *sampleFifo, MessageQueue *outputMessageQueueToGUI) :
|
SDRdaemonUDPHandler::SDRdaemonUDPHandler(SampleFifo *sampleFifo, MessageQueue *outputMessageQueueToGUI) :
|
||||||
//m_mutex(QMutex::Recursive),
|
//m_mutex(QMutex::Recursive),
|
||||||
m_sdrDaemonBuffer(m_udpPayloadSize, m_rateDivider),
|
m_sdrDaemonBuffer(m_rateDivider),
|
||||||
m_dataSocket(0),
|
m_dataSocket(0),
|
||||||
m_dataAddress(QHostAddress::LocalHost),
|
m_dataAddress(QHostAddress::LocalHost),
|
||||||
m_dataPort(9090),
|
m_dataPort(9090),
|
||||||
m_dataConnected(false),
|
m_dataConnected(false),
|
||||||
m_udpBuf(0),
|
m_udpBuf(0),
|
||||||
m_udpReadBytes(0),
|
m_udpReadBytes(0),
|
||||||
m_buf(0),
|
|
||||||
m_bufsize(0),
|
|
||||||
m_chunksize(0),
|
m_chunksize(0),
|
||||||
m_sampleFifo(sampleFifo),
|
m_sampleFifo(sampleFifo),
|
||||||
m_samplerate(0),
|
m_samplerate(0),
|
||||||
@ -46,7 +43,7 @@ SDRdaemonUDPHandler::SDRdaemonUDPHandler(SampleFifo *sampleFifo, MessageQueue *o
|
|||||||
m_tickCount(0),
|
m_tickCount(0),
|
||||||
m_samplesCount(0)
|
m_samplesCount(0)
|
||||||
{
|
{
|
||||||
m_udpBuf = new char[m_udpPayloadSize];
|
m_udpBuf = new char[SDRdaemonBuffer::m_udpPayloadSize];
|
||||||
}
|
}
|
||||||
|
|
||||||
SDRdaemonUDPHandler::~SDRdaemonUDPHandler()
|
SDRdaemonUDPHandler::~SDRdaemonUDPHandler()
|
||||||
@ -169,20 +166,11 @@ void SDRdaemonUDPHandler::setSamplerate(uint32_t samplerate)
|
|||||||
//QMutexLocker ml(&m_mutex);
|
//QMutexLocker ml(&m_mutex);
|
||||||
|
|
||||||
m_samplerate = samplerate;
|
m_samplerate = samplerate;
|
||||||
m_chunksize = (m_samplerate / m_rateDivider)*4; // TODO: implement FF and slow motion here. 4 corresponds to live. 2 is half speed, 8 is doulbe speed
|
m_chunksize = (m_samplerate / m_rateDivider) * SDRdaemonBuffer::m_iqSampleSize;
|
||||||
m_bufsize = m_chunksize;
|
|
||||||
|
|
||||||
if (m_buf == 0) {
|
|
||||||
qDebug() << " - Allocate buffer";
|
|
||||||
m_buf = (quint8*) malloc(m_bufsize);
|
|
||||||
} else {
|
|
||||||
qDebug() << " - Re-allocate buffer";
|
|
||||||
m_buf = (quint8*) realloc((void*) m_buf, m_bufsize);
|
|
||||||
}
|
|
||||||
|
|
||||||
qDebug() << "SDRdaemonUDPHandler::setSamplerate:"
|
qDebug() << "SDRdaemonUDPHandler::setSamplerate:"
|
||||||
<< " size: " << m_bufsize
|
<< " chunk size: " << m_chunksize
|
||||||
<< " #samples: " << (m_bufsize/4);
|
<< " #samples per chunk: " << (m_chunksize/SDRdaemonBuffer::m_iqSampleSize);
|
||||||
}
|
}
|
||||||
|
|
||||||
void SDRdaemonUDPHandler::connectTimer(const QTimer& timer)
|
void SDRdaemonUDPHandler::connectTimer(const QTimer& timer)
|
||||||
@ -194,8 +182,8 @@ void SDRdaemonUDPHandler::connectTimer(const QTimer& timer)
|
|||||||
void SDRdaemonUDPHandler::tick()
|
void SDRdaemonUDPHandler::tick()
|
||||||
{
|
{
|
||||||
// read samples directly feeding the SampleFifo (no callback)
|
// read samples directly feeding the SampleFifo (no callback)
|
||||||
m_sampleFifo->write(reinterpret_cast<quint8*>(m_sdrDaemonBuffer.readData(m_chunksize)), m_chunksize);
|
m_sampleFifo->write(reinterpret_cast<quint8*>(m_sdrDaemonBuffer.readDataChunk()), m_chunksize);
|
||||||
m_samplesCount += m_chunksize / 4;
|
m_samplesCount += m_chunksize / SDRdaemonBuffer::m_iqSampleSize;
|
||||||
|
|
||||||
if (m_tickCount < m_rateDivider)
|
if (m_tickCount < m_rateDivider)
|
||||||
{
|
{
|
||||||
|
@ -55,8 +55,6 @@ private:
|
|||||||
bool m_dataConnected;
|
bool m_dataConnected;
|
||||||
char *m_udpBuf;
|
char *m_udpBuf;
|
||||||
qint64 m_udpReadBytes;
|
qint64 m_udpReadBytes;
|
||||||
quint8 *m_buf;
|
|
||||||
std::size_t m_bufsize;
|
|
||||||
std::size_t m_chunksize;
|
std::size_t m_chunksize;
|
||||||
SampleFifo *m_sampleFifo;
|
SampleFifo *m_sampleFifo;
|
||||||
uint32_t m_samplerate;
|
uint32_t m_samplerate;
|
||||||
@ -68,7 +66,6 @@ private:
|
|||||||
std::size_t m_samplesCount;
|
std::size_t m_samplesCount;
|
||||||
|
|
||||||
static const int m_rateDivider;
|
static const int m_rateDivider;
|
||||||
static const int m_udpPayloadSize;
|
|
||||||
|
|
||||||
void setSamplerate(uint32_t samplerate);
|
void setSamplerate(uint32_t samplerate);
|
||||||
void processData();
|
void processData();
|
||||||
|
Loading…
Reference in New Issue
Block a user