summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorGlenn Kasten <gkasten@google.com>2013-09-23 14:30:36 -0700
committerGlenn Kasten <gkasten@google.com>2013-09-29 14:48:04 -0700
commit71de2f20e884a380de58148ccdfc8ee70f2d5974 (patch)
tree7f61d81b9e3dfc9f097b65f6c973a61cb4a4f144 /include
parent3c928c3a7a9684501664a59082a2583347e47664 (diff)
downloadframeworks_av-71de2f20e884a380de58148ccdfc8ee70f2d5974.zip
frameworks_av-71de2f20e884a380de58148ccdfc8ee70f2d5974.tar.gz
frameworks_av-71de2f20e884a380de58148ccdfc8ee70f2d5974.tar.bz2
Add missing namespace for AudioTimestamp
Change-Id: I775624b71b4446ee6d1599c6614ab8a8340bbfdb
Diffstat (limited to 'include')
-rw-r--r--include/media/AudioTimestamp.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/media/AudioTimestamp.h b/include/media/AudioTimestamp.h
index c29c7e5..99e9c3e 100644
--- a/include/media/AudioTimestamp.h
+++ b/include/media/AudioTimestamp.h
@@ -19,6 +19,8 @@
#include <time.h>
+namespace android {
+
class AudioTimestamp {
public:
AudioTimestamp() : mPosition(0) {
@@ -30,4 +32,6 @@ public:
struct timespec mTime; // corresponding CLOCK_MONOTONIC when frame is expected to present
};
+} // namespace
+
#endif // ANDROID_AUDIO_TIMESTAMP_H