audio_core: No longer stall when sink queue is full

Now the audout and audren update rates are tied to the sink status stalling is no longer necessary.
This commit is contained in:
Billy Laws
2023-03-26 20:21:04 +01:00
parent 237934b736
commit 530fe24768
4 changed files with 1 additions and 64 deletions

View File

@ -88,7 +88,6 @@ public:
* Finalize the sink stream.
*/
void Finalize() override {
Unstall();
if (device == 0) {
return;
}
@ -116,7 +115,6 @@ public:
* Stop the sink stream.
*/
void Stop() override {
Unstall();
if (device == 0 || paused) {
return;
}