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

Commit 1df64cd7 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "IMS-VT: Add persist.radio.ims.audio.output for VT calls"

parents ac06fb23 15afd65d
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -194,4 +194,11 @@ public class PhoneConstants {

    // Initial MTU value.
    public static final int UNSET_MTU = 0;

    /**
     * Values for the adb property "persist.radio.ims.audio.output"
     */
    public static final int IMS_AUDIO_OUTPUT_ENABLE_SPEAKER = 0;
    public static final int IMS_AUDIO_OUTPUT_DISABLE_SPEAKER = 1;
    public static final int IMS_AUDIO_OUTPUT_DEFAULT = IMS_AUDIO_OUTPUT_ENABLE_SPEAKER;
}
+8 −0
Original line number Diff line number Diff line
@@ -243,4 +243,12 @@ public interface TelephonyProperties

    static final String EXTRA_SKIP_SCHEMA_PARSING =
            "org.codeaurora.extra.SKIP_SCHEMA_PARSING";

    /**
     * Controls audio route for VT calls.
     * 0 - Use the default audio routing strategy.
     * 1 - Disable the speaker. Route the audio to Headset or Bluetooth
     *     or Earpiece, based on the default audio routing strategy.
     */
    static final String PROPERTY_IMS_AUDIO_OUTPUT = "persist.radio.ims.audio.output";
}