summaryrefslogtreecommitdiffstats
path: root/include/system
diff options
context:
space:
mode:
authorVignesh Venkatasubramanian <vigneshv@google.com>2014-01-29 09:47:56 -0800
committerVignesh Venkatasubramanian <vigneshv@google.com>2014-01-29 10:11:39 -0800
commit76edb1c0e644fe9f0b9f93939647a34123a60063 (patch)
treeac89137e32550bc770b1c91b2114769a171c1736 /include/system
parent8e4cdc1e8622f5c6ec1995f42b93489d58b982b9 (diff)
downloadsystem_core-76edb1c0e644fe9f0b9f93939647a34123a60063.zip
system_core-76edb1c0e644fe9f0b9f93939647a34123a60063.tar.gz
system_core-76edb1c0e644fe9f0b9f93939647a34123a60063.tar.bz2
Adding opus to list of audio formats
Adding opus to the list of audio formats enum. This CL is part of adding Opus decoding support to android. Change-Id: I41decf426ed3f76c10b27f247b1264010689c759
Diffstat (limited to 'include/system')
-rw-r--r--include/system/audio.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/system/audio.h b/include/system/audio.h
index 2424baf..f662429 100644
--- a/include/system/audio.h
+++ b/include/system/audio.h
@@ -167,6 +167,7 @@ typedef enum {
AUDIO_FORMAT_HE_AAC_V1 = 0x05000000UL,
AUDIO_FORMAT_HE_AAC_V2 = 0x06000000UL,
AUDIO_FORMAT_VORBIS = 0x07000000UL,
+ AUDIO_FORMAT_OPUS = 0x08000000UL,
AUDIO_FORMAT_MAIN_MASK = 0xFF000000UL,
AUDIO_FORMAT_SUB_MASK = 0x00FFFFFFUL,