-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathAudioAttributes.java
More file actions
54 lines (51 loc) · 2.4 KB
/
Copy pathAudioAttributes.java
File metadata and controls
54 lines (51 loc) · 2.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// Generated automatically from android.media.AudioAttributes for testing purposes
package android.media;
import android.os.Parcel;
import android.os.Parcelable;
public class AudioAttributes implements Parcelable
{
protected AudioAttributes() {}
public String toString(){ return null; }
public boolean areHapticChannelsMuted(){ return false; }
public boolean equals(Object p0){ return false; }
public boolean isContentSpatialized(){ return false; }
public int describeContents(){ return 0; }
public int getAllowedCapturePolicy(){ return 0; }
public int getContentType(){ return 0; }
public int getFlags(){ return 0; }
public int getSpatializationBehavior(){ return 0; }
public int getUsage(){ return 0; }
public int getVolumeControlStream(){ return 0; }
public int hashCode(){ return 0; }
public static Parcelable.Creator<AudioAttributes> CREATOR = null;
public static int ALLOW_CAPTURE_BY_ALL = 0;
public static int ALLOW_CAPTURE_BY_NONE = 0;
public static int ALLOW_CAPTURE_BY_SYSTEM = 0;
public static int CONTENT_TYPE_MOVIE = 0;
public static int CONTENT_TYPE_MUSIC = 0;
public static int CONTENT_TYPE_SONIFICATION = 0;
public static int CONTENT_TYPE_SPEECH = 0;
public static int CONTENT_TYPE_UNKNOWN = 0;
public static int FLAG_AUDIBILITY_ENFORCED = 0;
public static int FLAG_HW_AV_SYNC = 0;
public static int FLAG_LOW_LATENCY = 0;
public static int SPATIALIZATION_BEHAVIOR_AUTO = 0;
public static int SPATIALIZATION_BEHAVIOR_NEVER = 0;
public static int USAGE_ALARM = 0;
public static int USAGE_ASSISTANCE_ACCESSIBILITY = 0;
public static int USAGE_ASSISTANCE_NAVIGATION_GUIDANCE = 0;
public static int USAGE_ASSISTANCE_SONIFICATION = 0;
public static int USAGE_ASSISTANT = 0;
public static int USAGE_GAME = 0;
public static int USAGE_MEDIA = 0;
public static int USAGE_NOTIFICATION = 0;
public static int USAGE_NOTIFICATION_COMMUNICATION_DELAYED = 0;
public static int USAGE_NOTIFICATION_COMMUNICATION_INSTANT = 0;
public static int USAGE_NOTIFICATION_COMMUNICATION_REQUEST = 0;
public static int USAGE_NOTIFICATION_EVENT = 0;
public static int USAGE_NOTIFICATION_RINGTONE = 0;
public static int USAGE_UNKNOWN = 0;
public static int USAGE_VOICE_COMMUNICATION = 0;
public static int USAGE_VOICE_COMMUNICATION_SIGNALLING = 0;
public void writeToParcel(Parcel p0, int p1){}
}