summaryrefslogtreecommitdiffstats
path: root/include/media
diff options
context:
space:
mode:
authorGlenn Kasten <gkasten@google.com>2013-10-07 19:06:28 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2013-10-07 19:06:29 +0000
commite2b082dde607df6250879df45d61e82e0cf64edf (patch)
tree2c42845e7f04de3dc2954c0fe146a062a622745d /include/media
parent35295078ab59c8c5d143a54d5a55557c3ca62c51 (diff)
parent71de2f20e884a380de58148ccdfc8ee70f2d5974 (diff)
downloadframeworks_av-e2b082dde607df6250879df45d61e82e0cf64edf.zip
frameworks_av-e2b082dde607df6250879df45d61e82e0cf64edf.tar.gz
frameworks_av-e2b082dde607df6250879df45d61e82e0cf64edf.tar.bz2
Merge "Add missing namespace for AudioTimestamp"
Diffstat (limited to 'include/media')
-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