diff options
author | Chris Robinson <[email protected]> | 2021-08-06 21:34:17 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2021-08-06 21:38:23 -0700 |
commit | dc9b39f4192b0ab28bdfb2699fbcef591f4cf290 (patch) | |
tree | 56d82160ab861f1ef66a05bed4fb0c188044f4eb /alc/backends/pipewire.h | |
parent | 4cc820bb5c4c3c93ec85fed5a5bf7978b6bd14b1 (diff) |
Implement PipeWire playback
Not yet an auto-selected backend. This doesn't yet support enumeration, or
matching the AL device format to the output.
Diffstat (limited to 'alc/backends/pipewire.h')
-rw-r--r-- | alc/backends/pipewire.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/alc/backends/pipewire.h b/alc/backends/pipewire.h index f8d3d5c2..5f930239 100644 --- a/alc/backends/pipewire.h +++ b/alc/backends/pipewire.h @@ -1,8 +1,12 @@ #ifndef BACKENDS_PIPEWIRE_H #define BACKENDS_PIPEWIRE_H +#include <string> + #include "base.h" +struct DeviceBase; + struct PipeWireBackendFactory final : public BackendFactory { public: bool init() override; |