Select one of the symbols to view example projects that use it.
 
Outline
#define __BTC_AV_H__
#include "common/bt_target.h"
#include "esp_a2dp_api.h"
#include "btc/btc_task.h"
#include "btc/btc_common.h"
#include "btc/btc_sm.h"
#include "bta/bta_av_api.h"
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/bt/host/bluedroid/btc/profile/std/include/btc_av.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ /******************************************************************************* * * Filename: btc_av.h * * Description: Main API header file for all BTC AV functions accessed * from internal stack. * *******************************************************************************//* ... */ #ifndef __BTC_AV_H__ #define __BTC_AV_H__ #include "common/bt_target.h" #include "esp_a2dp_api.h" #include "btc/btc_task.h" #include "btc/btc_common.h" #include "btc/btc_sm.h" #include "bta/bta_av_api.h"6 includes #if (BTC_AV_INCLUDED == TRUE) // global variable to inidcate avrc is initialized with a2dp extern bool g_av_with_rc; // global variable to indicate a2dp is initialized extern bool g_a2dp_on_init; // global variable to indicate a2dp is deinitialized extern bool g_a2dp_on_deinit; // global variable to indicate a2dp source deinitialization is ongoing extern bool g_a2dp_source_ongoing_deinit; // global variable to indicate a2dp sink deinitialization is ongoing extern bool g_a2dp_sink_ongoing_deinit; /******************************************************************************* ** Type definitions for callback functions ********************************************************************************//* ... */ enum { BTC_AV_DATAPATH_OPEN_EVT, // original UIPC_OPEN_EVT for data channel in bluedroid BTC_AV_DATAPATH_MAX_EVT, }{...}; typedef enum { BTC_AV_CONNECT_REQ_EVT = BTA_AV_MAX_EVT, BTC_AV_DISCONNECT_REQ_EVT, BTC_AV_START_STREAM_REQ_EVT, BTC_AV_SUSPEND_STREAM_REQ_EVT, BTC_AV_SINK_CONFIG_REQ_EVT, }{...} btc_av_sm_event_t; typedef enum { #if BTC_AV_SINK_INCLUDED BTC_AV_SINK_API_INIT_EVT = 0, BTC_AV_SINK_API_DEINIT_EVT, BTC_AV_SINK_API_CONNECT_EVT, BTC_AV_SINK_API_DISCONNECT_EVT, BTC_AV_SINK_API_REG_DATA_CB_EVT, BTC_AV_SINK_API_SET_DELAY_VALUE_EVT, BTC_AV_SINK_API_GET_DELAY_VALUE_EVT,/* ... */ #endif /* BTC_AV_SINK_INCLUDED */ #if BTC_AV_SRC_INCLUDED BTC_AV_SRC_API_INIT_EVT, BTC_AV_SRC_API_DEINIT_EVT, BTC_AV_SRC_API_CONNECT_EVT, BTC_AV_SRC_API_DISCONNECT_EVT, BTC_AV_SRC_API_REG_DATA_CB_EVT,/* ... */ #endif /* BTC_AV_SRC_INCLUDED */ BTC_AV_API_MEDIA_CTRL_EVT, }{...} btc_av_act_t; /* btc_av_args_t */ typedef union { #if BTC_AV_SINK_INCLUDED // BTC_AV_SINK_CONFIG_REQ_EVT -- internal event esp_a2d_mcc_t mcc; // BTC_AV_SINK_API_CONNECT_EVT bt_bdaddr_t connect; // BTC_AV_SINK_API_DISCONNECT_EVT bt_bdaddr_t disconn; // BTC_AV_SINK_API_REG_DATA_CB_EVT esp_a2d_sink_data_cb_t data_cb; // BTC_AV_SINK_API_SET_DELAY_VALUE_EVT uint16_t delay_value;/* ... */ #endif /* BTC_AV_SINK_INCLUDED */ #if BTC_AV_SRC_INCLUDED // BTC_AV_SRC_API_REG_DATA_CB_EVT esp_a2d_source_data_cb_t src_data_cb; // BTC_AV_SRC_API_CONNECT bt_bdaddr_t src_connect; // BTC_AV_SRC_API_DISCONNECT_EVT bt_bdaddr_t src_disconn;/* ... */ #endif /* BTC_AV_SRC_INCLUDED */ // BTC_AV_API_MEDIA_CTRL_EVT esp_a2d_media_ctrl_t ctrl; }{...} btc_av_args_t; /******************************************************************************* ** BTC AV API ********************************************************************************//* ... */ void btc_a2dp_call_handler(btc_msg_t *msg); void btc_a2dp_cb_handler(btc_msg_t *msg); void btc_a2dp_sink_reg_data_cb(esp_a2d_sink_data_cb_t callback); void btc_a2dp_src_reg_data_cb(esp_a2d_source_data_cb_t callback); /******************************************************************************* ** ** Function btc_av_get_sm_handle ** ** Description Fetches current av SM handle ** ** Returns None ** *******************************************************************************//* ... */ btc_sm_handle_t btc_av_get_sm_handle(void); /******************************************************************************* ** ** Function btc_av_stream_ready ** ** Description Checks whether AV is ready for starting a stream ** ** Returns None ** *******************************************************************************//* ... */ BOOLEAN btc_av_stream_ready(void); /******************************************************************************* ** ** Function btc_av_stream_started_ready ** ** Description Checks whether AV ready for media start in streaming state ** ** Returns None ** *******************************************************************************//* ... */ BOOLEAN btc_av_stream_started_ready(void); /******************************************************************************* ** ** Function btc_dispatch_sm_event ** ** Description Send event to AV statemachine ** ** Returns None ** *******************************************************************************//* ... */ /* used to pass events to AV statemachine from other tasks */ void btc_dispatch_sm_event(btc_av_sm_event_t event, void *p_data, int len); /******************************************************************************* ** ** Function btc_av_is_connected ** ** Description Checks if av has a connected sink ** ** Returns BOOLEAN ** *******************************************************************************//* ... */ BOOLEAN btc_av_is_connected(void); /******************************************************************************* * * Function btc_av_get_peer_sep * * Description Get the stream endpoint type. * * Returns The stream endpoint type: either AVDT_TSEP_SRC or * AVDT_TSEP_SNK. * ******************************************************************************//* ... */ uint8_t btc_av_get_peer_sep(void); /******************************************************************************* ** ** Function btc_av_is_peer_edr ** ** Description Check if the connected a2dp device supports ** EDR or not. Only when connected this function ** will accurately provide a true capability of ** remote peer. If not connected it will always be false. ** ** Returns TRUE if remote device is capable of EDR ** *******************************************************************************//* ... */ BOOLEAN btc_av_is_peer_edr(void); /****************************************************************************** ** ** Function btc_av_clear_remote_suspend_flag ** ** Description Clears remote suspended flag ** ** Returns Void ********************************************************************************//* ... */ void btc_av_clear_remote_suspend_flag(void); /******************************************************************************* * * Function btc_av_get_service_id * * Description Get the current AV service ID. * * Returns The stream endpoint type: either BTA_A2DP_SOURCE_SERVICE_ID or * BTA_A2DP_SINK_SERVICE_ID. * ******************************************************************************//* ... */ uint8_t btc_av_get_service_id(void); /* ... */ #endif ///BTC_AV_INCLUDED == TRUE /* ... */ #endif /* __BTC_AV_H__ */
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.