Dummy transmit needs a delay.

pull/1/head
John Greb 2015-07-13 18:19:39 +01:00
rodzic a7b03987f3
commit c855e7075b
1 zmienionych plików z 2 dodań i 0 usunięć

Wyświetl plik

@ -2283,11 +2283,13 @@ void SoundIP::Abort(unsigned unused)
size_t SoundIP::Write(double* buf, size_t count)
{
MilliSleep((long)ceil((1e3 * count) / resamplerate));
return count;
}
size_t SoundIP::Write_stereo(double* bufleft, double* bufright, size_t count)
{
MilliSleep((long)ceil((1e3 * count) / resamplerate));
return count;
}