From: Luiz Augusto von Dentz <luiz.von.dentz@xxxxxxxxx> This adds the definitions to audio close command and response. --- android/a2dp.c | 10 ++++++++++ android/hal-msg.h | 5 +++++ 2 files changed, 15 insertions(+) diff --git a/android/a2dp.c b/android/a2dp.c index 325c282..e3d58ca 100644 --- a/android/a2dp.c +++ b/android/a2dp.c @@ -360,9 +360,19 @@ static void bt_audio_open(const void *buf, uint16_t len) HAL_STATUS_FAILED); } +static void bt_audio_close(const void *buf, uint16_t len) +{ + DBG("Not Implemented"); + + audio_ipc_send_rsp(AUDIO_SERVICE_ID_CORE, AUDIO_OP_CLOSE, + HAL_STATUS_FAILED); +} + static const struct ipc_handler audio_handlers[] = { /* AUDIO_OP_OPEN */ { bt_audio_open, true, sizeof(struct audio_cmd_open) }, + /* AUDIO_OP_CLOSE */ + { bt_audio_close, false, sizeof(struct audio_cmd_close) }, }; bool bt_a2dp_register(const bdaddr_t *addr) diff --git a/android/hal-msg.h b/android/hal-msg.h index 1036988..d1135df 100644 --- a/android/hal-msg.h +++ b/android/hal-msg.h @@ -588,3 +588,8 @@ struct audio_cmd_open { struct audio_rsp_open { uint8_t id; } __attribute__((packed)); + +#define AUDIO_OP_CLOSE 0x02 +struct audio_cmd_close { + uint8_t id; +} __attribute__((packed)); -- 1.8.4.2 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html