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:
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user