- fixes + correct decode of DTX/CNG periods

This commit is contained in:
2026-01-11 17:48:42 +03:00
parent fba022c7f6
commit f650eaccb7
5 changed files with 300 additions and 261 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ void SingleAudioStream::copyPcmTo(Audio::DataWindow& output, int needed)
{
while (output.filled() < needed)
{
if (mReceiver.getAudio(output) != AudioReceiver::DecodeResult_Ok)
if (mReceiver.getAudio(output, {}) != AudioReceiver::DecodeResult_Ok)
break;
}