bta_av_ci.cc 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. /******************************************************************************
  2. *
  3. * Copyright 2005-2012 Broadcom Corporation
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License");
  6. * you may not use this file except in compliance with the License.
  7. * You may obtain a copy of the License at:
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. *
  17. ******************************************************************************/
  18. /******************************************************************************
  19. *
  20. * This is the implementation file for advanced audio/video call-in
  21. * functions.
  22. *
  23. ******************************************************************************/
  24. #define LOG_TAG "bt_bta_av"
  25. #include "osi/include/log.h"
  26. #include "bta_av_ci.h"
  27. #include "bta_api.h"
  28. #include "bta_av_int.h"
  29. #include "bta_sys.h"
  30. #include <string.h>
  31. /*******************************************************************************
  32. *
  33. * Function bta_av_ci_src_data_ready
  34. *
  35. * Description This function sends an event to the AV indicating that
  36. * the phone has audio stream data ready to send and AV
  37. * should call bta_av_co_audio_source_data_path().
  38. *
  39. * Returns void
  40. *
  41. ******************************************************************************/
  42. void bta_av_ci_src_data_ready(tBTA_AV_CHNL chnl) {
  43. BT_HDR* p_buf = (BT_HDR*)osi_malloc(sizeof(BT_HDR));
  44. p_buf->layer_specific = chnl;
  45. p_buf->event = BTA_AV_CI_SRC_DATA_READY_EVT;
  46. bta_sys_sendmsg(p_buf);
  47. }
  48. /*******************************************************************************
  49. *
  50. * Function bta_av_ci_setconfig
  51. *
  52. * Description This function must be called in response to function
  53. * bta_av_co_audio_setconfig().
  54. * Parameter err_code is set to an AVDTP status value;
  55. * AVDT_SUCCESS if the codec configuration is ok,
  56. * otherwise error.
  57. *
  58. * Returns void
  59. *
  60. ******************************************************************************/
  61. void bta_av_ci_setconfig(tBTA_AV_HNDL bta_av_handle, uint8_t err_code,
  62. uint8_t category, uint8_t num_seid, uint8_t* p_seid,
  63. bool recfg_needed, uint8_t avdt_handle) {
  64. LOG_DEBUG(LOG_TAG,
  65. "%s: bta_av_handle=%d err_code=%d category=%d "
  66. "num_seid=%d recfg_needed=%s avdt_handle=%d",
  67. __func__, bta_av_handle, err_code, category, num_seid,
  68. recfg_needed ? "true" : "false", avdt_handle);
  69. tBTA_AV_CI_SETCONFIG* p_buf =
  70. (tBTA_AV_CI_SETCONFIG*)osi_malloc(sizeof(tBTA_AV_CI_SETCONFIG));
  71. p_buf->hdr.layer_specific = bta_av_handle;
  72. p_buf->hdr.event = (err_code == A2DP_SUCCESS) ? BTA_AV_CI_SETCONFIG_OK_EVT
  73. : BTA_AV_CI_SETCONFIG_FAIL_EVT;
  74. p_buf->err_code = err_code;
  75. p_buf->category = category;
  76. p_buf->recfg_needed = recfg_needed;
  77. p_buf->num_seid = num_seid;
  78. p_buf->avdt_handle = avdt_handle;
  79. if (p_seid && num_seid) {
  80. p_buf->p_seid = (uint8_t*)(p_buf + 1);
  81. memcpy(p_buf->p_seid, p_seid, num_seid);
  82. } else {
  83. p_buf->p_seid = NULL;
  84. p_buf->num_seid = 0;
  85. }
  86. bta_sys_sendmsg(p_buf);
  87. }