Merge change I1dc2ae28 into eclair

* changes:
  Fix bug 2242585 to unhide the new audio recording sources. Unhide CAMCORDER and VOICE_RECOGNITION in android.media.MediaRecorder
This commit is contained in:
Android (Google) Code Review
2009-11-05 19:03:09 -05:00
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;
}