• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /******************************************************************************
2  *
3  *  Copyright 2002-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  *
21  *  2DP internal header file
22  *
23  ******************************************************************************/
24 #ifndef A2DP_INT_H
25 #define A2DP_INT_H
26 
27 #include "a2dp_api.h"
28 
29 /*****************************************************************************
30  *  Constants
31  ****************************************************************************/
32 #define A2DP_VERSION_V1_3 0x0103
33 #define A2DP_VERSION_V1_4 0x0104
34 
35 /* Number of attributes in A2DP SDP record. */
36 #define A2DP_NUM_ATTR 6
37 
38 /* Number of protocol elements in protocol element list. */
39 #define A2DP_NUM_PROTO_ELEMS 2
40 
41 /*****************************************************************************
42  *  Type definitions
43  ****************************************************************************/
44 
45 /* Control block used by A2DP_FindService(). */
46 typedef struct {
47   tA2DP_FIND_CBACK p_cback; /* application callback */
48   tSDP_DISCOVERY_DB* p_db;  /* pointer to discovery database */
49   uint16_t service_uuid;    /* service UUID of search */
50 } tA2DP_FIND_CB;
51 
52 typedef struct {
53   tA2DP_FIND_CB find;    /* find service control block */
54 } tA2DP_CB;
55 
56 /******************************************************************************
57  * Main Control Block
58  ******************************************************************************/
59 extern tA2DP_CB a2dp_cb;
60 
61 #endif /* A2DP_INT_H */
62