zephyr/include/bluetooth/avdtp.h
Kumar Gala d0eb235510 Bluetooth: convert to using newly introduced integer sized types
Convert code to use u{8,16,32,64}_t and s{8,16,32,64}_t instead of C99
integer types.

Jira: ZEP-2051

Change-Id: I8f57a17f78e674aca5400f005db8975c9f9e150e
Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
2017-04-20 13:25:23 -05:00

55 lines
1.1 KiB
C

/** @file
* @brief Audio/Video Distribution Transport Protocol header.
*/
/*
* Copyright (c) 2015-2016 Intel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef __BT_AVDTP_H
#define __BT_AVDTP_H
#ifdef __cplusplus
extern "C" {
#endif
/** @brief AVDTP SEID Information */
struct bt_avdtp_seid_info {
/** Stream End Point ID */
u8_t id:6;
/** End Point usage status */
u8_t inuse:1;
/** Reserved */
u8_t rfa0:1;
/** Media-type of the End Point */
u8_t media_type:4;
/** TSEP of the End Point */
u8_t tsep:1;
/** Reserved */
u8_t rfa1:3;
} __packed;
/** @brief AVDTP Local SEP*/
struct bt_avdtp_seid_lsep {
/** Stream End Point information */
struct bt_avdtp_seid_info sep;
/** Pointer to next local Stream End Point structure */
struct bt_avdtp_seid_lsep *next;
};
/** @brief AVDTP Stream */
struct bt_avdtp_stream {
struct bt_l2cap_br_chan chan; /* Transport Channel*/
struct bt_avdtp_seid_info lsep; /* Configured Local SEP */
struct bt_avdtp_seid_info rsep; /* Configured Remote SEP*/
u8_t state; /* current state of the stream */
struct bt_avdtp_stream *next;
};
#ifdef __cplusplus
}
#endif
#endif /* __BT_AVDTP_H */