Commit e55de6e9 authored by Max Kellermann's avatar Max Kellermann

output/pipewire: implement Drain()

parent cfaf2ed0
...@@ -58,6 +58,7 @@ class PipeWireOutput final : AudioOutput { ...@@ -58,6 +58,7 @@ class PipeWireOutput final : AudioOutput {
bool disconnected; bool disconnected;
bool interrupted; bool interrupted;
bool drained;
explicit PipeWireOutput(const ConfigBlock &block); explicit PipeWireOutput(const ConfigBlock &block);
...@@ -74,6 +75,7 @@ public: ...@@ -74,6 +75,7 @@ public:
events.version = PW_VERSION_STREAM_EVENTS; events.version = PW_VERSION_STREAM_EVENTS;
events.state_changed = StateChanged; events.state_changed = StateChanged;
events.process = Process; events.process = Process;
events.drained = Drained;
return events; return events;
} }
...@@ -107,6 +109,16 @@ private: ...@@ -107,6 +109,16 @@ private:
o.Process(); o.Process();
} }
void Drained() noexcept {
drained = true;
pw_thread_loop_signal(thread_loop, false);
}
static void Drained(void *data) noexcept {
auto &o = *(PipeWireOutput *)data;
o.Drained();
}
/* virtual methods from class AudioOutput */ /* virtual methods from class AudioOutput */
void Enable() override; void Enable() override;
void Disable() noexcept override; void Disable() noexcept override;
...@@ -125,8 +137,8 @@ private: ...@@ -125,8 +137,8 @@ private:
size_t Play(const void *chunk, size_t size) override; size_t Play(const void *chunk, size_t size) override;
// TODO: void Drain() override; void Drain() override;
void Cancel() noexcept override; void Cancel() noexcept override;
// TODO: bool Pause() noexcept override; // TODO: bool Pause() noexcept override;
}; };
...@@ -211,6 +223,7 @@ void ...@@ -211,6 +223,7 @@ void
PipeWireOutput::Open(AudioFormat &audio_format) PipeWireOutput::Open(AudioFormat &audio_format)
{ {
disconnected = false; disconnected = false;
drained = true;
auto props = pw_properties_new(PW_KEY_MEDIA_TYPE, "Audio", auto props = pw_properties_new(PW_KEY_MEDIA_TYPE, "Audio",
PW_KEY_MEDIA_CATEGORY, "Playback", PW_KEY_MEDIA_CATEGORY, "Playback",
...@@ -307,8 +320,10 @@ PipeWireOutput::Play(const void *chunk, size_t size) ...@@ -307,8 +320,10 @@ PipeWireOutput::Play(const void *chunk, size_t size)
std::size_t bytes_written = std::size_t bytes_written =
ring_buffer->push((const std::byte *)chunk, size); ring_buffer->push((const std::byte *)chunk, size);
if (bytes_written > 0) if (bytes_written > 0) {
drained = false;
return bytes_written; return bytes_written;
}
if (interrupted) if (interrupted)
throw AudioOutputInterrupted{}; throw AudioOutputInterrupted{};
...@@ -318,6 +333,17 @@ PipeWireOutput::Play(const void *chunk, size_t size) ...@@ -318,6 +333,17 @@ PipeWireOutput::Play(const void *chunk, size_t size)
} }
void void
PipeWireOutput::Drain()
{
const PipeWire::ThreadLoopLock lock(thread_loop);
while (!drained && !interrupted) {
CheckThrowError();
pw_thread_loop_wait(thread_loop);
}
}
void
PipeWireOutput::Cancel() noexcept PipeWireOutput::Cancel() noexcept
{ {
const PipeWire::ThreadLoopLock lock(thread_loop); const PipeWire::ThreadLoopLock lock(thread_loop);
......
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