1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-18 21:58:37 -04:00

Deep redesign: Changed Funcube read block from 8192 to 2048 bytes to fix fluidity problem

This commit is contained in:
f4exb
2015-08-27 08:31:02 +02:00
parent 30b51b5888
commit f4f9a74269
8 changed files with 13 additions and 13 deletions
+2 -2
View File
@@ -23,7 +23,7 @@
V4LThread::V4LThread(SampleFifo* sampleFifo, double frequency, QObject* parent) :
QThread(parent),
m_running(false),
m_convertBuffer(BLOCKSIZE),
m_convertBuffer(FCD_BLOCKSIZE),
m_sampleFifo(sampleFifo)
{
centerFreq = frequency;
@@ -48,7 +48,7 @@ void V4LThread::run()
return;
while(m_running) {
work(BLOCKSIZE);
work(FCD_BLOCKSIZE);
}
CloseSource();
}