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

Commit ffd0eb0f authored by Jean-Michel Trivi's avatar Jean-Michel Trivi
Browse files

Fix bug 3183484 unhide MediaRecorder.AudioSource.VOICE_COMMUNICATION

Change-Id: I26cd88b1bb05de546415b1f92fbb9430e63b4eab
parent 04cdb78c
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -101832,6 +101832,17 @@
 visibility="public"
>
</field>
<field name="VOICE_COMMUNICATION"
 type="int"
 transient="false"
 volatile="false"
 value="7"
 static="true"
 final="true"
 deprecated="not deprecated"
 visibility="public"
>
</field>
<field name="VOICE_DOWNLINK"
 type="int"
 transient="false"
+4 −6
Original line number Diff line number Diff line
@@ -149,12 +149,10 @@ public class MediaRecorder
         *  {@link #DEFAULT} otherwise. */
        public static final int VOICE_RECOGNITION = 6;

        /**
         * @hide
         * Microphone audio source tuned for voice communications such as VoIP. It
        /** Microphone audio source tuned for voice communications such as VoIP. It
         *  will for instance take advantage of echo cancellation or automatic gain control
         *  if available. It otherwise behaves like {@link #DEFAULT} if no voice processing
         * is available.
         *  is applied.
         */
        public static final int VOICE_COMMUNICATION = 7;
    }