1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-02-03 09:44:01 -05:00

DSD demod: DV serial support: set audio buffer length to 1s (48000 samples)

This commit is contained in:
f4exb 2016-05-09 23:02:48 +02:00
parent ee57833305
commit 6d703a9730

View File

@ -30,7 +30,7 @@ DVSerialWorker::DVSerialWorker() :
m_upsamplerLastValue(0),
m_phase(0)
{
m_audioBuffer.resize(1<<14);
m_audioBuffer.resize(48000);
m_audioBufferFill = 0;
}