[pulseaudio-commits] src/pulsecore

David Henningsson diwic at kemper.freedesktop.org
Wed Jan 21 06:11:00 PST 2015


 src/pulsecore/protocol-native.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 34862dbd43079d19faff31fa9ba996acc874d586
Author: David Henningsson <david.henningsson at canonical.com>
Date:   Wed Jan 21 15:06:53 2015 +0100

    protocol-native: Disable srbchannel by default
    
    Recent testing has shown some srbchannel related bugs that
    indicates that the srbchannel feature is not ready to be enabled
    by default.
    
    Therefore, temporary disable it for the 6.0 release and re-enable
    it in git master once 6.0 is released.
    
    Bugs:
    https://bugs.freedesktop.org/show_bug.cgi?id=88452
    https://bugs.freedesktop.org/show_bug.cgi?id=88167
    
    Signed-off-by: David Henningsson <david.henningsson at canonical.com>

diff --git a/src/pulsecore/protocol-native.c b/src/pulsecore/protocol-native.c
index 2059841..f54f2a4 100644
--- a/src/pulsecore/protocol-native.c
+++ b/src/pulsecore/protocol-native.c
@@ -2591,7 +2591,7 @@ static void setup_srbchannel(pa_native_connection *c) {
     int fdlist[2];
 
     if (!c->options->srbchannel) {
-        pa_log_debug("Disabling srbchannel, reason: Disabled by module parameter");
+        pa_log_debug("Disabling srbchannel, reason: Must be enabled by module parameter");
         return;
     }
 
@@ -5325,7 +5325,7 @@ int pa_native_options_parse(pa_native_options *o, pa_core *c, pa_modargs *ma) {
     pa_assert(PA_REFCNT_VALUE(o) >= 1);
     pa_assert(ma);
 
-    o->srbchannel = true;
+    o->srbchannel = false;
     if (pa_modargs_get_value_boolean(ma, "srbchannel", &o->srbchannel) < 0) {
         pa_log("srbchannel= expects a boolean argument.");
         return -1;



More information about the pulseaudio-commits mailing list