From 7a3a2b2f9bb9421dcf83fbd47276e57917078aef Mon Sep 17 00:00:00 2001 From: James Dong Date: Tue, 29 Nov 2011 17:59:29 -0800 Subject: [PATCH] Fix the broken build Change-Id: Ib508514891474d24f14ac69d721b0c9c700a0c3f --- media/libstagefright/ACodec.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/media/libstagefright/ACodec.cpp b/media/libstagefright/ACodec.cpp index e0100d844c..ebf5fab4d1 100644 --- a/media/libstagefright/ACodec.cpp +++ b/media/libstagefright/ACodec.cpp @@ -342,7 +342,7 @@ void ACodec::initiateSetup(const sp &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 &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 &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) { -- 2.11.0