From 961607ae8d0e1079a2e2a58d75c4b54102443e63 Mon Sep 17 00:00:00 2001 From: f4exb Date: Sun, 30 Dec 2018 02:06:32 +0100 Subject: [PATCH] XTRX input: set buffer size to 32kS --- plugins/samplesource/xtrxinput/xtrxinputthread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/samplesource/xtrxinput/xtrxinputthread.h b/plugins/samplesource/xtrxinput/xtrxinputthread.h index e2ae68ab1..0a6356a87 100644 --- a/plugins/samplesource/xtrxinput/xtrxinputthread.h +++ b/plugins/samplesource/xtrxinput/xtrxinputthread.h @@ -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 {