Fix typo in MicrophoneInfo
Bug: 64038649 Test: run cts Change-Id: I8e84aa5560cdaa5d05d28008f669a292e8b6c96e
This commit is contained in:
@@ -24514,7 +24514,7 @@ package android.media {
|
||||
field public static final int DIRECTIONALITY_HYPER_CARDIOID = 4; // 0x4
|
||||
field public static final int DIRECTIONALITY_OMNI = 1; // 0x1
|
||||
field public static final int DIRECTIONALITY_SUPER_CARDIOID = 5; // 0x5
|
||||
field public static final int DIRECTIONALITY_UNKNOW = 0; // 0x0
|
||||
field public static final int DIRECTIONALITY_UNKNOWN = 0; // 0x0
|
||||
field public static final int LOCATION_MAINBODY = 1; // 0x1
|
||||
field public static final int LOCATION_MAINBODY_MOVABLE = 2; // 0x2
|
||||
field public static final int LOCATION_PERIPHERAL = 3; // 0x3
|
||||
|
||||
@@ -55,7 +55,7 @@ public final class MicrophoneInfo {
|
||||
/**
|
||||
* Unknown microphone directionality.
|
||||
*/
|
||||
public static final int DIRECTIONALITY_UNKNOW = 0;
|
||||
public static final int DIRECTIONALITY_UNKNOWN = 0;
|
||||
|
||||
/**
|
||||
* Microphone directionality type: omni.
|
||||
@@ -104,7 +104,7 @@ public final class MicrophoneInfo {
|
||||
|
||||
/** @hide */
|
||||
@IntDef(flag = true, prefix = { "DIRECTIONALITY_" }, value = {
|
||||
DIRECTIONALITY_UNKNOW,
|
||||
DIRECTIONALITY_UNKNOWN,
|
||||
DIRECTIONALITY_OMNI,
|
||||
DIRECTIONALITY_BI_DIRECTIONAL,
|
||||
DIRECTIONALITY_CARDIOID,
|
||||
@@ -309,7 +309,7 @@ public final class MicrophoneInfo {
|
||||
|
||||
/**
|
||||
* Returns the directionality of microphone. The return value is one of
|
||||
* {@link #DIRECTIONALITY_UNKNOW}, {@link #DIRECTIONALITY_OMNI},
|
||||
* {@link #DIRECTIONALITY_UNKNOWN}, {@link #DIRECTIONALITY_OMNI},
|
||||
* {@link #DIRECTIONALITY_BI_DIRECTIONAL}, {@link #DIRECTIONALITY_CARDIOID},
|
||||
* {@link #DIRECTIONALITY_HYPER_CARDIOID}, or {@link #DIRECTIONALITY_SUPER_CARDIOID}.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user