Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cc1110dc authored by Glenn Kasten's avatar Glenn Kasten
Browse files

Add TRACK_FAST for IAudioFlinger::createTrack

Currently not implemented by client or server

Change-Id: Ib11dda57db3eeb871bcc7b546e340078776875f5
parent b83d38fe
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -45,8 +45,9 @@ public:

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