OSDN Git Service

android/hal: Add skeleton for handling av notifications
authorGrzegorz Kolodziejczyk <grzegorz.kolodziejczyk@tieto.com>
Fri, 25 Oct 2013 15:52:03 +0000 (17:52 +0200)
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
Mon, 28 Oct 2013 09:24:12 +0000 (11:24 +0200)
Only default case is handled in skeleton

android/hal-av.c
android/hal-ipc.c
android/hal.h

index 0fe1b74..051fc3e 100644 (file)
@@ -28,6 +28,19 @@ static bool interface_ready(void)
        return cbs != NULL;
 }
 
+/* will be called from notification thread context */
+void bt_notify_av(uint16_t opcode, void *buf, uint16_t len)
+{
+       if (!interface_ready())
+               return;
+
+       switch (opcode) {
+       default:
+               DBG("Unhandled callback opcode=0x%x", opcode);
+               break;
+       }
+}
+
 static bt_status_t av_connect(bt_bdaddr_t *bd_addr)
 {
        DBG("");
index 5723841..f68e789 100644 (file)
@@ -49,6 +49,9 @@ static void notification_dispatch(struct hal_hdr *msg, int fd)
        case HAL_SERVICE_ID_BLUETOOTH:
                bt_notify_adapter(msg->opcode, msg->payload, msg->len);
                break;
+       case HAL_SERVICE_ID_A2DP:
+               bt_notify_av(msg->opcode, msg->payload, msg->len);
+               break;
        default:
                DBG("Unhandled notification service=%d opcode=0x%x",
                                                msg->service_id, msg->opcode);
index 5cd5cab..a377649 100644 (file)
@@ -29,3 +29,4 @@ btav_interface_t *bt_get_av_interface(void);
 void bt_notify_adapter(uint16_t opcode, void *buf, uint16_t len);
 void bt_thread_associate(void);
 void bt_thread_disassociate(void);
+void bt_notify_av(uint16_t opcode, void *buf, uint16_t len);