Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 62bb51d8 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "aidl: Fix missing conversion logic for broadcast device" into tm-dev...

Merge "aidl: Fix missing conversion logic for broadcast device" into tm-dev am: cd17169a am: 125630da

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/18756431



Change-Id: I3240cbc128e1a07870557f9a66c074b44a5bfa9f
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 7293379b 125630da
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -695,6 +695,10 @@ public class AidlConversion {
                aidl.type = AudioDeviceType.OUT_SPEAKER;
                aidl.connection = AudioDeviceDescription.CONNECTION_BT_LE;
                break;
            case AudioSystem.DEVICE_OUT_BLE_BROADCAST:
                aidl.type = AudioDeviceType.OUT_BROADCAST;
                aidl.connection = AudioDeviceDescription.CONNECTION_BT_LE;
                break;
            case AudioSystem.DEVICE_IN_BUILTIN_MIC:
                aidl.type = AudioDeviceType.IN_MICROPHONE;
                break;