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
|
/******************************************************************************
*
* Copyright (C) 2009-2012 Broadcom Corporation
*
* 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.
*
******************************************************************************/
/*******************************************************************************
*
* Filename: btif_av.h
*
* Description: Main API header file for all BTIF AV functions accessed
* from internal stack.
*
*******************************************************************************/
#ifndef BTIF_AV_H
#define BTIF_AV_H
#include "btif_common.h"
#include "btif_sm.h"
#include "bta_av_api.h"
/*******************************************************************************
** Type definitions for callback functions
********************************************************************************/
typedef enum {
/* Reuse BTA_AV_XXX_EVT - No need to redefine them here */
BTIF_AV_CONNECT_REQ_EVT = BTA_AV_MAX_EVT,
BTIF_AV_DISCONNECT_REQ_EVT,
BTIF_AV_START_STREAM_REQ_EVT,
BTIF_AV_STOP_STREAM_REQ_EVT,
BTIF_AV_SUSPEND_STREAM_REQ_EVT,
BTIF_AV_RECONFIGURE_REQ_EVT,
} btif_av_sm_event_t;
/*******************************************************************************
** BTIF AV API
********************************************************************************/
/*******************************************************************************
**
** 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_stream_ready
**
** Description Checks whether AV is ready for starting a stream
**
** Returns None
**
*******************************************************************************/
BOOLEAN btif_av_stream_ready(void);
/*******************************************************************************
**
** Function btif_av_stream_started_ready
**
** Description Checks whether AV ready for media start in streaming state
**
** Returns None
**
*******************************************************************************/
BOOLEAN btif_av_stream_started_ready(void);
/*******************************************************************************
**
** Function btif_dispatch_sm_event
**
** Description Send event to AV statemachine
**
** Returns None
**
*******************************************************************************/
/* used to pass events to AV statemachine from other tasks */
void btif_dispatch_sm_event(btif_av_sm_event_t event, void *p_data, int len);
/*******************************************************************************
**
** Function btif_av_init
**
** Description Initializes btif AV if not already done
**
** Returns bt_status_t
**
*******************************************************************************/
bt_status_t btif_av_init(void);
#endif /* BTIF_AV_H */
|