OSDN Git Service

Cleanup and removed BTIF-related unused code
authorPavlin Radoslavov <pavlin@google.com>
Thu, 25 Aug 2016 22:34:57 +0000 (15:34 -0700)
committerPavlin Radoslavov <pavlin@google.com>
Fri, 26 Aug 2016 19:04:34 +0000 (12:04 -0700)
* Removed field tBTIF_MEDIA_CB.av_sm_hdl, because it is never used
  after an assignment.
* Removed the corresponding function btif_av_get_sm_handle() which
  is not used/needed anymore.
* Declared btif_hf_is_call_idle() function in a new header file
  "btif_hf.h"
* Removed tBTIF_STATUS, BTIF_SUCCESS and BTIF_ERROR_SRV_* error codes
  which are never used.
* Removed duplicate conditional define of BTA_AV_CO_CP_SCMS_T
* Removed unused typedef tBTA_AV_AUDIO_CODEC_INFO, and unused
  BTA_AV_CO_* defines and enums.

Change-Id: I7bb49957fad94073d474fea6ea0d466f36df37fb

bta/include/bta_av_co.h
bta/include/bta_av_sbc.h
btif/co/bta_av_co.cc
btif/include/btif_av.h
btif/include/btif_av_co.h
btif/include/btif_hf.h [new file with mode: 0644]
btif/include/btif_media.h
btif/src/btif_av.cc
btif/src/btif_hf.cc
btif/src/btif_media_task.cc
include/bt_target.h

