Merge "Fix bug 3183484 unhide MediaRecorder.AudioSource.VOICE_COMMUNICATION"

This commit is contained in:
Jean-Michel Trivi
2010-11-17 17:49:49 -08:00
committed by Android (Google) Code Review
2 changed files with 15 additions and 6 deletions

View File

@@ -101832,6 +101832,17 @@
visibility="public"
>
</field>
<field name="VOICE_COMMUNICATION"
type="int"
transient="false"
volatile="false"
value="7"
static="true"
final="true"
deprecated="not deprecated"
visibility="public"
>
</field>
<field name="VOICE_DOWNLINK"
type="int"
transient="false"

View File

@@ -149,12 +149,10 @@ public class MediaRecorder
* {@link #DEFAULT} otherwise. */
public static final int VOICE_RECOGNITION = 6;
/**
* @hide
* Microphone audio source tuned for voice communications such as VoIP. It
* will for instance take advantage of echo cancellation or automatic gain control
* if available. It otherwise behaves like {@link #DEFAULT} if no voice processing
* is available.
/** Microphone audio source tuned for voice communications such as VoIP. It
* will for instance take advantage of echo cancellation or automatic gain control
* if available. It otherwise behaves like {@link #DEFAULT} if no voice processing
* is applied.
*/
public static final int VOICE_COMMUNICATION = 7;
}