Commit 5f656dff authored by Max Kellermann's avatar Max Kellermann

output/wasapi: implement Cancel()

parent 34d4d915
......@@ -258,6 +258,7 @@ public:
std::chrono::steady_clock::duration Delay() const noexcept override;
size_t Play(const void *chunk, size_t size) override;
void Drain() override;
void Cancel() noexcept override;
bool Pause() override;
void Interrupt() noexcept override;
......@@ -664,6 +665,14 @@ WasapiOutput::Drain()
thread->CheckException();
}
void
WasapiOutput::Cancel() noexcept
{
assert(thread);
thread->spsc_buffer.consume_all([](auto &&) {});
}
/// run inside COMWorkerThread
void
WasapiOutput::OpenDevice()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment