Merge "Add the BluetoothAudioStatus for the reconfiguration" am: f17f24ee52

Original change: https://android-review.googlesource.com/c/platform/hardware/interfaces/+/1977690

Change-Id: I38117d5bef041aed8642d1c61f458d7ffb6f3014
This commit is contained in:
Alice Kuo
2022-02-10 07:55:18 +00:00
committed by Automerger Merge Worker
2 changed files with 3 additions and 1 deletions

View File

@@ -38,4 +38,5 @@ enum BluetoothAudioStatus {
SUCCESS = 1,
UNSUPPORTED_CODEC_CONFIGURATION = 2,
FAILURE = 3,
RECONFIGURATION = 4,
}

View File

@@ -23,5 +23,6 @@ enum BluetoothAudioStatus {
SUCCESS = 1,
UNSUPPORTED_CODEC_CONFIGURATION = 2,
// General failure
FAILURE = 3
FAILURE = 3,
RECONFIGURATION = 4,
}