--- android/hal-audio.c | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/android/hal-audio.c b/android/hal-audio.c index 4a12bcb..95efa89 100644 --- a/android/hal-audio.c +++ b/android/hal-audio.c @@ -412,6 +412,13 @@ static int audio_close(hw_device_t *device) return 0; } +static int open_endpoint_cmd(void) +{ + DBG("Not Implemented"); + + return AUDIO_STATUS_FAILED; +} + static bool create_audio_ipc(void) { struct sockaddr_un addr; @@ -478,7 +485,10 @@ static void *ipc_handler(void *data) DBG("Audio IPC: Connected"); - /* TODO: Register ENDPOINT here */ + if (open_endpoint_cmd() == AUDIO_STATUS_FAILED) { + error("a2dp: failed to open endpoint"); + continue; + } memset(&pfd, 0, sizeof(pfd)); pfd.fd = audio_sk; -- 1.8.4 -- 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