Skip to content

Commit 4acee00

Browse files
committed
Add TRACK_FAST for IAudioFlinger::createTrack
Currently not implemented by client or server Change-Id: Ib11dda57db3eeb871bcc7b546e340078776875f5
1 parent 39581f9 commit 4acee00

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

include/media/IAudioFlinger.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,9 @@ class IAudioFlinger : public IInterface
4545

4646
// or-able bits shared by createTrack and openRecord, but not all combinations make sense
4747
enum {
48-
TRACK_DEFAULT = 0,
49-
TRACK_TIMED = 1,
48+
TRACK_DEFAULT = 0, // client requests a default AudioTrack
49+
TRACK_TIMED = 1, // client requests a TimedAudioTrack
50+
TRACK_FAST = 2, // client requests a fast AudioTrack
5051
};
5152
typedef uint32_t track_flags_t;
5253

0 commit comments

Comments
 (0)