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

Commit 571529f8 authored by Jean-Michel Trivi's avatar Jean-Michel Trivi Committed by Android Git Automerger
Browse files

am d94ed379: Merge change I1dc2ae28 into eclair

Merge commit 'd94ed379' into eclair-mr2

* commit 'd94ed379':
  Fix bug 2242585 to unhide the new audio recording sources.
parents 8426319c d94ed379
Loading
Loading
Loading
Loading
+22 −0
Original line number Diff line number Diff line
@@ -79701,6 +79701,17 @@
 deprecated="not deprecated"
 visibility="public"
>
<field name="CAMCORDER"
 type="int"
 transient="false"
 volatile="false"
 value="5"
 static="true"
 final="true"
 deprecated="not deprecated"
 visibility="public"
>
</field>
<field name="DEFAULT"
 type="int"
 transient="false"
@@ -79745,6 +79756,17 @@
 visibility="public"
>
</field>
<field name="VOICE_RECOGNITION"
 type="int"
 transient="false"
 volatile="false"
 value="6"
 static="true"
 final="true"
 deprecated="not deprecated"
 visibility="public"
>
</field>
<field name="VOICE_UPLINK"
 type="int"
 transient="false"
+2 −2
Original line number Diff line number Diff line
@@ -136,10 +136,10 @@ public class MediaRecorder
        /** Voice call uplink + downlink audio source */
        public static final int VOICE_CALL = 4;

        /** @hide Microphone audio source with same orientation as camera */
        /** Microphone audio source with same orientation as camera */
        public static final int CAMCORDER = 5;

        /** @hide Microphone audio source tuned for voice recognition */
        /** Microphone audio source tuned for voice recognition */
        public static final int VOICE_RECOGNITION = 6;
    }