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
@@ -194,8 +194,8 @@ void RemoteSourceWorker::processData()
int RemoteSourceWorker::getDataSocketBufferSize(uint32_t inSampleRate)
{
// set a floor value at 24 kS/s
uint32_t samplerate = inSampleRate < 24000 ? 24000 : inSampleRate;
// set a floor value at 96 kS/s
uint32_t samplerate = inSampleRate < 96000 ? 96000 : inSampleRate;
// 250 ms (1/4s) at current sample rate
int bufferSize = (samplerate * 2 * (SDR_RX_SAMP_SZ == 16 ? 2 : 4)) / 4;
qDebug("RemoteSourceWorker::getDataSocketBufferSize: %d bytes", bufferSize);