diff options
author | Glenn Kasten <gkasten@google.com> | 2012-03-26 14:08:34 -0700 |
---|---|---|
committer | Glenn Kasten <gkasten@google.com> | 2012-03-26 14:08:34 -0700 |
commit | 31af5f7bebf656018482ac1a75a3e1780c0c42d1 (patch) | |
tree | 4b5bdac6ef06284ecbd1afb2feaf56c4efef1a15 | |
parent | 31fb85865431f98008608b62964cb1c975ca4b71 (diff) | |
download | system_core-31af5f7bebf656018482ac1a75a3e1780c0c42d1.zip system_core-31af5f7bebf656018482ac1a75a3e1780c0c42d1.tar.gz system_core-31af5f7bebf656018482ac1a75a3e1780c0c42d1.tar.bz2 |
Add AUDIO_POLICY_OUTPUT_FLAG_FAST
Change-Id: I513b84de9c08957e22bff1fc2f25e4f4098111ef
-rw-r--r-- | include/system/audio_policy.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/system/audio_policy.h b/include/system/audio_policy.h index 70fc534..641b177 100644 --- a/include/system/audio_policy.h +++ b/include/system/audio_policy.h @@ -43,10 +43,11 @@ typedef enum { AUDIO_POLICY_OUTPUT_FLAG_NONE = 0x0, // no attributes AUDIO_POLICY_OUTPUT_FLAG_DIRECT = 0x1, // this output directly connects a track to one output // stream (no software mixer) - AUDIO_POLICY_OUTPUT_FLAG_PRIMARY = 0x2 // this output is the primary output of the device. + AUDIO_POLICY_OUTPUT_FLAG_PRIMARY = 0x2, // this output is the primary output of the device. // it is unique and must be present. it is opened by // default and receives routing, audio mode and // volume controls related to voice calls. + AUDIO_POLICY_OUTPUT_FLAG_FAST = 0x4, // output supports "fast tracks", defined elsewhere } audio_policy_output_flags_t; /* device categories used for audio_policy->set_force_use() */ |