diff options
author | Jean-Michel Trivi <jmtrivi@google.com> | 2009-11-05 15:49:37 -0800 |
---|---|---|
committer | Jean-Michel Trivi <jmtrivi@google.com> | 2009-11-05 15:49:37 -0800 |
commit | 1dc2ae2871aa3e958229e08ccf34099dff2fa402 (patch) | |
tree | 2f3011e8a12a1b6c24829778a912fdb71a7f9063 /media | |
parent | 8de4e0ad8ff39d9a397cd80de5155d4c09ef98fd (diff) | |
download | frameworks_base-1dc2ae2871aa3e958229e08ccf34099dff2fa402.zip frameworks_base-1dc2ae2871aa3e958229e08ccf34099dff2fa402.tar.gz frameworks_base-1dc2ae2871aa3e958229e08ccf34099dff2fa402.tar.bz2 |
Fix bug 2242585 to unhide the new audio recording sources.
Unhide CAMCORDER and VOICE_RECOGNITION in android.media.MediaRecorder
Diffstat (limited to 'media')
-rw-r--r-- | media/java/android/media/MediaRecorder.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/media/java/android/media/MediaRecorder.java b/media/java/android/media/MediaRecorder.java index 0b42cf6..4203cba 100644 --- a/media/java/android/media/MediaRecorder.java +++ b/media/java/android/media/MediaRecorder.java @@ -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; } |