1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-01 13:47:01 -04:00

Remote source/input: increase minimum UDP buffer size based on 96 kS/s

This commit is contained in:
f4exb
2021-12-18 06:24:47 +01:00
parent 35adc25450
commit 78be244dc6
3 changed files with 5 additions and 5 deletions
@@ -453,8 +453,8 @@ bool RemoteInputUDPHandler::handleMessage(const Message& cmd)
int RemoteInputUDPHandler::getDataSocketBufferSize()
{
// set a floor value at 24 kS/s
uint32_t samplerate = m_samplerate < 24000 ? 24000 : m_samplerate;
// set a floor value at 96 kS/s
uint32_t samplerate = m_samplerate < 96000 ? 96000 : m_samplerate;
// 250 ms (1/4s) at current sample rate
int bufferSize = (samplerate * 2 * (SDR_RX_SAMP_SZ == 16 ? 2 : 4)) / 4;
qDebug("RemoteInputUDPHandler::getDataSocketBufferSize: %d bytes", bufferSize);