summaryrefslogtreecommitdiff
path: root/indra/media_plugins/cef/linux/volume_catcher_linux.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'indra/media_plugins/cef/linux/volume_catcher_linux.cpp')
-rw-r--r--indra/media_plugins/cef/linux/volume_catcher_linux.cpp28
1 files changed, 13 insertions, 15 deletions
diff --git a/indra/media_plugins/cef/linux/volume_catcher_linux.cpp b/indra/media_plugins/cef/linux/volume_catcher_linux.cpp
index 3c037b45ba..439c0a6768 100644
--- a/indra/media_plugins/cef/linux/volume_catcher_linux.cpp
+++ b/indra/media_plugins/cef/linux/volume_catcher_linux.cpp
@@ -32,28 +32,29 @@
VolumeCatcher::VolumeCatcher()
{
- // only init once we receive which implementation to use
-
- // debugClear();
- // debugPrint("init volume catcher\n");
}
-void VolumeCatcher::onEnablePipeWireVolumeCatcher(bool enable) {
+void VolumeCatcher::onEnablePipeWireVolumeCatcher(bool enable)
+{
if (pimpl != nullptr)
return;
- if (enable) {
- // debugPrint("volume catcher using pipewire\n");
+ if (enable)
+ {
+ LL_DEBUGS() << "volume catcher using pipewire" << LL_ENDL;
pimpl = new VolumeCatcherPipeWire();
- } else {
- // debugPrint("volume catcher using pulseaudio\n");
+ }
+ else
+ {
+ LL_DEBUGS() << "volume catcher using pulseaudio" << LL_ENDL;
pimpl = new VolumeCatcherPulseAudio();
}
}
VolumeCatcher::~VolumeCatcher()
{
- if (pimpl != nullptr) {
+ if (pimpl != nullptr)
+ {
delete pimpl;
pimpl = nullptr;
}
@@ -68,15 +69,12 @@ void VolumeCatcher::setVolume(F32 volume)
void VolumeCatcher::setPan(F32 pan)
{
- if (pimpl != nullptr) {
+ if (pimpl != nullptr)
pimpl->setPan(pan);
- }
}
void VolumeCatcher::pump()
{
- if (pimpl != nullptr) {
+ if (pimpl != nullptr)
pimpl->pump();
- }
}
-