feat: Add pipewire backend

> only for testing current bmsound_wine implementation wine-side
This commit is contained in:
[ ]
2023-10-02 23:51:45 +09:00
parent 15cd228b8d
commit f6f62e0e9d
6 changed files with 171 additions and 1 deletions
+3
View File
@@ -11,6 +11,7 @@ namespace hooks::audio {
enum class Backend {
Asio,
WaveOut,
Pipewire,
None
};
@@ -28,6 +29,8 @@ namespace hooks::audio {
return Backend::Asio;
} else if (_stricmp(value, "waveout") == 0) {
return Backend::WaveOut;
} else if (_stricmp(value, "pipewire") == 0) {
return Backend::Pipewire;
} else if (_stricmp(value, "none") == 0) {
return Backend::None;
}