summaryrefslogtreecommitdiffstats
path: root/media
diff options
context:
space:
mode:
authorJames Dong <jdong@google.com>2011-11-29 17:59:29 -0800
committerJames Dong <jdong@google.com>2011-11-29 18:00:03 -0800
commit7a3a2b2f9bb9421dcf83fbd47276e57917078aef (patch)
treea60a3d3cd5359bc5a8ee1ac2a2bf95ddf25357de /media
parent8afbf8e07fd1d75dfa0a517267beb6c1fa818027 (diff)
downloadframeworks_av-7a3a2b2f9bb9421dcf83fbd47276e57917078aef.zip
frameworks_av-7a3a2b2f9bb9421dcf83fbd47276e57917078aef.tar.gz
frameworks_av-7a3a2b2f9bb9421dcf83fbd47276e57917078aef.tar.bz2
Fix the broken build
Change-Id: Ib508514891474d24f14ac69d721b0c9c700a0c3f
Diffstat (limited to 'media')
-rw-r--r--media/libstagefright/ACodec.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/media/libstagefright/ACodec.cpp b/media/libstagefright/ACodec.cpp
index e0100d8..ebf5fab 100644
--- a/media/libstagefright/ACodec.cpp
+++ b/media/libstagefright/ACodec.cpp
@@ -342,7 +342,7 @@ void ACodec::initiateSetup(const sp<AMessage> &msg) {
}
void ACodec::signalFlush() {
- LOGV("[%s] signalFlush", mComponentName.c_str());
+ ALOGV("[%s] signalFlush", mComponentName.c_str());
(new AMessage(kWhatFlush, id()))->post();
}
@@ -2056,7 +2056,7 @@ bool ACodec::ExecutingState::onMessageReceived(const sp<AMessage> &msg) {
case kWhatFlush:
{
- LOGV("[%s] ExecutingState flushing now "
+ ALOGV("[%s] ExecutingState flushing now "
"(codec owns %d/%d input, %d/%d output).",
mCodec->mComponentName.c_str(),
mCodec->countBuffersOwnedByComponent(kPortIndexInput),
@@ -2437,7 +2437,7 @@ bool ACodec::FlushingState::onMessageReceived(const sp<AMessage> &msg) {
bool ACodec::FlushingState::onOMXEvent(
OMX_EVENTTYPE event, OMX_U32 data1, OMX_U32 data2) {
- LOGV("[%s] FlushingState onOMXEvent(%d,%ld)",
+ ALOGV("[%s] FlushingState onOMXEvent(%d,%ld)",
mCodec->mComponentName.c_str(), event, data1);
switch (event) {