summaryrefslogtreecommitdiffstats
path: root/media/libstagefright/mpeg2ts
diff options
context:
space:
mode:
authorJaesung Chung <jaesung@google.com>2015-05-22 14:52:51 +0900
committerJaesung Chung <jaesung@google.com>2015-05-22 15:22:59 +0900
commitf748dd8cac87ef0bd1deb78a6c8c71e5a9bbe36b (patch)
tree37bc5e1e2738ce3d8ae3f39598821f523326ab12 /media/libstagefright/mpeg2ts
parent5bb07a3bb49f6d96bd182ad0e6b36a67f306096d (diff)
downloadframeworks_av-f748dd8cac87ef0bd1deb78a6c8c71e5a9bbe36b.zip
frameworks_av-f748dd8cac87ef0bd1deb78a6c8c71e5a9bbe36b.tar.gz
frameworks_av-f748dd8cac87ef0bd1deb78a6c8c71e5a9bbe36b.tar.bz2
mpeg2ts: fixing build breakage due to an unmatched argument type
Change-Id: I30e5093d55c29fa62fe8c19095c006861c0ee5a0
Diffstat (limited to 'media/libstagefright/mpeg2ts')
-rw-r--r--media/libstagefright/mpeg2ts/MPEG2TSExtractor.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/media/libstagefright/mpeg2ts/MPEG2TSExtractor.cpp b/media/libstagefright/mpeg2ts/MPEG2TSExtractor.cpp
index 45fae4d..e0ee87b 100644
--- a/media/libstagefright/mpeg2ts/MPEG2TSExtractor.cpp
+++ b/media/libstagefright/mpeg2ts/MPEG2TSExtractor.cpp
@@ -16,6 +16,8 @@
//#define LOG_NDEBUG 0
#define LOG_TAG "MPEG2TSExtractor"
+
+#include <inttypes.h>
#include <utils/Log.h>
#include "include/MPEG2TSExtractor.h"
@@ -233,7 +235,7 @@ void MPEG2TSExtractor::init() {
}
}
- ALOGI("haveAudio=%d, haveVideo=%d, elaspedTime=%lld",
+ ALOGI("haveAudio=%d, haveVideo=%d, elaspedTime=%" PRId64,
haveAudio, haveVideo, ALooper::GetNowUs() - startTime);
}