avdtp.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /** @file
  2. * @brief Audio/Video Distribution Transport Protocol header.
  3. */
  4. /*
  5. * Copyright (c) 2015-2016 Intel Corporation
  6. *
  7. * SPDX-License-Identifier: Apache-2.0
  8. */
  9. #ifndef ZEPHYR_INCLUDE_BLUETOOTH_AVDTP_H_
  10. #define ZEPHYR_INCLUDE_BLUETOOTH_AVDTP_H_
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. #include <bluetooth/l2cap.h>
  15. /** @brief AVDTP SEID Information */
  16. struct bt_avdtp_seid_info {
  17. /** Stream End Point ID */
  18. uint8_t id:6;
  19. /** End Point usage status */
  20. uint8_t inuse:1;
  21. /** Reserved */
  22. uint8_t rfa0:1;
  23. /** Media-type of the End Point */
  24. uint8_t media_type:4;
  25. /** TSEP of the End Point */
  26. uint8_t tsep:1;
  27. /** Reserved */
  28. uint8_t rfa1:3;
  29. } __packed;
  30. /** @brief AVDTP Local SEP*/
  31. struct bt_avdtp_seid_lsep {
  32. /** Stream End Point information */
  33. struct bt_avdtp_seid_info sep;
  34. /** Pointer to next local Stream End Point structure */
  35. struct bt_avdtp_seid_lsep *next;
  36. };
  37. /** @brief AVDTP Stream */
  38. struct bt_avdtp_stream {
  39. struct bt_l2cap_br_chan chan; /* Transport Channel*/
  40. struct bt_avdtp_seid_info lsep; /* Configured Local SEP */
  41. struct bt_avdtp_seid_info rsep; /* Configured Remote SEP*/
  42. uint8_t state; /* current state of the stream */
  43. struct bt_avdtp_stream *next;
  44. };
  45. #ifdef __cplusplus
  46. }
  47. #endif
  48. #endif /* ZEPHYR_INCLUDE_BLUETOOTH_AVDTP_H_ */