index bdb6c21..5f9d756 100644 (file)
@@ -35,11 +35,6 @@ extern "C" {
 **  Constants and data types
 *****************************************************************************/
 
-/* TRUE to use SCMS-T content protection */
-#ifndef BTA_AV_CO_CP_SCMS_T
-#define BTA_AV_CO_CP_SCMS_T FALSE
-#endif
-
 /* the content protection IDs assigned by BT SIG */
 #define BTA_AV_CP_SCMS_T_ID     0x0002
 #define BTA_AV_CP_DTCP_ID       0x0001
@@ -52,29 +47,6 @@ extern "C" {
 #define BTA_AV_CP_SCMS_COPY_ONCE        1
 #define BTA_AV_CP_SCMS_COPY_NEVER       0
 
-#define BTA_AV_CO_DEFAULT_AUDIO_OFFSET      AVDT_MEDIA_OFFSET
-
-enum
-{
-    BTA_AV_CO_ST_INIT,
-    BTA_AV_CO_ST_IN,
-    BTA_AV_CO_ST_OUT,
-    BTA_AV_CO_ST_OPEN,
-    BTA_AV_CO_ST_STREAM
-};
-
-
-/* data type for the Audio Codec Information*/
-typedef struct
-{
-    uint16_t  bit_rate;       /* SBC encoder bit rate in kbps */
-    uint16_t  bit_rate_busy;  /* SBC encoder bit rate in kbps */
-    uint16_t  bit_rate_swampd;/* SBC encoder bit rate in kbps */
-    uint8_t   busy_level;     /* Busy level indicating the bit-rate to be used */
-    uint8_t   codec_info[AVDT_CODEC_SIZE];
-    uint8_t   codec_type;     /* Codec type */
-} tBTA_AV_AUDIO_CODEC_INFO;
-
 /*******************************************************************************
 **
 ** Function         bta_av_co_audio_init
index 116969e..8ee0afe 100644 (file)
@@ -25,9 +25,7 @@
 #ifndef BTA_AV_SBC_H
 #define BTA_AV_SBC_H
 
-#ifdef __cplusplus
-extern "C" {
-#endif
+#include "stack/include/a2d_sbc.h"
 
 /*****************************************************************************
 **  constants
@@ -36,6 +34,10 @@ extern "C" {
 /* SBC packet header size */
 #define BTA_AV_SBC_HDR_SIZE         A2D_SBC_MPL_HDR_LEN
 
+#ifdef __cplusplus
+extern "C" {
+#endif
+
 /*******************************************************************************
 **
 ** Function         bta_av_sbc_init_up_sample
index 51b8d77..e56dc5c 100644 (file)
@@ -26,6 +26,7 @@
 #include "string.h"
 #include "a2d_api.h"
 #include "a2d_sbc.h"
+#include "bt_target.h"
 #include "bta_sys.h"
 #include "bta_av_api.h"
 #include "bta_av_co.h"
@@ -255,7 +256,7 @@ static tBTA_AV_CO_PEER *bta_av_co_get_peer(tBTA_AV_HNDL hndl)
     /* Sanity check */
     if (index >= BTA_AV_CO_NUM_ELEMENTS(bta_av_co_cb.peers))
     {
-        APPL_TRACE_ERROR("bta_av_co_get_peer peer index out of bounds:%d", index);
+        APPL_TRACE_ERROR("%s: peer index out of bounds: %d", __func__, index);
         return NULL;
     }
 
@@ -399,8 +400,8 @@ void bta_av_build_src_cfg (uint8_t *p_pref_cfg, uint8_t *p_src_cap)
     /* parse configuration */
     if ((status = A2D_ParsSbcInfo(&src_cap, p_src_cap, true)) != 0)
     {
-         APPL_TRACE_DEBUG(" Cant parse src cap ret = %d", status);
-         return ;
+        APPL_TRACE_DEBUG("%s: can't parse src cap ret = %d", __func__, status);
+        return;
     }
 
     if (src_cap.samp_freq & A2D_SBC_IE_SAMP_FREQ_48)
@@ -470,21 +471,23 @@ uint8_t bta_av_audio_sink_getconfig(tBTA_AV_HNDL hndl, tA2D_CODEC codec_type,
 
     FUNC_TRACE();
 
-    APPL_TRACE_DEBUG("bta_av_audio_sink_getconfig handle:0x%x codec_type:%d seid:%d",
-                                                               hndl, codec_type, seid);
-    APPL_TRACE_DEBUG("num_protect:0x%02x protect_info:0x%02x%02x%02x",
-        *p_num_protect, p_protect_info[0], p_protect_info[1], p_protect_info[2]);
+    APPL_TRACE_DEBUG("%s: handle:0x%x codec_type:%d seid:%d",
+                     __func__, hndl, codec_type, seid);
+    APPL_TRACE_DEBUG("%s: num_protect:0x%02x protect_info:0x%02x%02x%02x",
+                     __func__, *p_num_protect, p_protect_info[0],
+                     p_protect_info[1], p_protect_info[2]);
 
     /* Retrieve the peer info */
     p_peer = bta_av_co_get_peer(hndl);
     if (p_peer == NULL)
     {
-        APPL_TRACE_ERROR("bta_av_audio_sink_getconfig could not find peer entry");
+        APPL_TRACE_ERROR("%s: could not find peer entry", __func__);
         return A2D_FAIL;
     }
 
-    APPL_TRACE_DEBUG("bta_av_audio_sink_getconfig peer(o=%d,n_snks=%d,n_rx_snks=%d,n_sup_snks=%d)",
-            p_peer->opened, p_peer->num_srcs, p_peer->num_rx_srcs, p_peer->num_sup_srcs);
+    APPL_TRACE_DEBUG("%s: peer(o=%d,n_snks=%d,n_rx_snks=%d,n_sup_snks=%d)",
+                     __func__, p_peer->opened, p_peer->num_srcs,
+                     p_peer->num_rx_srcs, p_peer->num_sup_srcs);
 
     p_peer->num_rx_srcs++;
 
@@ -507,9 +510,10 @@ uint8_t bta_av_audio_sink_getconfig(tBTA_AV_HNDL hndl, tA2D_CODEC codec_type,
         {
             p_src = &p_peer->srcs[p_peer->num_sup_srcs++];
 
-            APPL_TRACE_DEBUG("bta_av_audio_sink_getconfig saved caps[%x:%x:%x:%x:%x:%x]",
-                    p_codec_info[1], p_codec_info[2], p_codec_info[3],
-                    p_codec_info[4], p_codec_info[5], p_codec_info[6]);
+            APPL_TRACE_DEBUG("%s: saved caps[%x:%x:%x:%x:%x:%x]",
+                             __func__, p_codec_info[1], p_codec_info[2],
+                             p_codec_info[3], p_codec_info[4], p_codec_info[5],
+                             p_codec_info[6]);
 
             memcpy(p_src->codec_caps, p_codec_info, AVDT_CODEC_SIZE);
             p_src->codec_type = codec_type;
@@ -520,7 +524,7 @@ uint8_t bta_av_audio_sink_getconfig(tBTA_AV_HNDL hndl, tA2D_CODEC codec_type,
         }
         else
         {
-            APPL_TRACE_ERROR("bta_av_audio_sink_getconfig no more room for SRC info");
+            APPL_TRACE_ERROR("%s: no more room for SRC info", __func__);
         }
     }
 
@@ -528,7 +532,7 @@ uint8_t bta_av_audio_sink_getconfig(tBTA_AV_HNDL hndl, tA2D_CODEC codec_type,
     if ((p_peer->num_rx_srcs == p_peer->num_srcs) ||
         (p_peer->num_sup_srcs == BTA_AV_CO_NUM_ELEMENTS(p_peer->srcs)))
     {
-        APPL_TRACE_DEBUG("bta_av_audio_sink_getconfig last SRC reached");
+        APPL_TRACE_DEBUG("%s: last SRC reached", __func__);
 
         /* Protect access to bta_av_co_cb.codec_cfg */
         mutex_global_lock();
@@ -536,7 +540,7 @@ uint8_t bta_av_audio_sink_getconfig(tBTA_AV_HNDL hndl, tA2D_CODEC codec_type,
         /* Find a src that matches the codec config */
         if (bta_av_co_audio_peer_src_supports_codec(p_peer, &index))
         {
-            APPL_TRACE_DEBUG(" Codec Supported ");
+            APPL_TRACE_DEBUG("%s: codec supported", __func__);
             p_src = &p_peer->srcs[index];
 
             /* Build the codec configuration for this sink */
@@ -547,9 +551,11 @@ uint8_t bta_av_audio_sink_getconfig(tBTA_AV_HNDL hndl, tA2D_CODEC codec_type,
                 bta_av_build_src_cfg(pref_cfg, p_src->codec_caps);
                 memcpy(p_peer->codec_cfg, pref_cfg, AVDT_CODEC_SIZE);
 
-                APPL_TRACE_DEBUG("bta_av_audio_sink_getconfig  p_codec_info[%x:%x:%x:%x:%x:%x]",
-                        p_peer->codec_cfg[1], p_peer->codec_cfg[2], p_peer->codec_cfg[3],
-                        p_peer->codec_cfg[4], p_peer->codec_cfg[5], p_peer->codec_cfg[6]);
+                APPL_TRACE_DEBUG("%s: p_codec_info[%x:%x:%x:%x:%x:%x]",
+                                 __func__, p_peer->codec_cfg[1],
+                                 p_peer->codec_cfg[2], p_peer->codec_cfg[3],
+                                 p_peer->codec_cfg[4], p_peer->codec_cfg[5],
+                                 p_peer->codec_cfg[6]);
                 /* By default, no content protection */
                 *p_num_protect = 0;
 
@@ -815,12 +821,12 @@ void bta_av_co_audio_setconfig(tBTA_AV_HNDL hndl, tA2D_CODEC codec_type,
         if(AVDT_TSEP_SNK == t_local_sep)
         {
             codec_cfg_supported = bta_av_co_audio_sink_supports_config(codec_type, p_codec_info);
-            APPL_TRACE_DEBUG(" Peer is  A2DP SRC ");
+            APPL_TRACE_DEBUG("%s: peer is A2DP SRC", __func__);
         }
         if(AVDT_TSEP_SRC == t_local_sep)
         {
             codec_cfg_supported = bta_av_co_audio_media_supports_config(codec_type, p_codec_info);
-            APPL_TRACE_DEBUG(" Peer is A2DP SINK ");
+            APPL_TRACE_DEBUG("%s: peer is A2DP SINK", __func__);
         }
         /* Check if codec configuration is supported */
         if (codec_cfg_supported)
@@ -843,9 +849,10 @@ void bta_av_co_audio_setconfig(tBTA_AV_HNDL hndl, tA2D_CODEC codec_type,
                 /* if remote side requests a restricted notify sinks preferred bitpool range as all other params are
                    already checked for validify */
                 APPL_TRACE_DEBUG("%s: SBC", __func__);
-                APPL_TRACE_EVENT("remote peer setconfig bitpool range [%d:%d]",
-                   p_codec_info[BTA_AV_CO_SBC_MIN_BITPOOL_OFF],
-                   p_codec_info[BTA_AV_CO_SBC_MAX_BITPOOL_OFF] );
+                APPL_TRACE_EVENT("%s: remote peer setconfig bitpool range [%d:%d]",
+                                 __func__,
+                                 p_codec_info[BTA_AV_CO_SBC_MIN_BITPOOL_OFF],
+                                 p_codec_info[BTA_AV_CO_SBC_MAX_BITPOOL_OFF]);
 
                 bta_av_co_cb.codec_cfg_setconfig.id = A2D_MEDIA_CT_SBC;
                 memcpy(bta_av_co_cb.codec_cfg_setconfig.info, p_codec_info, AVDT_CODEC_SIZE);
@@ -914,7 +921,7 @@ void bta_av_co_audio_open(tBTA_AV_HNDL hndl, tA2D_CODEC codec_type,
 
     FUNC_TRACE();
 
-    APPL_TRACE_DEBUG("bta_av_co_audio_open mtu:%d codec_type:%d", mtu, codec_type);
+    APPL_TRACE_DEBUG("%s: mtu:%d codec_type:%d", __func__, mtu, codec_type);
 
     /* Retrieve the peer info */
     p_peer = bta_av_co_get_peer(hndl);
@@ -950,7 +957,7 @@ void bta_av_co_audio_close(tBTA_AV_HNDL hndl, tA2D_CODEC codec_type,
 
     FUNC_TRACE();
 
-    APPL_TRACE_DEBUG("bta_av_co_audio_close");
+    APPL_TRACE_DEBUG("%s", __func__);
 
     /* Retrieve the peer info */
     p_peer = bta_av_co_get_peer(hndl);
@@ -961,7 +968,7 @@ void bta_av_co_audio_close(tBTA_AV_HNDL hndl, tA2D_CODEC codec_type,
     }
     else
     {
-        APPL_TRACE_ERROR("bta_av_co_audio_close could not find peer entry");
+        APPL_TRACE_ERROR("%s: could not find peer entry", __func__);
     }
 
     /* reset remote preference through setconfig */
@@ -989,7 +996,7 @@ void bta_av_co_audio_start(tBTA_AV_HNDL hndl, tA2D_CODEC codec_type,
 
     FUNC_TRACE();
 
-    APPL_TRACE_DEBUG("bta_av_co_audio_start");
+    APPL_TRACE_DEBUG("%s", __func__);
 
 }
 
@@ -1051,7 +1058,8 @@ void * bta_av_co_audio_src_data_path(tA2D_CODEC codec_type, uint32_t *p_len,
 
 
         default:
-            APPL_TRACE_ERROR("bta_av_co_audio_src_data_path Unsupported codec type (%d)", codec_type);
+            APPL_TRACE_ERROR("%s: unsupported codec type (%d)", __func__,
+                             codec_type);
             break;
         }
 #if (BTA_AV_CO_CP_SCMS_T == TRUE)
@@ -1086,7 +1094,8 @@ void bta_av_co_audio_drop(tBTA_AV_HNDL hndl)
 {
     FUNC_TRACE();
 
-    APPL_TRACE_ERROR("bta_av_co_audio_drop dropped: x%x", hndl);
+    APPL_TRACE_ERROR("%s: dropped audio packet on handle 0x%x",
+                     __func__, hndl);
 }
 
 /*******************************************************************************
@@ -1104,7 +1113,7 @@ void bta_av_co_audio_delay(tBTA_AV_HNDL hndl, uint16_t delay)
 {
     FUNC_TRACE();
 
-    APPL_TRACE_ERROR("bta_av_co_audio_delay handle: x%x, delay:0x%x", hndl, delay);
+    APPL_TRACE_ERROR("%s: handle: x%x, delay:0x%x", __func__, hndl, delay);
 }
 
 
@@ -1174,7 +1183,7 @@ static bool bta_av_co_audio_codec_cfg_matches_caps(uint8_t codec_id, const uint8
         if (!((p_codec_caps[BTA_AV_CO_SBC_FREQ_CHAN_OFF] & p_codec_cfg[BTA_AV_CO_SBC_FREQ_CHAN_OFF]) &&
               (p_codec_caps[BTA_AV_CO_SBC_BLOCK_BAND_OFF] & p_codec_cfg[BTA_AV_CO_SBC_BLOCK_BAND_OFF])))
         {
-            APPL_TRACE_EVENT("false %x %x %x %x",
+            APPL_TRACE_EVENT("%s: false %x %x %x %x", __func__,
                     p_codec_caps[BTA_AV_CO_SBC_FREQ_CHAN_OFF],
                     p_codec_cfg[BTA_AV_CO_SBC_FREQ_CHAN_OFF],
                     p_codec_caps[BTA_AV_CO_SBC_BLOCK_BAND_OFF],
@@ -1187,7 +1196,7 @@ static bool bta_av_co_audio_codec_cfg_matches_caps(uint8_t codec_id, const uint8
         APPL_TRACE_ERROR("%s: unsupported codec id %d", __func__, codec_id);
         return false;
     }
-    APPL_TRACE_EVENT("true");
+    APPL_TRACE_EVENT("%s: true", __func__);
 
     return true;
 }
@@ -1245,7 +1254,7 @@ static bool bta_av_co_cp_is_scmst(const uint8_t *p_protectinfo)
         STREAM_TO_UINT16(cp_id, p_protectinfo);
         if (cp_id == BTA_AV_CP_SCMS_T_ID)
         {
-            APPL_TRACE_DEBUG("bta_av_co_cp_is_scmst: SCMS-T found");
+            APPL_TRACE_DEBUG("%s: SCMS-T found", __func__);
             return true;
         }
     }
@@ -1283,7 +1292,7 @@ static bool bta_av_co_audio_sink_has_scmst(const tBTA_AV_CO_SINK *p_sink)
         /* Decrement the SC counter */
         index--;
     }
-    APPL_TRACE_DEBUG("bta_av_co_audio_sink_has_scmst: SCMS-T not found");
+    APPL_TRACE_DEBUG("%s: SCMS-T not found", __func__);
     return false;
 }
 
@@ -1307,7 +1316,7 @@ static bool bta_av_co_audio_sink_supports_cp(const tBTA_AV_CO_SINK *p_sink)
     }
     else
     {
-        APPL_TRACE_DEBUG("bta_av_co_audio_sink_supports_cp: not required");
+        APPL_TRACE_DEBUG("%s: not required", __func__);
         return true;
     }
 }
@@ -1417,7 +1426,8 @@ static bool bta_av_co_audio_sink_supports_config(uint8_t codec_type, const uint8
 
 
     default:
-        APPL_TRACE_ERROR("bta_av_co_audio_media_supports_config unsupported codec type %d", codec_type);
+        APPL_TRACE_ERROR("%s: unsupported codec type %d", __func__,
+                         codec_type);
         return false;
         break;
     }
@@ -1466,7 +1476,7 @@ static bool bta_av_co_audio_media_supports_config(uint8_t codec_type,
  ** Returns          true if all opened devices support this codec, false otherwise
  **
  *******************************************************************************/
-bool bta_av_co_audio_codec_supported(tBTIF_STATUS *p_status)
+bool bta_av_co_audio_codec_supported(void)
 {
     uint8_t index;
     uint8_t snk_index;
@@ -1483,8 +1493,6 @@ bool bta_av_co_audio_codec_supported(tBTIF_STATUS *p_status)
     APPL_TRACE_DEBUG("%s", __func__);
 
     /* Check AV feeding is supported */
-    *p_status = BTIF_ERROR_SRV_AV_FEEDING_NOT_SUPPORTED;
-
     for (index = 0; index < BTA_AV_CO_NUM_ELEMENTS(bta_av_co_cb.peers); index++)
     {
         p_peer = &bta_av_co_cb.peers[index];
@@ -1499,7 +1507,6 @@ bool bta_av_co_audio_codec_supported(tBTIF_STATUS *p_status)
                 {
                     APPL_TRACE_DEBUG("%s: sink %d of peer %d doesn't support cp",
                                      __func__, snk_index, index);
-                    *p_status = BTIF_ERROR_SRV_AV_CP_NOT_SUPPORTED;
                     return false;
                 }
 
@@ -1550,7 +1557,6 @@ bool bta_av_co_audio_codec_supported(tBTIF_STATUS *p_status)
         }
     }
 
-    *p_status = BTIF_SUCCESS;
     return true;
 }
 
@@ -1590,16 +1596,13 @@ void bta_av_co_audio_codec_reset(void)
  ** Returns          true if successful, false otherwise
  **
  *******************************************************************************/
-bool bta_av_co_audio_set_codec(const tBTIF_AV_MEDIA_FEEDINGS *p_feeding, tBTIF_STATUS *p_status)
+bool bta_av_co_audio_set_codec(const tBTIF_AV_MEDIA_FEEDINGS *p_feeding)
 {
     tA2D_SBC_CIE sbc_config;
     tBTIF_AV_CODEC_INFO new_cfg;
 
     FUNC_TRACE();
 
-    /* Check AV feeding is supported */
-    *p_status = BTIF_ERROR_SRV_AV_FEEDING_NOT_SUPPORTED;
-
     APPL_TRACE_DEBUG("%s: feeding_format = 0x%x", __func__, p_feeding->format);
 
     /* Supported codecs */
@@ -1660,10 +1663,8 @@ bool bta_av_co_audio_set_codec(const tBTIF_AV_MEDIA_FEEDINGS *p_feeding, tBTIF_S
     /* The new config was correctly built */
     bta_av_co_cb.codec_cfg = new_cfg;
 
-
     /* Check all devices support it */
-    *p_status = BTIF_SUCCESS;
-    return bta_av_co_audio_codec_supported(p_status);
+    return bta_av_co_audio_codec_supported();
 }
 
 /*******************************************************************************
@@ -1683,7 +1684,8 @@ bool bta_av_co_audio_get_sbc_config(tA2D_SBC_CIE *p_sbc_config, uint16_t *p_minm
     tBTA_AV_CO_PEER *p_peer;
     tBTA_AV_CO_SINK *p_sink;
 
-    APPL_TRACE_EVENT("bta_av_co_cb.codec_cfg.id : codec 0x%x", bta_av_co_cb.codec_cfg.id);
+    APPL_TRACE_EVENT("%s: bta_av_co_cb.codec_cfg.id : codec 0x%x",
+                     __func__, bta_av_co_cb.codec_cfg.id);
 
     /* Minimum MTU is by default very large */
     *p_minmtu = 0xFFFF;
@@ -1713,8 +1715,10 @@ bool bta_av_co_audio_get_sbc_config(tA2D_SBC_CIE *p_sbc_config, uint16_t *p_minm
                             p_sbc_config->max_bitpool =
                                BTA_AV_CO_MIN(p_sink->codec_caps[BTA_AV_CO_SBC_MAX_BITPOOL_OFF],
                                              p_sbc_config->max_bitpool);
-                            APPL_TRACE_EVENT("bta_av_co_audio_get_sbc_config : sink bitpool min %d, max %d",
-                                 p_sbc_config->min_bitpool, p_sbc_config->max_bitpool);
+                            APPL_TRACE_EVENT("%s: sink bitpool min %d, max %d",
+                                             __func__,
+                                             p_sbc_config->min_bitpool,
+                                             p_sbc_config->max_bitpool);
                             break;
                         }
                     }
@@ -1753,7 +1757,7 @@ void bta_av_co_audio_discard_config(tBTA_AV_HNDL hndl)
     p_peer = bta_av_co_get_peer(hndl);
     if (p_peer == NULL)
     {
-        APPL_TRACE_ERROR("bta_av_co_audio_discard_config could not find peer entry");
+        APPL_TRACE_ERROR("%s: could not find peer entry", __func__);
         return;
     }
 
@@ -1811,7 +1815,7 @@ bool bta_av_co_peer_cp_supported(tBTA_AV_HNDL hndl)
     p_peer = bta_av_co_get_peer(hndl);
     if (p_peer == NULL)
     {
-        APPL_TRACE_ERROR("bta_av_co_peer_cp_supported could not find peer entry");
+        APPL_TRACE_ERROR("%s: could not find peer entry", __func__);
         return false;
     }
 
@@ -1823,7 +1827,7 @@ bool bta_av_co_peer_cp_supported(tBTA_AV_HNDL hndl)
             return bta_av_co_audio_sink_has_scmst(p_sink);
         }
     }
-    APPL_TRACE_ERROR("bta_av_co_peer_cp_supported did not find SBC sink");
+    APPL_TRACE_ERROR("%s: did not find SBC sink", __func__);
     return false;
 }
 
index 96194f7..dc13011 100644 (file)
@@ -56,18 +56,6 @@ typedef enum {
 
 /*******************************************************************************
 **
-** Function         btif_av_get_sm_handle
-**
-** Description      Fetches current av SM handle
-**
-** Returns          None
-**
-*******************************************************************************/
-
-btif_sm_handle_t btif_av_get_sm_handle(void);
-
-/*******************************************************************************
-**
 ** Function         btif_av_get_addr
 **
 ** Description      Fetches current AV BD address
index 8f70f1b..fa3f244 100644 (file)
@@ -97,7 +97,7 @@ void bta_av_co_audio_codec_reset(void);
  ** Returns          true if all opened devices support this codec, false otherwise
  **
  *******************************************************************************/
-bool bta_av_co_audio_codec_supported(tBTIF_STATUS *p_status);
+bool bta_av_co_audio_codec_supported(void);
 
 /*******************************************************************************
  **
@@ -110,7 +110,7 @@ bool bta_av_co_audio_codec_supported(tBTIF_STATUS *p_status);
  ** Returns          true if successful, false otherwise
  **
  *******************************************************************************/
-bool bta_av_co_audio_set_codec(const tBTIF_AV_MEDIA_FEEDINGS *p_feeding, tBTIF_STATUS *p_status);
+bool bta_av_co_audio_set_codec(const tBTIF_AV_MEDIA_FEEDINGS *p_feeding);
 
 /*******************************************************************************
  **
diff --git a/btif/include/btif_hf.h b/btif/include/btif_hf.h
new file mode 100644 (file)
index 0000000..4642e2a
--- /dev/null
@@ -0,0 +1,36 @@
+/******************************************************************************
+ *
+ *  Copyright (C) 2016 Google, Inc.
+ *
+ *  Licensed under the Apache License, Version 2.0 (the "License");
+ *  you may not use this file except in compliance with the License.
+ *  You may obtain a copy of the License at:
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License.
+ *
+ ******************************************************************************/
+
+#ifndef BTIF_HF_H
+#define BTIF_HF_H
+
+#include <stdbool.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+// Check whether there is a Hands-Free call in progress.
+// Returns true if no call is in progress.
+bool btif_hf_is_call_idle(void);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* BTIF_HF_H */
index 26869c8..a046fac 100644 (file)
  **  Constants
  *******************************************************************************/
 
-/* Generic part */
-#define BTIF_SUCCESS                         0
-
-/**
- * AV (Audio Video source) Errors
- */
-#define BTIF_ERROR_SRV_AV_NOT_ENABLED        700     /* AV is not enabled */
-#define BTIF_ERROR_SRV_AV_FEEDING_NOT_SUPPORTED 701  /* Requested Feeding not supported */
-#define BTIF_ERROR_SRV_AV_BUSY               702     /* Another operation ongoing */
-#define BTIF_ERROR_SRV_AV_NOT_OPENED         703     /* No AV link opened */
-#define BTIF_ERROR_SRV_AV_NOT_STARTED        704     /* AV is not started */
-#define BTIF_ERROR_SRV_AV_CP_NOT_SUPPORTED   705     /* Content protection is not supported by all headsets */
-
 /* Transcoding definition for TxTranscoding and RxTranscoding */
 #define BTIF_MEDIA_TRSCD_OFF             0
 #define BTIF_MEDIA_TRSCD_PCM_2_SBC       1  /* Tx */
@@ -59,8 +46,6 @@
  **  Data types
  *******************************************************************************/
 
-typedef int tBTIF_STATUS;
-
 /* tBTIF_MEDIA_INIT_AUDIO msg structure */
 typedef struct
 {
index b10b5f8..d41b77d 100644 (file)
@@ -1021,18 +1021,17 @@ static bool btif_av_state_started_handler(btif_sm_event_t event, void *p_data)
             break;
 
         case BTA_AV_OFFLOAD_START_RSP_EVT:
-
             btif_a2dp_on_offload_started(p_av->status);
             break;
 
         CHECK_RC_EVENT(event, (tBTA_AV*)p_data);
 
         default:
-            BTIF_TRACE_WARNING("%s : unhandled event:%s", __func__,
+            BTIF_TRACE_WARNING("%s: unhandled event: %s", __func__,
                                  dump_av_sm_event_name((btif_av_sm_event_t)event));
             return false;
-
     }
+
     return true;
 }
 
@@ -1413,21 +1412,6 @@ static const btav_interface_t bt_av_sink_interface = {
 
 /*******************************************************************************
 **
-** Function         btif_av_get_sm_handle
-**
-** Description      Fetches current av SM handle
-**
-** Returns          None
-**
-*******************************************************************************/
-
-btif_sm_handle_t btif_av_get_sm_handle(void)
-{
-    return btif_av_cb.sm_handle;
-}
-
-/*******************************************************************************
-**
 ** Function         btif_av_get_addr
 **
 ** Description      Fetches current AV BD address
index 8c925b8..d715df3 100644 (file)
@@ -37,6 +37,7 @@
 #include "bta_ag_api.h"
 #include "btcore/include/bdaddr.h"
 #include "btif_common.h"
+#include "btif_hf.h"
 #include "btif_profile_queue.h"
 #include "btif_util.h"
 
@@ -1513,7 +1514,7 @@ update_call_states:
 ** Returns          bt_status_t
 **
 *******************************************************************************/
-bool btif_hf_is_call_idle()
+bool btif_hf_is_call_idle(void)
 {
     if (bt_hf_callbacks == NULL)
         return true;
index fe9eb0e..50bfa2a 100644 (file)
@@ -55,6 +55,7 @@
 #include "bta_sys_int.h"
 #include "btif_av.h"
 #include "btif_av_co.h"
+#include "btif_hf.h"
 #include "btif_media.h"
 #include "btif_sm.h"
 #include "btif_util.h"
@@ -314,7 +315,6 @@ typedef struct
     tBTIF_AV_MEDIA_FEEDINGS_STATE media_feeding_state;
     SBC_ENC_PARAMS encoder;
     uint8_t busy_level;
-    void* av_sm_hdl;
     uint8_t a2dp_cmd_pending; /* we can have max one command pending */
     bool tx_flush; /* discards any outgoing data when true */
     bool rx_flush; /* discards any incoming data when true */
@@ -393,7 +393,6 @@ bool btif_media_task_clear_track(void);
 
 static void btif_media_task_aa_handle_timer(UNUSED_ATTR void *context);
 static void btif_media_task_avk_handle_timer(UNUSED_ATTR void *context);
-extern bool btif_hf_is_call_idle();
 
 static tBTIF_MEDIA_CB btif_media_cb;
 static int media_task_running = MEDIA_TASK_STATE_OFF;
@@ -714,8 +713,6 @@ static void btif_a2dp_ctrl_cb(tUIPC_CH_ID ch_id, tUIPC_EVENT event)
     switch (event)
     {
         case UIPC_OPEN_EVT:
-            /* fetch av statemachine handle */
-            btif_media_cb.av_sm_hdl = btif_av_get_sm_handle();
             break;
 
         case UIPC_CLOSE_EVT:
@@ -960,7 +957,6 @@ void btif_a2dp_on_init(void)
 void btif_a2dp_setup_codec(void)
 {
     tBTIF_AV_MEDIA_FEEDINGS media_feeding;
-    tBTIF_STATUS status;
 
     APPL_TRACE_EVENT("## A2DP SETUP CODEC ##");
 
@@ -972,7 +968,7 @@ void btif_a2dp_setup_codec(void)
     media_feeding.cfg.pcm.num_channel = BTIF_A2DP_SRC_NUM_CHANNELS;
     media_feeding.format = BTIF_AV_CODEC_PCM;
 
-    if (bta_av_co_audio_set_codec(&media_feeding, &status))
+    if (bta_av_co_audio_set_codec(&media_feeding))
     {
         tBTIF_MEDIA_INIT_AUDIO_FEEDING mfeed;
 
index 9b575e9..3e792d8 100644 (file)
 #define BTA_AV_RET_TOUT 15
 #endif
 
+/* TRUE to use SCMS-T content protection */
 #ifndef BTA_AV_CO_CP_SCMS_T
 #define BTA_AV_CO_CP_SCMS_T  FALSE
 #endif