Audio: Correct buffer release for host timing.

This commit is contained in:
Fernando Sahmkow 2020-05-29 17:37:57 -04:00
parent 7fd7d05838
commit e3d561fb84
3 changed files with 22 additions and 1 deletions

View file

@ -72,6 +72,11 @@ public:
this->is_multicore = is_multicore;
}
/// Check if it's using host timing.
bool IsHostTiming() const {
return is_multicore;
}
/// Pauses/Unpauses the execution of the timer thread.
void Pause(bool is_paused);