diff options
author | Eric Laurent <elaurent@google.com> | 2013-09-11 17:17:46 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2013-09-11 17:17:46 -0700 |
commit | d9c0642c6e3430c90492a1b0c9be435e9cc7b5a9 (patch) | |
tree | 6e85426168ce8b7d769895ce70658e108c26834a | |
parent | 342077e78da9411c252232313bc40fb4ce5f6137 (diff) | |
parent | 53dc297dd685aa7498203fddb3f85e60f2cbc7df (diff) | |
download | system_core-d9c0642c6e3430c90492a1b0c9be435e9cc7b5a9.zip system_core-d9c0642c6e3430c90492a1b0c9be435e9cc7b5a9.tar.gz system_core-d9c0642c6e3430c90492a1b0c9be435e9cc7b5a9.tar.bz2 |
am 53dc297d: Merge "Add HOTWORD audio source to audio.h" into klp-dev
* commit '53dc297dd685aa7498203fddb3f85e60f2cbc7df':
Add HOTWORD audio source to audio.h
-rw-r--r-- | include/system/audio.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/system/audio.h b/include/system/audio.h index b90f4a9..aa7ac02 100644 --- a/include/system/audio.h +++ b/include/system/audio.h @@ -72,6 +72,11 @@ typedef enum { /* play the mix captured by this audio source. */ AUDIO_SOURCE_CNT, AUDIO_SOURCE_MAX = AUDIO_SOURCE_CNT - 1, + AUDIO_SOURCE_HOTWORD = 1999, /* A low-priority, preemptible audio source for + for background software hotword detection. + Same tuning as AUDIO_SOURCE_VOICE_RECOGNITION. + Used only internally to the framework. Not exposed + at the audio HAL. */ } audio_source_t; /* special audio session values |