diff options
| author | Andrey Lihatskiy <alihatskiy@productengine.com> | 2024-06-04 19:38:30 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-04 19:38:30 +0300 |
| commit | 2bf01f80edc28ec998cab0adf3b20e9e7f7f0c4e (patch) | |
| tree | 359f25aa46d16b04ce679deeda959cc5654aeb59 /indra/llplugin/llpluginclassmedia.cpp | |
| parent | 854bed5c171c75c97df7e58286f2350879e5c0be (diff) | |
| parent | f649f7ab2308047dc4a8ca3cbc331aed957543ff (diff) | |
Merge pull request #1265 from makidoll/pipewire-linux-volume-catcher
Add PipeWire as option for Linux volume catcher
Diffstat (limited to 'indra/llplugin/llpluginclassmedia.cpp')
| -rw-r--r-- | indra/llplugin/llpluginclassmedia.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/indra/llplugin/llpluginclassmedia.cpp b/indra/llplugin/llpluginclassmedia.cpp index 5857ee32e7..4e5013ec8f 100644 --- a/indra/llplugin/llpluginclassmedia.cpp +++ b/indra/llplugin/llpluginclassmedia.cpp @@ -981,6 +981,15 @@ void LLPluginClassMedia::enableMediaPluginDebugging( bool enable ) sendMessage( message ); } +#if LL_LINUX +void LLPluginClassMedia::enablePipeWireVolumeCatcher( bool enable ) +{ + LLPluginMessage message(LLPLUGIN_MESSAGE_CLASS_MEDIA, "enable_pipewire_volume_catcher"); + message.setValueBoolean( "enable", enable ); + sendMessage( message ); +} +#endif + void LLPluginClassMedia::setTarget(const std::string &target) { mTarget = target; |
