Remove build date from version information

This commit is contained in:
badaix 2021-01-28 11:26:14 +01:00
parent c46f138ea7
commit fa7340a9bc
9 changed files with 9 additions and 9 deletions

View file

@ -97,7 +97,7 @@ void PosixStream::do_read()
// no data available, fill with silence
memset(chunk_->payload + len, 0, toRead - len);
// avoid overflow after 186min 24s silence (at 48000:16:2)
// avoid overflow after 186min 24s silence (at 48000:16:2)
if (idle_bytes_ <= max_idle_bytes_)
idle_bytes_ += toRead - len;
break;