Fix bug 2242585 to unhide the new audio recording sources.

Unhide CAMCORDER and VOICE_RECOGNITION in android.media.MediaRecorder
This commit is contained in:
Jean-Michel Trivi
2009-11-05 15:49:37 -08:00
parent 8de4e0ad8f
commit 1dc2ae2871
2 changed files with 24 additions and 2 deletions

View File

@@ -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"

View File

@@ -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;
}