We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39581f9 commit 4acee00Copy full SHA for 4acee00
include/media/IAudioFlinger.h
@@ -45,8 +45,9 @@ class IAudioFlinger : public IInterface
45
46
// or-able bits shared by createTrack and openRecord, but not all combinations make sense
47
enum {
48
- TRACK_DEFAULT = 0,
49
- TRACK_TIMED = 1,
+ TRACK_DEFAULT = 0, // client requests a default AudioTrack
+ TRACK_TIMED = 1, // client requests a TimedAudioTrack
50
+ TRACK_FAST = 2, // client requests a fast AudioTrack
51
};
52
typedef uint32_t track_flags_t;
53
0 commit comments