[pulseaudio-commits] [SCM] PulseAudio Sound Server branch, master, updated. v0.9.19-237-g721e32b

Lennart Poettering gitmailer-noreply at 0pointer.de
Wed Nov 4 20:18:13 PST 2009


This is an automated email from the git hooks/post-receive script. It was
generated because of a push to the "PulseAudio Sound Server" repository.

The master branch has been updated
      from  38a03c1e4f14ad6edfd0b7d95c8d7440c3a950e2 (commit)

- Log -----------------------------------------------------------------
721e32b jack: never try to autoconnect to MIDI ports
-----------------------------------------------------------------------

Summary of changes:
 src/modules/jack/module-jack-sink.c   |    2 +-
 src/modules/jack/module-jack-source.c |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

-----------------------------------------------------------------------

commit 721e32b473ca821d5551a3d93ac04f84c5988c8f
Author: Lennart Poettering <lennart at poettering.net>
Date:   Thu Nov 5 05:18:10 2009 +0100

    jack: never try to autoconnect to MIDI ports
    
    Original patch supplied by 'adi'
    
    http://pulseaudio.org/ticket/669

diff --git a/src/modules/jack/module-jack-sink.c b/src/modules/jack/module-jack-sink.c
index fc976fa..9f3e071 100644
--- a/src/modules/jack/module-jack-sink.c
+++ b/src/modules/jack/module-jack-sink.c
@@ -334,7 +334,7 @@ int pa__init(pa_module*m) {
         goto fail;
     }
 
-    ports = jack_get_ports(u->client, NULL, NULL, JackPortIsPhysical|JackPortIsInput);
+    ports = jack_get_ports(u->client, NULL, JACK_DEFAULT_AUDIO_TYPE, JackPortIsPhysical|JackPortIsInput);
 
     channels = 0;
     for (p = ports; *p; p++)
diff --git a/src/modules/jack/module-jack-source.c b/src/modules/jack/module-jack-source.c
index a898e0e..6c68527 100644
--- a/src/modules/jack/module-jack-source.c
+++ b/src/modules/jack/module-jack-source.c
@@ -286,7 +286,7 @@ int pa__init(pa_module*m) {
         goto fail;
     }
 
-    ports = jack_get_ports(u->client, NULL, NULL, JackPortIsPhysical|JackPortIsOutput);
+    ports = jack_get_ports(u->client, NULL, JACK_DEFAULT_AUDIO_TYPE, JackPortIsPhysical|JackPortIsOutput);
 
     channels = 0;
     for (p = ports; *p; p++)

-- 
hooks/post-receive
PulseAudio Sound Server



More information about the pulseaudio-commits mailing list