a2dp.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. /** @file
  2. * @brief Advance Audio Distribution Profile header.
  3. */
  4. /*
  5. * Copyright (c) 2015-2016 Intel Corporation
  6. *
  7. * SPDX-License-Identifier: Apache-2.0
  8. */
  9. #ifndef ZEPHYR_INCLUDE_BLUETOOTH_A2DP_H_
  10. #define ZEPHYR_INCLUDE_BLUETOOTH_A2DP_H_
  11. #include <bluetooth/avdtp.h>
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. /** @brief Stream Structure */
  16. struct bt_a2dp_stream {
  17. /* TODO */
  18. };
  19. /** @brief Codec ID */
  20. enum bt_a2dp_codec_id {
  21. /** Codec SBC */
  22. BT_A2DP_SBC = 0x00,
  23. /** Codec MPEG-1 */
  24. BT_A2DP_MPEG1 = 0x01,
  25. /** Codec MPEG-2 */
  26. BT_A2DP_MPEG2 = 0x02,
  27. /** Codec ATRAC */
  28. BT_A2DP_ATRAC = 0x04,
  29. /** Codec Non-A2DP */
  30. BT_A2DP_VENDOR = 0xff
  31. };
  32. /** @brief Preset for the endpoint */
  33. struct bt_a2dp_preset {
  34. /** Length of preset */
  35. uint8_t len;
  36. /** Preset */
  37. uint8_t preset[0];
  38. };
  39. /** @brief Stream End Point */
  40. struct bt_a2dp_endpoint {
  41. /** Code ID */
  42. uint8_t codec_id;
  43. /** Stream End Point Information */
  44. struct bt_avdtp_seid_lsep info;
  45. /** Pointer to preset codec chosen */
  46. struct bt_a2dp_preset *preset;
  47. /** Capabilities */
  48. struct bt_a2dp_preset *caps;
  49. };
  50. /** @brief Stream End Point Media Type */
  51. enum MEDIA_TYPE {
  52. /** Audio Media Type */
  53. BT_A2DP_AUDIO = 0x00,
  54. /** Video Media Type */
  55. BT_A2DP_VIDEO = 0x01,
  56. /** Multimedia Media Type */
  57. BT_A2DP_MULTIMEDIA = 0x02
  58. };
  59. /** @brief Stream End Point Role */
  60. enum ROLE_TYPE {
  61. /** Source Role */
  62. BT_A2DP_SOURCE = 0,
  63. /** Sink Role */
  64. BT_A2DP_SINK = 1
  65. };
  66. /** @brief A2DP structure */
  67. struct bt_a2dp;
  68. /** @brief A2DP Connect.
  69. *
  70. * This function is to be called after the conn parameter is obtained by
  71. * performing a GAP procedure. The API is to be used to establish A2DP
  72. * connection between devices.
  73. *
  74. * @param conn Pointer to bt_conn structure.
  75. *
  76. * @return pointer to struct bt_a2dp in case of success or NULL in case
  77. * of error.
  78. */
  79. struct bt_a2dp *bt_a2dp_connect(struct bt_conn *conn);
  80. /** @brief Endpoint Registration.
  81. *
  82. * This function is used for registering the stream end points. The user has
  83. * to take care of allocating the memory, the preset pointer and then pass the
  84. * required arguments. Also, only one sep can be registered at a time.
  85. *
  86. * @param endpoint Pointer to bt_a2dp_endpoint structure.
  87. * @param media_type Media type that the Endpoint is.
  88. * @param role Role of Endpoint.
  89. *
  90. * @return 0 in case of success and error code in case of error.
  91. */
  92. int bt_a2dp_register_endpoint(struct bt_a2dp_endpoint *endpoint,
  93. uint8_t media_type, uint8_t role);
  94. #ifdef __cplusplus
  95. }
  96. #endif
  97. #endif /* ZEPHYR_INCLUDE_BLUETOOTH_A2DP_H_ */