summaryrefslogtreecommitdiffstats
path: root/media/libstagefright/matroska
diff options
context:
space:
mode:
authorMark Salyzyn <salyzyn@google.com>2014-04-11 09:50:45 -0700
committerMark Salyzyn <salyzyn@google.com>2014-04-11 18:20:54 +0000
commitbc64e09a65bd5ba97706d2420449b9710c9e9c01 (patch)
treeb0b4122174721e31b1be7b39bfc9d24a00cf5265 /media/libstagefright/matroska
parent2a27a640d0d9747659cc609b4384ffead090866e (diff)
downloadframeworks_av-bc64e09a65bd5ba97706d2420449b9710c9e9c01.zip
frameworks_av-bc64e09a65bd5ba97706d2420449b9710c9e9c01.tar.gz
frameworks_av-bc64e09a65bd5ba97706d2420449b9710c9e9c01.tar.bz2
warnings be gone (4/4)
(cherry picked from commit 84333e0475bc911adc16417f4ca327c975cf6c36) (squashed with commit b4a7a2df4c28c3f32b5d877b54831d2cc5d78f81) Change-Id: I55df09714a0e1cb98a44c8fcddac2c646ae5e139
Diffstat (limited to 'media/libstagefright/matroska')
-rw-r--r--media/libstagefright/matroska/MatroskaExtractor.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/media/libstagefright/matroska/MatroskaExtractor.cpp b/media/libstagefright/matroska/MatroskaExtractor.cpp
index 4498746..0be6032 100644
--- a/media/libstagefright/matroska/MatroskaExtractor.cpp
+++ b/media/libstagefright/matroska/MatroskaExtractor.cpp
@@ -33,6 +33,8 @@
#include <media/stagefright/Utils.h>
#include <utils/String8.h>
+#include <inttypes.h>
+
namespace android {
struct DataSourceReader : public mkvparser::IMkvReader {
@@ -409,8 +411,8 @@ void BlockIterator::seek(
if (isAudio || block()->IsKey()) {
// Accept the first key frame
*actualFrameTimeUs = (block()->GetTime(mCluster) + 500LL) / 1000LL;
- ALOGV("Requested seek point: %lld actual: %lld",
- seekTimeUs, actualFrameTimeUs);
+ ALOGV("Requested seek point: %" PRId64 " actual: %" PRId64,
+ seekTimeUs, *actualFrameTimeUs);
break;
}
}