Ref T730, increase buffer size to avoid buffer issues (temp workaround)

see https://discordapp.com/channels/539048679160676382/623947987822837779/628874110973247499
This commit is contained in:
Klaus Basan
2019-10-03 00:06:33 +02:00
committed by Mat Sutcliffe
parent 37a5da4e04
commit fee8852762

View File

@@ -48,7 +48,8 @@ namespace BlackSound
CResourceSound m_resourceSound;
qint64 m_position = 0;
const int m_tempBufferSize = 9600; //9600 = 200ms
// const int m_tempBufferSize = 9600; //9600 = 200ms
const int m_tempBufferSize = 24000; //24000 = 500ms (avoid "
QVector<float> m_tempBuffer;
bool m_isFinished = false;
};