summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorGlenn Kasten <gkasten@google.com>2014-02-07 21:07:08 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-02-07 21:07:08 +0000
commitc7a38829841b764f509e6a688a507b8c0da82c2e (patch)
tree6e0868e5dfc0bc3700b3da60cd4cbbd609254d31 /include
parenta793625031a3e326a261a0843598c35a5784bbde (diff)
parentc4b8b32dec91a11a83d0a7ab49747606d16d39a5 (diff)
downloadframeworks_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')
-rw-r--r--include/media/nbaio/NBAIO.h5
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;