summaryrefslogtreecommitdiffstats
path: root/media/libstagefright/TimeSource.cpp
diff options
context:
space:
mode:
authorAndreas Huber <andih@google.com>2012-10-01 16:03:44 -0700
committerAndreas Huber <andih@google.com>2012-10-01 16:03:44 -0700
commitaf5dd7753e62353411cf0daf3b513c38818e9662 (patch)
treee935f45f925c4ce6d35d16764e2d40db69cc954a /media/libstagefright/TimeSource.cpp
parent0868deae404604b577892413c128d55a2bafc56e (diff)
downloadframeworks_av-af5dd7753e62353411cf0daf3b513c38818e9662.zip
frameworks_av-af5dd7753e62353411cf0daf3b513c38818e9662.tar.gz
frameworks_av-af5dd7753e62353411cf0daf3b513c38818e9662.tar.bz2
ALooper::GetNowUs() now relies on systemTime instead of gettimeofday.
Change-Id: Ia31eb0940b02581327a8bf51af6df135f9ab6de3 related-to-bug: 7266324
Diffstat (limited to 'media/libstagefright/TimeSource.cpp')
-rw-r--r--media/libstagefright/TimeSource.cpp13
1 files changed, 3 insertions, 10 deletions
diff --git a/media/libstagefright/TimeSource.cpp b/media/libstagefright/TimeSource.cpp
index d987fbf..041980f 100644
--- a/media/libstagefright/TimeSource.cpp
+++ b/media/libstagefright/TimeSource.cpp
@@ -17,24 +17,17 @@
#include <stddef.h>
#include <sys/time.h>
+#include <media/stagefright/foundation/ALooper.h>
#include <media/stagefright/TimeSource.h>
namespace android {
SystemTimeSource::SystemTimeSource()
- : mStartTimeUs(GetSystemTimeUs()) {
+ : mStartTimeUs(ALooper::GetNowUs()) {
}
int64_t SystemTimeSource::getRealTimeUs() {
- return GetSystemTimeUs() - mStartTimeUs;
-}
-
-// static
-int64_t SystemTimeSource::GetSystemTimeUs() {
- struct timeval tv;
- gettimeofday(&tv, NULL);
-
- return (int64_t)tv.tv_sec * 1000000 + tv.tv_usec;
+ return ALooper::GetNowUs() - mStartTimeUs;
}
} // namespace android