diff options
author | Chris Elliott <chriselliott@google.com> | 2015-12-02 12:59:58 -0800 |
---|---|---|
committer | Chris Elliott <chriselliott@google.com> | 2015-12-02 12:59:58 -0800 |
commit | 17e048f33b5e4fe16aee80569d675bba290ead50 (patch) | |
tree | 1ce2313c7785bffa1c68a0bd66e446f25733621e /bta/av/bta_av_api.c | |
parent | a7945b11ce231d53f5ced337136cd34ee8e5eea3 (diff) | |
download | android_system_bt-17e048f33b5e4fe16aee80569d675bba290ead50.tar.gz android_system_bt-17e048f33b5e4fe16aee80569d675bba290ead50.tar.bz2 android_system_bt-17e048f33b5e4fe16aee80569d675bba290ead50.zip |
DO NOT MERGE Revert "A2DP SRC offload support"
This reverts commit 6ff83ab9dd38bdefc5d252325f0cfbd3f1754d78.
Diffstat (limited to 'bta/av/bta_av_api.c')
-rw-r--r-- | bta/av/bta_av_api.c | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/bta/av/bta_av_api.c b/bta/av/bta_av_api.c index 417e976c9..ecc05e1bc 100644 --- a/bta/av/bta_av_api.c +++ b/bta/av/bta_av_api.c @@ -246,47 +246,6 @@ void BTA_AvStart(void) /******************************************************************************* ** -** Function BTA_AvOffloadStart -** -** Description Start a2dp audio offloading. -** -** Returns void -** -*******************************************************************************/ -void BTA_AvOffloadStart(tBTA_AV_HNDL hndl) -{ - BT_HDR *p_buf; - if ((p_buf = (BT_HDR *) GKI_getbuf(sizeof(BT_HDR))) != NULL) - { - p_buf->event = BTA_AV_API_OFFLOAD_START_EVT; - p_buf->layer_specific = hndl; - bta_sys_sendmsg(p_buf); - } -} - -/******************************************************************************* -** -** Function BTA_AvOffloadStartRsp -** -** Description Response from vendor lib for A2DP Offload Start request. -** -** Returns void -** -*******************************************************************************/ -void BTA_AvOffloadStartRsp(tBTA_AV_HNDL hndl, tBTA_AV_STATUS status) -{ - tBTA_AV_API_STATUS_RSP *p_buf; - if ((p_buf = (tBTA_AV_API_STATUS_RSP *) GKI_getbuf(sizeof(tBTA_AV_API_STATUS_RSP))) != NULL) - { - p_buf->hdr.event = BTA_AV_API_OFFLOAD_START_RSP_EVT; - p_buf->hdr.layer_specific = hndl; - p_buf->status = status; - bta_sys_sendmsg(p_buf); - } -} - -/******************************************************************************* -** ** Function BTA_AvEnable_Sink ** ** Description Enable/Disable A2DP Sink.. |