From d60490a7c399c4ef7f12e667df48f6ca1088f6b3 Mon Sep 17 00:00:00 2001 From: Andrei Emeltchenko Date: Thu, 24 Oct 2013 10:10:39 +0300 Subject: [PATCH] android: Enable AV interface Include av_interface to get_interface function. --- android/hal-bluetooth.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/android/hal-bluetooth.c b/android/hal-bluetooth.c index d9887789d..52c7c6894 100644 --- a/android/hal-bluetooth.c +++ b/android/hal-bluetooth.c @@ -310,6 +310,9 @@ static const void *get_profile_interface(const char *profile_id) if (!strcmp(profile_id, BT_PROFILE_PAN_ID)) return bt_get_pan_interface(); + if (!strcmp(profile_id, BT_PROFILE_ADVANCED_AUDIO_ID)) + return bt_get_av_interface(); + return NULL; } -- 2.47.3