1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-28 15:56:33 -04:00

XTRX input: set buffer size to 32kS

This commit is contained in:
f4exb 2018-12-30 02:06:32 +01:00
parent 31a1f32c05
commit 961607ae8d

View File

@ -28,7 +28,7 @@
#include "dsp/decimators.h"
#include "xtrx/devicextrxshared.h"
#define XTRX_BLOCKSIZE (1<<13) //complex samples per buffer
#define XTRX_BLOCKSIZE (1<<15) //complex samples per buffer (was 1<<13)
class XTRXInputThread : public QThread, public DeviceXTRXShared::ThreadInterface
{