You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.4 KiB
34 lines
1.4 KiB
From 54b34b62eb54385e75fcbde2717b4bac0f7e40d3 Mon Sep 17 00:00:00 2001
|
|
From: Harald Sitter <sitter@kde.org>
|
|
Date: Mon, 11 Nov 2013 16:32:00 +0100
|
|
Subject: [PATCH 5/6] add more explicit debug to setupStreamEnvironment
|
|
|
|
---
|
|
phonon/pulsesupport.cpp | 3 ++-
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/phonon/pulsesupport.cpp b/phonon/pulsesupport.cpp
|
|
index 48c441e..f55d0b4 100644
|
|
--- a/phonon/pulsesupport.cpp
|
|
+++ b/phonon/pulsesupport.cpp
|
|
@@ -1232,7 +1232,7 @@ void PulseSupport::setupStreamEnvironment(QString streamUuid)
|
|
{
|
|
pDebug() << "Please note that your current Phonon backend is trying to force"
|
|
" stream dependent PulseAudio properties through envrionment variables."
|
|
- " Slightly unprecise timing in doing so will prevent the first"
|
|
+ " Slightly unprecise timing in doing so will cause the first"
|
|
" of two subsequently started AudioOutputs to have disfunct volume"
|
|
" control. Also see https://bugs.kde.org/show_bug.cgi?id=321288";
|
|
|
|
@@ -1241,6 +1241,7 @@ void PulseSupport::setupStreamEnvironment(QString streamUuid)
|
|
QHashIterator<QString, QString> it(properties);
|
|
while (it.hasNext()) {
|
|
it.next();
|
|
+ pDebug() << "PULSE_PROP_OVERRIDE_" << it.key() << " = " << it.value();
|
|
qputenv(QString("PULSE_PROP_OVERRIDE_%1").arg(it.key()).toUtf8(), it.value().toUtf8());
|
|
}
|
|
}
|
|
--
|
|
1.8.4.2
|
|
|