summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorDan Morrill <morrildl@google.com>2010-09-27 10:30:41 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2010-09-27 10:30:41 -0700
commit4e9751f0770c8bfe6f7d57465cba754af5aa942b (patch)
treec3f2da38063579985c1b878d1f3c966f67b5e2aa /core
parentbf47092e1e76224474745b6919febd3aa9df5bcf (diff)
parent898e1e8860dea8490ba9208fca7965adf9cb8298 (diff)
downloadframeworks_base-4e9751f0770c8bfe6f7d57465cba754af5aa942b.zip
frameworks_base-4e9751f0770c8bfe6f7d57465cba754af5aa942b.tar.gz
frameworks_base-4e9751f0770c8bfe6f7d57465cba754af5aa942b.tar.bz2
Merge "Adding a feature to indicate that the device possesses low-latency audio. The specific criteria for low-latency audio are defined in the CDD, but since that hasn't yet been settled for Gingerbread, this change doesn't go into details. We can do a docs change later once GB CDD is final." into gingerbread
Diffstat (limited to 'core')
-rw-r--r--core/java/android/content/pm/PackageManager.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/core/java/android/content/pm/PackageManager.java b/core/java/android/content/pm/PackageManager.java
index 1a3bcc4..cb6b708 100644
--- a/core/java/android/content/pm/PackageManager.java
+++ b/core/java/android/content/pm/PackageManager.java
@@ -636,6 +636,15 @@ public abstract class PackageManager {
/**
* Feature for {@link #getSystemAvailableFeatures} and
+ * {@link #hasSystemFeature}: The device's audio pipeline is low-latency,
+ * more suitable for audio applications sensitive to delays or lag in
+ * sound input or output.
+ */
+ @SdkConstant(SdkConstantType.FEATURE)
+ public static final String FEATURE_AUDIO_LOW_LATENCY = "android.hardware.audio.low_latency";
+
+ /**
+ * Feature for {@link #getSystemAvailableFeatures} and
* {@link #hasSystemFeature}: The device is capable of communicating with
* other devices via Bluetooth.
*/