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

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

Fix bug 2271468 Update the javadoc for MediaRecorder.AudioSource

to define how the two new audio sources behave when used on devices
that don't support them.
parent 1d62ea9d
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -136,10 +136,12 @@ public class MediaRecorder
        /** Voice call uplink + downlink audio source */
        public static final int VOICE_CALL = 4;

        /** Microphone audio source with same orientation as camera */
        /** Microphone audio source with same orientation as camera if available, the main
         *  device microphone otherwise */
        public static final int CAMCORDER = 5;

        /** Microphone audio source tuned for voice recognition */
        /** Microphone audio source tuned for voice recognition if available, behaves like
         *  {@link #DEFAULT} otherwise. */
        public static final int VOICE_RECOGNITION = 6;
    }