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

Commit 3590c754 authored by Eric Laurent's avatar Eric Laurent Committed by Android (Google) Code Review
Browse files

Merge "SpatializerHelper: Fix device compatibility with spatial audio" into tm-qpr-dev

parents 559f6584 f9de59ae
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -727,8 +727,11 @@ public class SpatializerHelper {
    }

    private boolean isDeviceCompatibleWithSpatializationModes(@NonNull AudioDeviceAttributes ada) {
        // modeForDevice will be neither transaural or binaural for devices that do not support
        // spatial audio. For instance mono devices like earpiece, speaker safe or sco must
        // not be included.
        final byte modeForDevice = (byte) SPAT_MODE_FOR_DEVICE_TYPE.get(ada.getType(),
                /*default when type not found*/ SpatializationMode.SPATIALIZER_BINAURAL);
                /*default when type not found*/ -1);
        if ((modeForDevice == SpatializationMode.SPATIALIZER_BINAURAL && mBinauralSupported)
                || (modeForDevice == SpatializationMode.SPATIALIZER_TRANSAURAL
                        && mTransauralSupported)) {