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

Commit a0e37e9d authored by Android (Google) Code Review's avatar Android (Google) Code Review
Browse files

Merge change I941136fd into eclair

* changes:
  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.
parents 03786b83 941136fd
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;
    }