diff options
author | Glenn Kasten <gkasten@google.com> | 2014-02-07 21:07:08 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2014-02-07 21:07:08 +0000 |
commit | c7a38829841b764f509e6a688a507b8c0da82c2e (patch) | |
tree | 6e0868e5dfc0bc3700b3da60cd4cbbd609254d31 /include/media | |
parent | a793625031a3e326a261a0843598c35a5784bbde (diff) | |
parent | c4b8b32dec91a11a83d0a7ab49747606d16d39a5 (diff) | |
download | frameworks_av-c7a38829841b764f509e6a688a507b8c0da82c2e.zip frameworks_av-c7a38829841b764f509e6a688a507b8c0da82c2e.tar.gz frameworks_av-c7a38829841b764f509e6a688a507b8c0da82c2e.tar.bz2 |
Merge "Change NBAIO_Format from typedef to struct"
Diffstat (limited to 'include/media')
-rw-r--r-- | include/media/nbaio/NBAIO.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/media/nbaio/NBAIO.h b/include/media/nbaio/NBAIO.h index 468508c..4150a09 100644 --- a/include/media/nbaio/NBAIO.h +++ b/include/media/nbaio/NBAIO.h @@ -52,7 +52,10 @@ enum { // the combinations that are actually needed within AudioFlinger. If the list of combinations grows // too large, then this decision should be re-visited. // Sample rate and channel count are explicit, PCM interleaved 16-bit is assumed. -typedef unsigned NBAIO_Format; +struct NBAIO_Format { +//private: + unsigned mPacked; +}; extern const NBAIO_Format Format_Invalid; |