More work

This commit is contained in:
AlexandreRouma
2022-06-21 17:24:48 +02:00
parent 834890b69a
commit f7c566f652
17 changed files with 519 additions and 218 deletions

View File

@ -17,7 +17,7 @@ namespace dsp::sink {
int count = base_type::_in->read();
if (count < 0) { return -1; }
if (data.write(_in->readBuf, count) < 0) { return -1; }
if (data.write(base_type::_in->readBuf, count) < 0) { return -1; }
base_type::_in->flush();
return count;