[pulseaudio-commits] [SCM] PulseAudio Sound Server branch, master, updated. v0.9.15-test5-5-g9744595

Lennart Poettering gitmailer-noreply at 0pointer.de
Thu Mar 19 04:56:45 PDT 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  4ebdee5b294e23ba03d7da15a9aa51c704d38490 (commit)

- Log -----------------------------------------------------------------
9744595... Merge commit '2d903bae9a2e57f997a3d3f335379c3880f95c77'
2d903ba... bluetooth: s/handled/not_yet_handled for signals
12ea570... bluetooth: reset read/write index when starting to stream
-----------------------------------------------------------------------

Summary of changes:
 src/modules/bluetooth/bluetooth-util.c             |    8 ++++----
 src/modules/bluetooth/module-bluetooth-device.c    |    3 +++
 src/modules/bluetooth/module-bluetooth-proximity.c |    4 ++--
 3 files changed, 9 insertions(+), 6 deletions(-)

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

commit 12ea5707b561117709053ea4580d97f03b772560
Author: Marc-André Lureau <marc-andre.lureau at nokia.com>
Date:   Thu Mar 5 15:47:13 2009 +0200

    bluetooth: reset read/write index when starting to stream

diff --git a/src/modules/bluetooth/module-bluetooth-device.c b/src/modules/bluetooth/module-bluetooth-device.c
index 495bc82..7d601e7 100644
--- a/src/modules/bluetooth/module-bluetooth-device.c
+++ b/src/modules/bluetooth/module-bluetooth-device.c
@@ -700,6 +700,9 @@ static int start_stream_fd(struct userdata *u) {
     pollfd->fd = u->stream_fd;
     pollfd->events = pollfd->revents = 0;
 
+    u->read_index = 0;
+    u->write_index = 0;
+
     return 0;
 }
 

commit 2d903bae9a2e57f997a3d3f335379c3880f95c77
Author: Marc-André Lureau <marc-andre.lureau at nokia.com>
Date:   Thu Mar 5 16:16:29 2009 +0200

    bluetooth: s/handled/not_yet_handled for signals

diff --git a/src/modules/bluetooth/bluetooth-util.c b/src/modules/bluetooth/bluetooth-util.c
index dfd3a30..9e30f89 100644
--- a/src/modules/bluetooth/bluetooth-util.c
+++ b/src/modules/bluetooth/bluetooth-util.c
@@ -604,7 +604,7 @@ static DBusHandlerResult filter_cb(DBusConnection *bus, DBusMessage *m, void *us
             pa_bluetooth_device_free(d);
         }
 
-        return DBUS_HANDLER_RESULT_HANDLED;
+        return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
 
     } else if (dbus_message_is_signal(m, "org.bluez.Adapter", "DeviceCreated")) {
         const char *path;
@@ -617,7 +617,7 @@ static DBusHandlerResult filter_cb(DBusConnection *bus, DBusMessage *m, void *us
         pa_log_debug("Device %s created", path);
 
         found_device(y, path);
-        return DBUS_HANDLER_RESULT_HANDLED;
+        return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
 
     } else if (dbus_message_is_signal(m, "org.bluez.Manager", "AdapterAdded")) {
         const char *path;
@@ -630,7 +630,7 @@ static DBusHandlerResult filter_cb(DBusConnection *bus, DBusMessage *m, void *us
         pa_log_debug("Adapter %s created", path);
 
         found_adapter(y, path);
-        return DBUS_HANDLER_RESULT_HANDLED;
+        return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
 
     } else if (dbus_message_is_signal(m, "org.bluez.Headset", "PropertyChanged") ||
                dbus_message_is_signal(m, "org.bluez.AudioSink", "PropertyChanged") ||
@@ -663,7 +663,7 @@ static DBusHandlerResult filter_cb(DBusConnection *bus, DBusMessage *m, void *us
             run_callback(y, d, TRUE);
         }
 
-        return DBUS_HANDLER_RESULT_HANDLED;
+        return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
     }
 
 fail:
diff --git a/src/modules/bluetooth/module-bluetooth-proximity.c b/src/modules/bluetooth/module-bluetooth-proximity.c
index a3b525e..c8d7b4d 100644
--- a/src/modules/bluetooth/module-bluetooth-proximity.c
+++ b/src/modules/bluetooth/module-bluetooth-proximity.c
@@ -302,7 +302,7 @@ static DBusHandlerResult filter_func(DBusConnection *connection, DBusMessage *m,
 
         bonding_new(u, a);
 
-        return DBUS_HANDLER_RESULT_HANDLED;
+        return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
 
     } else if (dbus_message_is_signal(m, "org.bluez.Adapter", "BondingRemoved")) {
 
@@ -315,7 +315,7 @@ static DBusHandlerResult filter_func(DBusConnection *connection, DBusMessage *m,
 
         bonding_remove(u, a);
 
-        return DBUS_HANDLER_RESULT_HANDLED;
+        return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
     }
 
 finish:

commit 97445955717468507ba70bf40dc944b1f117382e
Merge: 4ebdee5... 2d903ba...
Author: Lennart Poettering <lennart at poettering.net>
Date:   Thu Mar 19 12:56:41 2009 +0100

    Merge commit '2d903bae9a2e57f997a3d3f335379c3880f95c77'


-- 
hooks/post-receive
PulseAudio Sound Server



More information about the pulseaudio-commits mailing list