Merge "Integration of the aptX and aptX-HD codecs for A2DP source"

am: 0184b42499

Change-Id: Id283755b29a3f2c6e922a076531da0cd57d4d685
This commit is contained in:
Pavlin Radoslavov 2017-01-05 02:02:03 +00:00 committed by android-build-merger
commit 4122ca2593

View file

@ -45,16 +45,20 @@ typedef enum {
*/
typedef enum {
BTAV_A2DP_CODEC_INDEX_SOURCE_MIN = 0,
BTAV_A2DP_CODEC_INDEX_SOURCE_SBC = 0,
/* Add an entry for each new source codec here */
// Add an entry for each source codec here.
// NOTE: The values should be same as those listed in the following file:
// BluetoothCodecConfig.java
BTAV_A2DP_CODEC_INDEX_SOURCE_SBC = 0,
BTAV_A2DP_CODEC_INDEX_SOURCE_APTX,
BTAV_A2DP_CODEC_INDEX_SOURCE_APTX_HD,
BTAV_A2DP_CODEC_INDEX_SOURCE_MAX,
BTAV_A2DP_CODEC_INDEX_SINK_MIN = BTAV_A2DP_CODEC_INDEX_SOURCE_MAX,
BTAV_A2DP_CODEC_INDEX_SINK_SBC = BTAV_A2DP_CODEC_INDEX_SINK_MIN,
/* Add an entry for each new sink codec here */
// Add an entry for each sink codec here
BTAV_A2DP_CODEC_INDEX_SINK_SBC = BTAV_A2DP_CODEC_INDEX_SINK_MIN,
BTAV_A2DP_CODEC_INDEX_SINK_MAX,