From f2b7dab37bdd8736b9ffb2b8e99e77236850b81c Mon Sep 17 00:00:00 2001 From: Ravi Nagarajan Date: Tue, 27 Mar 2012 20:10:19 +0530 Subject: Add support for Voice Recognition. Stack will verify that the peer supports VR prior to sending VR events. Additionally, response to BVRA from headset will come from the app Change-Id: Id00897e92277fec1e8f8f1cdd0596c4435b76e1d --- btif/src/btif_hf.c | 38 ++++++++++++++++++++++++++------------ 1 file changed, 26 insertions(+), 12 deletions(-) (limited to 'btif/src') diff --git a/btif/src/btif_hf.c b/btif/src/btif_hf.c index 0df79f4..ddc4a14 100644 --- a/btif/src/btif_hf.c +++ b/btif/src/btif_hf.c @@ -571,15 +571,22 @@ static bt_status_t start_voice_recognition() CHECK_BTHF_INIT(); if (is_connected(NULL)) { - tBTA_AG_RES_DATA ag_res; - memset(&ag_res, 0, sizeof(ag_res)); - ag_res.state = 1; - BTA_AgResult (btif_hf_cb.handle, BTA_AG_BVRA_RES, &ag_res); + if (btif_hf_cb.peer_feat & BTA_AG_PEER_FEAT_VREC) + { + tBTA_AG_RES_DATA ag_res; + memset(&ag_res, 0, sizeof(ag_res)); + ag_res.state = 1; + BTA_AgResult (btif_hf_cb.handle, BTA_AG_BVRA_RES, &ag_res); - return BT_STATUS_SUCCESS; + return BT_STATUS_SUCCESS; + } + else + { + return BT_STATUS_UNSUPPORTED; + } } - return BT_STATUS_FAIL; + return BT_STATUS_NOT_READY; } /******************************************************************************* @@ -597,15 +604,22 @@ static bt_status_t stop_voice_recognition() if (is_connected(NULL)) { - tBTA_AG_RES_DATA ag_res; - memset(&ag_res, 0, sizeof(ag_res)); - ag_res.state = 0; - BTA_AgResult (btif_hf_cb.handle, BTA_AG_BVRA_RES, &ag_res); + if (btif_hf_cb.peer_feat & BTA_AG_PEER_FEAT_VREC) + { + tBTA_AG_RES_DATA ag_res; + memset(&ag_res, 0, sizeof(ag_res)); + ag_res.state = 0; + BTA_AgResult (btif_hf_cb.handle, BTA_AG_BVRA_RES, &ag_res); - return BT_STATUS_SUCCESS; + return BT_STATUS_SUCCESS; + } + else + { + return BT_STATUS_UNSUPPORTED; + } } - return BT_STATUS_FAIL; + return BT_STATUS_NOT_READY; } /******************************************************************************* -- cgit v1.1