]> code.delx.au - pulseaudio/commitdiff
bluetooth: Trivially refactor to call setup_stream() directly
authorMikel Astiz <mikel.astiz@bmw-carit.de>
Mon, 3 Dec 2012 10:03:57 +0000 (11:03 +0100)
committerTanu Kaskinen <tanuk@iki.fi>
Tue, 4 Dec 2012 01:07:44 +0000 (03:07 +0200)
If the transport is already acquired and the stream needs to be started,
call setup_stream() directly instead of bt_transport_acquire(u, TRUE).
Both calls are identical in these conditions, with the exception of the
log trace which has now been moved to setup_stream().

src/modules/bluetooth/module-bluetooth-device.c

index 506a47990ee93c907834e03afc2bbed5953ff829..7d89f6ca17a8700102bde6015cee50b15188b9aa 100644 (file)
@@ -284,6 +284,8 @@ static void setup_stream(struct userdata *u) {
     struct pollfd *pollfd;
     int one;
 
+    pa_log_info("Transport %s resuming", u->transport->path);
+
     bt_transport_config_mtu(u);
 
     pa_make_fd_nonblock(u->stream_fd);
@@ -424,7 +426,6 @@ static int bt_transport_acquire(struct userdata *u, pa_bool_t start) {
         return 0;
 
 done:
-    pa_log_info("Transport %s resuming", u->transport->path);
     setup_stream(u);
 
     return 0;
@@ -1045,7 +1046,7 @@ static void thread_func(void *userdata) {
 
     /* Setup the stream only if the transport was already acquired */
     if (bt_transport_is_acquired(u))
-        bt_transport_acquire(u, TRUE);
+        setup_stream(u);
 
     for (;;) {
         struct pollfd *pollfd;