From: Luiz Augusto von Dentz <luiz.von.dentz@xxxxxxxxx> --- android/hal-avrcp.c | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/android/hal-avrcp.c b/android/hal-avrcp.c index 01d233b..9937a11 100644 --- a/android/hal-avrcp.c +++ b/android/hal-avrcp.c @@ -56,6 +56,24 @@ static bt_status_t init(btrc_callbacks_t *callbacks) return ret; } +static bt_status_t get_play_status_rsp(btrc_play_status_t status, + uint32_t song_len, uint32_t song_pos) +{ + struct hal_cmd_avrcp_get_play_status cmd; + + DBG(""); + + if (!interface_ready()) + return BT_STATUS_NOT_READY; + + cmd.status = status; + cmd.duration = song_len; + cmd.position = song_pos; + + return hal_ipc_cmd(HAL_SERVICE_ID_AVRCP, HAL_OP_AVRCP_GET_PLAY_STATUS, + sizeof(cmd), &cmd, 0, NULL, NULL); +} + static void cleanup() { struct hal_cmd_unregister_module cmd; @@ -78,6 +96,7 @@ static void cleanup() static btrc_interface_t iface = { .size = sizeof(iface), .init = init, + .get_play_status_rsp = get_play_status_rsp, .cleanup = cleanup }; -- 1.8.5.3 -- 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