a2dp-codec.h 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /** @file
  2. * @brief Advance Audio Distribution Profile - SBC Codec header.
  3. */
  4. /*
  5. * SPDX-License-Identifier: Apache-2.0
  6. * Copyright (c) 2015-2016 Intel Corporation
  7. *
  8. * Licensed under the Apache License, Version 2.0 (the "License");
  9. * you may not use this file except in compliance with the License.
  10. * You may obtain a copy of the License at
  11. *
  12. * http://www.apache.org/licenses/LICENSE-2.0
  13. *
  14. * Unless required by applicable law or agreed to in writing, software
  15. * distributed under the License is distributed on an "AS IS" BASIS,
  16. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  17. * See the License for the specific language governing permissions and
  18. * limitations under the License.
  19. */
  20. #ifndef ZEPHYR_INCLUDE_BLUETOOTH_A2DP_CODEC_H_
  21. #define ZEPHYR_INCLUDE_BLUETOOTH_A2DP_CODEC_H_
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25. /* Sampling Frequency */
  26. #define A2DP_SBC_SAMP_FREQ_16000 BIT(7)
  27. #define A2DP_SBC_SAMP_FREQ_32000 BIT(6)
  28. #define A2DP_SBC_SAMP_FREQ_44100 BIT(5)
  29. #define A2DP_SBC_SAMP_FREQ_48000 BIT(4)
  30. /* Channel Mode */
  31. #define A2DP_SBC_CH_MODE_MONO BIT(3)
  32. #define A2DP_SBC_CH_MODE_DUAL BIT(2)
  33. #define A2DP_SBC_CH_MODE_STREO BIT(1)
  34. #define A2DP_SBC_CH_MODE_JOINT BIT(0)
  35. /* Block Length */
  36. #define A2DP_SBC_BLK_LEN_4 BIT(7)
  37. #define A2DP_SBC_BLK_LEN_8 BIT(6)
  38. #define A2DP_SBC_BLK_LEN_12 BIT(5)
  39. #define A2DP_SBC_BLK_LEN_16 BIT(4)
  40. /* Subbands */
  41. #define A2DP_SBC_SUBBAND_4 BIT(3)
  42. #define A2DP_SBC_SUBBAND_8 BIT(2)
  43. /* Allocation Method */
  44. #define A2DP_SBC_ALLOC_MTHD_SNR BIT(1)
  45. #define A2DP_SBC_ALLOC_MTHD_LOUDNESS BIT(0)
  46. #define BT_A2DP_SBC_SAMP_FREQ(preset) ((preset->config[0] >> 4) & 0x0f)
  47. #define BT_A2DP_SBC_CHAN_MODE(preset) ((preset->config[0]) & 0x0f)
  48. #define BT_A2DP_SBC_BLK_LEN(preset) ((preset->config[1] >> 4) & 0x0f)
  49. #define BT_A2DP_SBC_SUB_BAND(preset) ((preset->config[1] >> 2) & 0x03)
  50. #define BT_A2DP_SBC_ALLOC_MTHD(preset) ((preset->config[1]) & 0x03)
  51. /** @brief SBC Codec */
  52. struct bt_a2dp_codec_sbc_params {
  53. /** First two octets of configuration */
  54. uint8_t config[2];
  55. /** Minimum Bitpool Value */
  56. uint8_t min_bitpool;
  57. /** Maximum Bitpool Value */
  58. uint8_t max_bitpool;
  59. } __packed;
  60. #ifdef __cplusplus
  61. }
  62. #endif
  63. #endif /* ZEPHYR_INCLUDE_BLUETOOTH_A2DP_CODEC_H_ */