Select one of the symbols to view example projects that use it.
 
Outline
#define __BTC_A2DP_H__
#include <stdbool.h>
#include "common/bt_target.h"
#include "bta/bta_api.h"
#include "btc_av_api.h"
#include "esp_a2dp_api.h"
#define BTC_AV_SUCCESS
#define BTC_ERROR_SRV_AV_NOT_ENABLED
#define BTC_ERROR_SRV_AV_FEEDING_NOT_SUPPORTED
#define BTC_ERROR_SRV_AV_BUSY
#define BTC_ERROR_SRV_AV_NOT_OPENED
#define BTC_ERROR_SRV_AV_NOT_STARTED
#define BTC_ERROR_SRV_AV_CP_NOT_SUPPORTED
#define BTC_MEDIA_TRSCD_OFF
#define BTC_MEDIA_TRSCD_PCM_2_SBC
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/bt/host/bluedroid/btc/profile/std/include/btc_a2dp.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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2015-2021 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ /******************************************************************************* * * Filename: btc_a2dp.h * * Description: Common definitions for A2DP * *******************************************************************************//* ... */ #ifndef __BTC_A2DP_H__ #define __BTC_A2DP_H__ #include <stdbool.h> #include "common/bt_target.h" #include "bta/bta_api.h" #include "btc_av_api.h" #include "esp_a2dp_api.h"5 includes #if BTC_AV_INCLUDED /******************************************************************************* ** Constants *******************************************************************************//* ... */ #define BTC_AV_SUCCESS (0) /** * AV (Audio Video source) Errors *//* ... */ #define BTC_ERROR_SRV_AV_NOT_ENABLED 700 /* AV is not enabled */ #define BTC_ERROR_SRV_AV_FEEDING_NOT_SUPPORTED 701 /* Requested Feeding not supported */ #define BTC_ERROR_SRV_AV_BUSY 702 /* Another operation ongoing */ #define BTC_ERROR_SRV_AV_NOT_OPENED 703 /* No AV link opened */ #define BTC_ERROR_SRV_AV_NOT_STARTED 704 /* AV is not started */ #define BTC_ERROR_SRV_AV_CP_NOT_SUPPORTED 705 /* Content protection is not supported by all headsets */ /* Transcoding definition for TxTranscoding and RxTranscoding */ #define BTC_MEDIA_TRSCD_OFF 0 #define BTC_MEDIA_TRSCD_PCM_2_SBC 1 /* Tx */9 defines /******************************************************************************* ** Data types *******************************************************************************//* ... */ typedef int tBTC_AV_STATUS; /******************************************************************************* ** Public functions *******************************************************************************//* ... */ void btc_a2dp_on_init(void); /******************************************************************************* ** ** Function btc_a2dp_on_idle ** ** Description Process 'idle' request from BTC AV state machine during ** initialization ** *******************************************************************************//* ... */ void btc_a2dp_on_idle(void); /******************************************************************************* ** ** Function btc_a2dp_on_started ** ** Description Process 'start' request from BTC AV state machine to prepare ** for A2DP streaming ** ** Return TRUE if an ACK for the local command is sent ** *******************************************************************************//* ... */ BOOLEAN btc_a2dp_on_started(tBTA_AV_START *p_av, BOOLEAN pending_start); /******************************************************************************* ** ** Function btc_a2dp_on_stopped ** ** Description Process 'stop' request from BTC AV state machine to stop ** A2DP streaming ** *******************************************************************************//* ... */ void btc_a2dp_on_stopped(tBTA_AV_SUSPEND *p_av); /******************************************************************************* ** ** Function btc_a2dp_on_suspended ** ** Description Process 'stop' request from BTC AV state machine to suspend ** A2DP streaming ** *******************************************************************************//* ... */ void btc_a2dp_on_suspended(tBTA_AV_SUSPEND *p_av); /* ... */ #endif /* #if BTC_AV_INCLUDED */ /* ... */ #endif /* __BTC_A2DP_H__ */
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.