diff options
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.. |