Linux bluetooth development
 help / color / mirror / Atom feed
From: Luiz Augusto von Dentz <luiz.dentz@gmail.com>
To: linux-bluetooth@vger.kernel.org
Subject: [PATCH BlueZ v2 04/10] android/A2DP: Add initial code to handle audio IPC commands
Date: Thu,  2 Jan 2014 13:58:28 +0200	[thread overview]
Message-ID: <1388663914-25003-4-git-send-email-luiz.dentz@gmail.com> (raw)
In-Reply-To: <1388663914-25003-1-git-send-email-luiz.dentz@gmail.com>

From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>

This adds initial code to handle audio IPC commands.
---
 android/a2dp.c | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/android/a2dp.c b/android/a2dp.c
index 581d094..7550644 100644
--- a/android/a2dp.c
+++ b/android/a2dp.c
@@ -352,6 +352,9 @@ static sdp_record_t *a2dp_record(void)
 	return record;
 }
 
+static const struct ipc_handler audio_handlers[] = {
+};
+
 bool bt_a2dp_register(const bdaddr_t *addr)
 {
 	GError *err = NULL;
@@ -359,6 +362,8 @@ bool bt_a2dp_register(const bdaddr_t *addr)
 
 	DBG("");
 
+	audio_ipc_init();
+
 	bacpy(&adapter_addr, addr);
 
 	server = bt_io_listen(connect_cb, NULL, NULL, NULL, &err,
@@ -388,6 +393,9 @@ bool bt_a2dp_register(const bdaddr_t *addr)
 	ipc_register(HAL_SERVICE_ID_A2DP, cmd_handlers,
 						G_N_ELEMENTS(cmd_handlers));
 
+	audio_ipc_register(AUDIO_SERVICE_ID_CORE, audio_handlers,
+						G_N_ELEMENTS(audio_handlers));
+
 	return true;
 
 fail:
@@ -411,8 +419,9 @@ void bt_a2dp_unregister(void)
 	g_slist_foreach(devices, a2dp_device_disconnected, NULL);
 	devices = NULL;
 
-
 	ipc_unregister(HAL_SERVICE_ID_A2DP);
+	audio_ipc_unregister(AUDIO_SERVICE_ID_CORE);
+
 	bt_adapter_remove_record(record_id);
 	record_id = 0;
 
@@ -421,4 +430,6 @@ void bt_a2dp_unregister(void)
 		g_io_channel_unref(server);
 		server = NULL;
 	}
+
+	audio_ipc_cleanup();
 }
-- 
1.8.4.2


  parent reply	other threads:[~2014-01-02 11:58 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-01-02 11:58 [PATCH BlueZ v2 01/10] android/ipc: Add initial code for audio IPC Luiz Augusto von Dentz
2014-01-02 11:58 ` [PATCH BlueZ v2 02/10] android/ipc: Add message handling " Luiz Augusto von Dentz
2014-01-02 11:58 ` [PATCH BlueZ v2 03/10] android/ipc: Add audio_ipc_send_rsp and audio_ipc_send_rsp_full Luiz Augusto von Dentz
2014-01-02 11:58 ` Luiz Augusto von Dentz [this message]
2014-01-02 11:58 ` [PATCH BlueZ v2 05/10] android/A2DP: Add audio open command/response struct Luiz Augusto von Dentz
2014-01-02 11:58 ` [PATCH BlueZ v2 06/10] android/A2DP: Add audio close " Luiz Augusto von Dentz
2014-01-02 11:58 ` [PATCH BlueZ v2 07/10] android/A2DP: Add stream open " Luiz Augusto von Dentz
2014-01-02 11:58 ` [PATCH BlueZ v2 08/10] android/A2DP: Add stream close " Luiz Augusto von Dentz
2014-01-02 11:58 ` [PATCH BlueZ v2 09/10] android/A2DP: Add stream resume " Luiz Augusto von Dentz
2014-01-02 11:58 ` [PATCH BlueZ v2 10/10] android/A2DP: Add stream suspend " Luiz Augusto von Dentz
2014-01-03 10:56 ` [PATCH BlueZ v2 01/10] android/ipc: Add initial code for audio IPC Andrei Emeltchenko
2014-01-03 11:09   ` Luiz Augusto von Dentz
2014-01-05 17:43 ` Szymon Janc
2014-01-06  9:06   ` Luiz Augusto von Dentz

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1388663914-25003-4-git-send-email-luiz.dentz@gmail.com \
    --to=luiz.dentz@gmail.com \
    --cc=linux-bluetooth@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox