From df64d15042bbd5e0e4933ac49bf3c177dd94752c Mon Sep 17 00:00:00 2001 From: Steve Block Date: Wed, 4 Jan 2012 20:05:49 +0000 Subject: Rename (IF_)LOGI(_IF) to (IF_)ALOGI(_IF) DO NOT MERGE See https://android-git.corp.google.com/g/156801 Bug: 5449033 Change-Id: Ib08fe86d23db91ee153e9f91a99a35c42b9208ea --- cmds/stagefright/record.cpp | 2 +- cmds/stagefright/stream.cpp | 2 +- .../libmediaplayerservice/StagefrightRecorder.cpp | 6 ++--- .../nuplayer/HTTPLiveSource.cpp | 4 +-- media/libmediaplayerservice/nuplayer/NuPlayer.cpp | 6 ++--- .../nuplayer/NuPlayerRenderer.cpp | 4 +-- .../libmediaplayerservice/nuplayer/RTSPSource.cpp | 2 +- .../nuplayer/StreamingSource.cpp | 2 +- media/libstagefright/AwesomePlayer.cpp | 26 +++++++++---------- media/libstagefright/CameraSource.cpp | 4 +-- media/libstagefright/CameraSourceTimeLapse.cpp | 2 +- media/libstagefright/HTTPBase.cpp | 2 +- media/libstagefright/MP3Extractor.cpp | 2 +- media/libstagefright/MPEG4Extractor.cpp | 6 ++--- media/libstagefright/MPEG4Writer.cpp | 14 +++++----- media/libstagefright/NuCachedSource2.cpp | 14 +++++----- media/libstagefright/OMXCodec.cpp | 2 +- media/libstagefright/OggExtractor.cpp | 6 ++--- media/libstagefright/SampleTable.cpp | 2 +- media/libstagefright/VBRISeeker.cpp | 2 +- media/libstagefright/avc_utils.cpp | 4 +-- media/libstagefright/codecs/avc/enc/AVCEncoder.cpp | 2 +- .../codecs/m4v_h263/enc/M4vH263Encoder.cpp | 2 +- media/libstagefright/foundation/hexdump.cpp | 2 +- media/libstagefright/httplive/LiveSession.cpp | 16 ++++++------ media/libstagefright/httplive/M3UParser.cpp | 2 +- .../libstagefright/matroska/MatroskaExtractor.cpp | 2 +- media/libstagefright/mpeg2ts/ATSParser.cpp | 18 ++++++------- media/libstagefright/mpeg2ts/ESQueue.cpp | 16 ++++++------ media/libstagefright/mpeg2ts/MPEG2PSExtractor.cpp | 8 +++--- media/libstagefright/mpeg2ts/MPEG2TSExtractor.cpp | 2 +- media/libstagefright/omx/tests/OMXHarness.cpp | 14 +++++----- media/libstagefright/rtsp/AMPEG4AudioAssembler.cpp | 6 ++--- media/libstagefright/rtsp/APacketSource.cpp | 4 +-- media/libstagefright/rtsp/ARTPConnection.cpp | 4 +-- media/libstagefright/rtsp/ARTPSession.cpp | 6 ++--- media/libstagefright/rtsp/ARTPWriter.cpp | 4 +-- media/libstagefright/rtsp/ARTSPConnection.cpp | 4 +-- media/libstagefright/rtsp/ASessionDescription.cpp | 2 +- media/libstagefright/rtsp/MyHandler.h | 30 +++++++++++----------- media/libstagefright/rtsp/UDPPusher.cpp | 6 ++--- media/mediaserver/main_mediaserver.cpp | 2 +- media/mtp/MtpDevice.cpp | 6 ++--- media/mtp/MtpProperty.cpp | 20 +++++++-------- services/audioflinger/AudioFlinger.cpp | 8 +++--- services/audioflinger/AudioPolicyService.cpp | 2 +- .../libcameraservice/CameraHardwareInterface.h | 4 +-- services/camera/libcameraservice/CameraService.cpp | 4 +-- 48 files changed, 155 insertions(+), 155 deletions(-) diff --git a/cmds/stagefright/record.cpp b/cmds/stagefright/record.cpp index b718299..613435d 100644 --- a/cmds/stagefright/record.cpp +++ b/cmds/stagefright/record.cpp @@ -96,7 +96,7 @@ public: ++mNumFramesOutput; // printf("DummySource::read - returning buffer\n"); - // LOGI("DummySource::read - returning buffer"); + // ALOGI("DummySource::read - returning buffer"); return OK; } diff --git a/cmds/stagefright/stream.cpp b/cmds/stagefright/stream.cpp index 24403dc..0d6c738 100644 --- a/cmds/stagefright/stream.cpp +++ b/cmds/stagefright/stream.cpp @@ -90,7 +90,7 @@ void MyStreamSource::onBufferAvailable(size_t index) { #if 0 if (mNumPacketsSent >= 20000) { - LOGI("signalling discontinuity now"); + ALOGI("signalling discontinuity now"); off64_t offset = 0; CHECK((offset % 188) == 0); diff --git a/media/libmediaplayerservice/StagefrightRecorder.cpp b/media/libmediaplayerservice/StagefrightRecorder.cpp index c0ba091..2be0ae2 100644 --- a/media/libmediaplayerservice/StagefrightRecorder.cpp +++ b/media/libmediaplayerservice/StagefrightRecorder.cpp @@ -1131,7 +1131,7 @@ void StagefrightRecorder::setDefaultProfileIfNecessary() { audioSampleRate == mSampleRate && audioChannels == mAudioChannels) { if (videoCodec == VIDEO_ENCODER_H264) { - LOGI("Force to use AVC baseline profile"); + ALOGI("Force to use AVC baseline profile"); setParamVideoEncoderProfile(OMX_VIDEO_AVCProfileBaseline); } } @@ -1268,7 +1268,7 @@ status_t StagefrightRecorder::setupSurfaceMediaSource() { int32_t frameRate = 0; CHECK (mSurfaceMediaSource->getFormat()->findInt32( kKeyFrameRate, &frameRate)); - LOGI("Frame rate is not explicitly set. Use the current frame " + ALOGI("Frame rate is not explicitly set. Use the current frame " "rate (%d fps)", frameRate); mFrameRate = frameRate; } else { @@ -1319,7 +1319,7 @@ status_t StagefrightRecorder::setupCameraSource( int32_t frameRate = 0; CHECK ((*cameraSource)->getFormat()->findInt32( kKeyFrameRate, &frameRate)); - LOGI("Frame rate is not explicitly set. Use the current frame " + ALOGI("Frame rate is not explicitly set. Use the current frame " "rate (%d fps)", frameRate); mFrameRate = frameRate; } diff --git a/media/libmediaplayerservice/nuplayer/HTTPLiveSource.cpp b/media/libmediaplayerservice/nuplayer/HTTPLiveSource.cpp index 079f6fa..1612df0 100644 --- a/media/libmediaplayerservice/nuplayer/HTTPLiveSource.cpp +++ b/media/libmediaplayerservice/nuplayer/HTTPLiveSource.cpp @@ -111,9 +111,9 @@ status_t NuPlayer::HTTPLiveSource::feedMoreTSData() { break; } else if (n < 0) { if (n != ERROR_END_OF_STREAM) { - LOGI("input data EOS reached, error %ld", n); + ALOGI("input data EOS reached, error %ld", n); } else { - LOGI("input data EOS reached."); + ALOGI("input data EOS reached."); } mTSParser->signalEOS(n); mFinalResult = n; diff --git a/media/libmediaplayerservice/nuplayer/NuPlayer.cpp b/media/libmediaplayerservice/nuplayer/NuPlayer.cpp index 03aa42e..9ef9237 100644 --- a/media/libmediaplayerservice/nuplayer/NuPlayer.cpp +++ b/media/libmediaplayerservice/nuplayer/NuPlayer.cpp @@ -689,7 +689,7 @@ status_t NuPlayer::feedDecoderInputData(bool audio, const sp &msg) { bool timeChange = (type & ATSParser::DISCONTINUITY_TIME) != 0; - LOGI("%s discontinuity (formatChange=%d, time=%d)", + ALOGI("%s discontinuity (formatChange=%d, time=%d)", audio ? "audio" : "video", formatChange, timeChange); if (audio) { @@ -705,7 +705,7 @@ status_t NuPlayer::feedDecoderInputData(bool audio, const sp &msg) { int64_t resumeAtMediaTimeUs; if (extra->findInt64( "resume-at-mediatimeUs", &resumeAtMediaTimeUs)) { - LOGI("suppressing rendering of %s until %lld us", + ALOGI("suppressing rendering of %s until %lld us", audio ? "audio" : "video", resumeAtMediaTimeUs); if (audio) { @@ -838,7 +838,7 @@ void NuPlayer::notifyListener(int msg, int ext1, int ext2) { void NuPlayer::flushDecoder(bool audio, bool needShutdown) { if ((audio && mAudioDecoder == NULL) || (!audio && mVideoDecoder == NULL)) { - LOGI("flushDecoder %s without decoder present", + ALOGI("flushDecoder %s without decoder present", audio ? "audio" : "video"); } diff --git a/media/libmediaplayerservice/nuplayer/NuPlayerRenderer.cpp b/media/libmediaplayerservice/nuplayer/NuPlayerRenderer.cpp index 3539e3f..15259cb 100644 --- a/media/libmediaplayerservice/nuplayer/NuPlayerRenderer.cpp +++ b/media/libmediaplayerservice/nuplayer/NuPlayerRenderer.cpp @@ -228,7 +228,7 @@ bool NuPlayer::Renderer::onDrainAudioQueue() { #if 0 if (numFramesAvailableToWrite == mAudioSink->frameCount()) { - LOGI("audio sink underrun"); + ALOGI("audio sink underrun"); } else { ALOGV("audio queue has %d frames left to play", mAudioSink->frameCount() - numFramesAvailableToWrite); @@ -270,7 +270,7 @@ bool NuPlayer::Renderer::onDrainAudioQueue() { + numFramesPendingPlayout * mAudioSink->msecsPerFrame()) * 1000ll; - // LOGI("realTimeOffsetUs = %lld us", realTimeOffsetUs); + // ALOGI("realTimeOffsetUs = %lld us", realTimeOffsetUs); mAnchorTimeRealUs = ALooper::GetNowUs() + realTimeOffsetUs; diff --git a/media/libmediaplayerservice/nuplayer/RTSPSource.cpp b/media/libmediaplayerservice/nuplayer/RTSPSource.cpp index 6d28298..6eb0d07 100644 --- a/media/libmediaplayerservice/nuplayer/RTSPSource.cpp +++ b/media/libmediaplayerservice/nuplayer/RTSPSource.cpp @@ -226,7 +226,7 @@ void NuPlayer::RTSPSource::onMessageReceived(const sp &msg) { int32_t damaged; if (accessUnit->meta()->findInt32("damaged", &damaged) && damaged) { - LOGI("dropping damaged access unit."); + ALOGI("dropping damaged access unit."); break; } diff --git a/media/libmediaplayerservice/nuplayer/StreamingSource.cpp b/media/libmediaplayerservice/nuplayer/StreamingSource.cpp index 2e63b3b..c997942 100644 --- a/media/libmediaplayerservice/nuplayer/StreamingSource.cpp +++ b/media/libmediaplayerservice/nuplayer/StreamingSource.cpp @@ -58,7 +58,7 @@ status_t NuPlayer::StreamingSource::feedMoreTSData() { ssize_t n = mStreamListener->read(buffer, sizeof(buffer), &extra); if (n == 0) { - LOGI("input data EOS reached."); + ALOGI("input data EOS reached."); mTSParser->signalEOS(ERROR_END_OF_STREAM); mFinalResult = ERROR_END_OF_STREAM; break; diff --git a/media/libstagefright/AwesomePlayer.cpp b/media/libstagefright/AwesomePlayer.cpp index 6fb16f5..6fce890 100644 --- a/media/libstagefright/AwesomePlayer.cpp +++ b/media/libstagefright/AwesomePlayer.cpp @@ -280,9 +280,9 @@ status_t AwesomePlayer::setDataSource_l( } if (!(mFlags & INCOGNITO)) { - LOGI("setDataSource_l('%s')", mUri.string()); + ALOGI("setDataSource_l('%s')", mUri.string()); } else { - LOGI("setDataSource_l(URL suppressed)"); + ALOGI("setDataSource_l(URL suppressed)"); } // The actual work will be done during preparation in the call to @@ -483,7 +483,7 @@ void AwesomePlayer::reset_l() { if (mFlags & PREPARING) { modifyFlags(PREPARE_CANCELLED, SET); if (mConnectingDataSource != NULL) { - LOGI("interrupting the connection process"); + ALOGI("interrupting the connection process"); mConnectingDataSource->disconnect(); } @@ -686,7 +686,7 @@ void AwesomePlayer::onBufferingUpdate() { if ((mFlags & PLAYING) && !eos && (cachedDataRemaining < kLowWaterMarkBytes)) { - LOGI("cache is running low (< %d) , pausing.", + ALOGI("cache is running low (< %d) , pausing.", kLowWaterMarkBytes); modifyFlags(CACHE_UNDERRUN, SET); pause_l(); @@ -695,7 +695,7 @@ void AwesomePlayer::onBufferingUpdate() { notifyListener_l(MEDIA_INFO, MEDIA_INFO_BUFFERING_START); } else if (eos || cachedDataRemaining > kHighWaterMarkBytes) { if (mFlags & CACHE_UNDERRUN) { - LOGI("cache has filled up (> %d), resuming.", + ALOGI("cache has filled up (> %d), resuming.", kHighWaterMarkBytes); modifyFlags(CACHE_UNDERRUN, CLEAR); play_l(); @@ -742,7 +742,7 @@ void AwesomePlayer::onBufferingUpdate() { if ((mFlags & PLAYING) && !eos && (cachedDurationUs < kLowWaterMarkUs)) { - LOGI("cache is running low (%.2f secs) , pausing.", + ALOGI("cache is running low (%.2f secs) , pausing.", cachedDurationUs / 1E6); modifyFlags(CACHE_UNDERRUN, SET); pause_l(); @@ -751,7 +751,7 @@ void AwesomePlayer::onBufferingUpdate() { notifyListener_l(MEDIA_INFO, MEDIA_INFO_BUFFERING_START); } else if (eos || cachedDurationUs > kHighWaterMarkUs) { if (mFlags & CACHE_UNDERRUN) { - LOGI("cache has filled up (%.2f secs), resuming.", + ALOGI("cache has filled up (%.2f secs), resuming.", cachedDurationUs / 1E6); modifyFlags(CACHE_UNDERRUN, CLEAR); play_l(); @@ -1667,7 +1667,7 @@ void AwesomePlayer::onVideoEvent() { if (mSeeking == SEEK_VIDEO_ONLY) { if (mSeekTimeUs > timeUs) { - LOGI("XXX mSeekTimeUs = %lld us, timeUs = %lld us", + ALOGI("XXX mSeekTimeUs = %lld us, timeUs = %lld us", mSeekTimeUs, timeUs); } } @@ -1715,7 +1715,7 @@ void AwesomePlayer::onVideoEvent() { int64_t latenessUs = nowUs - timeUs; if (latenessUs > 0) { - LOGI("after SEEK_VIDEO_ONLY we're late by %.2f secs", latenessUs / 1E6); + ALOGI("after SEEK_VIDEO_ONLY we're late by %.2f secs", latenessUs / 1E6); } } @@ -1730,7 +1730,7 @@ void AwesomePlayer::onVideoEvent() { && mAudioPlayer != NULL && mAudioPlayer->getMediaTimeMapping( &realTimeUs, &mediaTimeUs)) { - LOGI("we're much too late (%.2f secs), video skipping ahead", + ALOGI("we're much too late (%.2f secs), video skipping ahead", latenessUs / 1E6); mVideoBuffer->release(); @@ -1975,7 +1975,7 @@ status_t AwesomePlayer::finishSetDataSource_l() { if (err != OK) { mConnectingDataSource.clear(); - LOGI("mConnectingDataSource->connect() returned %d", err); + ALOGI("mConnectingDataSource->connect() returned %d", err); return err; } @@ -2073,7 +2073,7 @@ status_t AwesomePlayer::finishSetDataSource_l() { } if (mFlags & PREPARE_CANCELLED) { - LOGI("Prepare cancelled while waiting for initial cache fill."); + ALOGI("Prepare cancelled while waiting for initial cache fill."); return UNKNOWN_ERROR; } } @@ -2155,7 +2155,7 @@ void AwesomePlayer::onPrepareAsyncEvent() { Mutex::Autolock autoLock(mLock); if (mFlags & PREPARE_CANCELLED) { - LOGI("prepare was cancelled before doing anything"); + ALOGI("prepare was cancelled before doing anything"); abortPrepare(UNKNOWN_ERROR); return; } diff --git a/media/libstagefright/CameraSource.cpp b/media/libstagefright/CameraSource.cpp index 080faa6..966b457 100755 --- a/media/libstagefright/CameraSource.cpp +++ b/media/libstagefright/CameraSource.cpp @@ -660,7 +660,7 @@ status_t CameraSource::stop() { } if (mCollectStats) { - LOGI("Frames received/encoded/dropped: %d/%d/%d in %lld us", + ALOGI("Frames received/encoded/dropped: %d/%d/%d in %lld us", mNumFramesReceived, mNumFramesEncoded, mNumFramesDropped, mLastFrameTimestampUs - mFirstFrameTimeUs); } @@ -832,7 +832,7 @@ void CameraSource::ProxyListener::dataCallbackTimestamp( } void CameraSource::DeathNotifier::binderDied(const wp& who) { - LOGI("Camera recording proxy died"); + ALOGI("Camera recording proxy died"); } } // namespace android diff --git a/media/libstagefright/CameraSourceTimeLapse.cpp b/media/libstagefright/CameraSourceTimeLapse.cpp index 22c3182..8bf18b2 100644 --- a/media/libstagefright/CameraSourceTimeLapse.cpp +++ b/media/libstagefright/CameraSourceTimeLapse.cpp @@ -260,7 +260,7 @@ bool CameraSourceTimeLapse::skipFrameAndModifyTimeStamp(int64_t *timestampUs) { // Really make sure that this video recording frame will not be dropped. if (*timestampUs < mStartTimeUs) { - LOGI("set timestampUs to start time stamp %lld us", mStartTimeUs); + ALOGI("set timestampUs to start time stamp %lld us", mStartTimeUs); *timestampUs = mStartTimeUs; } return false; diff --git a/media/libstagefright/HTTPBase.cpp b/media/libstagefright/HTTPBase.cpp index 3c5a8a5..5950b37 100644 --- a/media/libstagefright/HTTPBase.cpp +++ b/media/libstagefright/HTTPBase.cpp @@ -115,7 +115,7 @@ status_t HTTPBase::setBandwidthStatCollectFreq(int32_t freqMs) { return BAD_VALUE; } - LOGI("frequency set to %d ms", freqMs); + ALOGI("frequency set to %d ms", freqMs); mBandWidthCollectFreqMs = freqMs; return OK; } diff --git a/media/libstagefright/MP3Extractor.cpp b/media/libstagefright/MP3Extractor.cpp index ab1dc5c..cb82deb 100644 --- a/media/libstagefright/MP3Extractor.cpp +++ b/media/libstagefright/MP3Extractor.cpp @@ -431,7 +431,7 @@ status_t MP3Source::read( int32_t bitrate; if (!mMeta->findInt32(kKeyBitRate, &bitrate)) { // bitrate is in bits/sec. - LOGI("no bitrate"); + ALOGI("no bitrate"); return ERROR_UNSUPPORTED; } diff --git a/media/libstagefright/MPEG4Extractor.cpp b/media/libstagefright/MPEG4Extractor.cpp index 0a69df4..26b8a42 100644 --- a/media/libstagefright/MPEG4Extractor.cpp +++ b/media/libstagefright/MPEG4Extractor.cpp @@ -1500,9 +1500,9 @@ status_t MPEG4Extractor::parseTrackHeader( int32_t dy = U32_AT(&buffer[matrixOffset + 20]); #if 0 - LOGI("x' = %.2f * x + %.2f * y + %.2f", + ALOGI("x' = %.2f * x + %.2f * y + %.2f", a00 / 65536.0f, a01 / 65536.0f, dx / 65536.0f); - LOGI("y' = %.2f * x + %.2f * y + %.2f", + ALOGI("y' = %.2f * x + %.2f * y + %.2f", a10 / 65536.0f, a11 / 65536.0f, dy / 65536.0f); #endif @@ -2036,7 +2036,7 @@ status_t MPEG4Source::read( CHECK_EQ(OK, mSampleTable->getMetaDataForSample( syncSampleIndex, NULL, NULL, &syncSampleTime)); - LOGI("seek to time %lld us => sample at time %lld us, " + ALOGI("seek to time %lld us => sample at time %lld us, " "sync sample at time %lld us", seekTimeUs, sampleTime * 1000000ll / mTimescale, diff --git a/media/libstagefright/MPEG4Writer.cpp b/media/libstagefright/MPEG4Writer.cpp index a368e0a..b808cc0 100755 --- a/media/libstagefright/MPEG4Writer.cpp +++ b/media/libstagefright/MPEG4Writer.cpp @@ -406,7 +406,7 @@ int64_t MPEG4Writer::estimateMoovBoxSize(int32_t bitRate) { size = MAX_MOOV_BOX_SIZE; } - LOGI("limits: %lld/%lld bytes/us, bit rate: %d bps and the estimated" + ALOGI("limits: %lld/%lld bytes/us, bit rate: %d bps and the estimated" " moov size %lld bytes", mMaxFileSizeLimitBytes, mMaxFileDurationLimitUs, bitRate, size); return factor * size; @@ -701,7 +701,7 @@ status_t MPEG4Writer::stop() { mMoovBoxBuffer = NULL; mMoovBoxBufferOffset = 0; } else { - LOGI("The mp4 file will not be streamable."); + ALOGI("The mp4 file will not be streamable."); } CHECK(mBoxes.empty()); @@ -1084,12 +1084,12 @@ bool MPEG4Writer::reachedEOS() { } void MPEG4Writer::setStartTimestampUs(int64_t timeUs) { - LOGI("setStartTimestampUs: %lld", timeUs); + ALOGI("setStartTimestampUs: %lld", timeUs); CHECK(timeUs >= 0); Mutex::Autolock autoLock(mLock); if (mStartTimestampUs < 0 || mStartTimestampUs > timeUs) { mStartTimestampUs = timeUs; - LOGI("Earliest track starting time: %lld", mStartTimestampUs); + ALOGI("Earliest track starting time: %lld", mStartTimestampUs); } } @@ -1481,7 +1481,7 @@ status_t MPEG4Writer::Track::start(MetaData *params) { startTimeOffsetUs = kInitialDelayTimeUs; } startTimeUs += startTimeOffsetUs; - LOGI("Start time offset: %lld us", startTimeOffsetUs); + ALOGI("Start time offset: %lld us", startTimeOffsetUs); } meta->setInt64(kKeyTime, startTimeUs); @@ -2146,10 +2146,10 @@ status_t MPEG4Writer::Track::threadEntry() { sendTrackSummary(hasMultipleTracks); - LOGI("Received total/0-length (%d/%d) buffers and encoded %d frames. - %s", + ALOGI("Received total/0-length (%d/%d) buffers and encoded %d frames. - %s", count, nZeroLengthFrames, mNumSamples, mIsAudio? "audio": "video"); if (mIsAudio) { - LOGI("Audio track drift time: %lld us", mOwner->getDriftTimeUs()); + ALOGI("Audio track drift time: %lld us", mOwner->getDriftTimeUs()); } if (err == ERROR_END_OF_STREAM) { diff --git a/media/libstagefright/NuCachedSource2.cpp b/media/libstagefright/NuCachedSource2.cpp index 20d0632..6e5f8ab 100644 --- a/media/libstagefright/NuCachedSource2.cpp +++ b/media/libstagefright/NuCachedSource2.cpp @@ -302,7 +302,7 @@ void NuCachedSource2::fetchInternal() { mNumRetriesLeft = 0; return; } else if (err != OK) { - LOGI("The attempt to reconnect failed, %d retries remaining", + ALOGI("The attempt to reconnect failed, %d retries remaining", mNumRetriesLeft); return; @@ -321,7 +321,7 @@ void NuCachedSource2::fetchInternal() { mFinalStatus = n; mCache->releasePage(page); } else if (n == 0) { - LOGI("ERROR_END_OF_STREAM"); + ALOGI("ERROR_END_OF_STREAM"); mNumRetriesLeft = 0; mFinalStatus = ERROR_END_OF_STREAM; @@ -329,7 +329,7 @@ void NuCachedSource2::fetchInternal() { mCache->releasePage(page); } else { if (mFinalStatus != OK) { - LOGI("retrying a previously failed read succeeded."); + ALOGI("retrying a previously failed read succeeded."); } mNumRetriesLeft = kMaxNumRetries; mFinalStatus = OK; @@ -355,7 +355,7 @@ void NuCachedSource2::onFetch() { if (mFetching || keepAlive) { if (keepAlive) { - LOGI("Keep alive"); + ALOGI("Keep alive"); } fetchInternal(); @@ -363,7 +363,7 @@ void NuCachedSource2::onFetch() { mLastFetchTimeUs = ALooper::GetNowUs(); if (mFetching && mCache->totalSize() >= mHighwaterThresholdBytes) { - LOGI("Cache full, done prefetching for now"); + ALOGI("Cache full, done prefetching for now"); mFetching = false; if (mDisconnectAtHighwatermark @@ -448,7 +448,7 @@ void NuCachedSource2::restartPrefetcherIfNecessary_l( size_t actualBytes = mCache->releaseFromStart(maxBytes); mCacheOffset += actualBytes; - LOGI("restarting prefetcher, totalSize = %d", mCache->totalSize()); + ALOGI("restarting prefetcher, totalSize = %d", mCache->totalSize()); mFetching = true; } @@ -584,7 +584,7 @@ status_t NuCachedSource2::seekInternal_l(off64_t offset) { return OK; } - LOGI("new range: offset= %lld", offset); + ALOGI("new range: offset= %lld", offset); mCacheOffset = offset; diff --git a/media/libstagefright/OMXCodec.cpp b/media/libstagefright/OMXCodec.cpp index f9f92d2..2dc19fd 100755 --- a/media/libstagefright/OMXCodec.cpp +++ b/media/libstagefright/OMXCodec.cpp @@ -179,7 +179,7 @@ static const CodecInfo kEncoderInfo[] = { #undef OPTIONAL -#define CODEC_LOGI(x, ...) LOGI("[%s] "x, mComponentName, ##__VA_ARGS__) +#define CODEC_LOGI(x, ...) ALOGI("[%s] "x, mComponentName, ##__VA_ARGS__) #define CODEC_LOGV(x, ...) ALOGV("[%s] "x, mComponentName, ##__VA_ARGS__) #define CODEC_LOGE(x, ...) LOGE("[%s] "x, mComponentName, ##__VA_ARGS__) diff --git a/media/libstagefright/OggExtractor.cpp b/media/libstagefright/OggExtractor.cpp index 5a68d79..b7a9faf 100644 --- a/media/libstagefright/OggExtractor.cpp +++ b/media/libstagefright/OggExtractor.cpp @@ -189,9 +189,9 @@ status_t OggSource::read( #if 0 int64_t timeUs; if (packet->meta_data()->findInt64(kKeyTime, &timeUs)) { - LOGI("found time = %lld us", timeUs); + ALOGI("found time = %lld us", timeUs); } else { - LOGI("NO time"); + ALOGI("NO time"); } #endif @@ -777,7 +777,7 @@ void MyVorbisExtractor::parseFileMetaData() { const char *comment = mVc.user_comments[i]; size_t commentLength = mVc.comment_lengths[i]; parseVorbisComment(mFileMeta, comment, commentLength); - //LOGI("comment #%d: '%s'", i + 1, mVc.user_comments[i]); + //ALOGI("comment #%d: '%s'", i + 1, mVc.user_comments[i]); } } diff --git a/media/libstagefright/SampleTable.cpp b/media/libstagefright/SampleTable.cpp index 3e287fa..305c9bb 100644 --- a/media/libstagefright/SampleTable.cpp +++ b/media/libstagefright/SampleTable.cpp @@ -347,7 +347,7 @@ status_t SampleTable::setTimeToSampleParams( status_t SampleTable::setCompositionTimeToSampleParams( off64_t data_offset, size_t data_size) { - LOGI("There are reordered frames present."); + ALOGI("There are reordered frames present."); if (mCompositionTimeDeltaEntries != NULL || data_size < 8) { return ERROR_MALFORMED; diff --git a/media/libstagefright/VBRISeeker.cpp b/media/libstagefright/VBRISeeker.cpp index ecff538..6ac5a83 100644 --- a/media/libstagefright/VBRISeeker.cpp +++ b/media/libstagefright/VBRISeeker.cpp @@ -120,7 +120,7 @@ sp VBRISeeker::CreateFromSource( delete[] buffer; buffer = NULL; - LOGI("Found VBRI header."); + ALOGI("Found VBRI header."); return seeker; } diff --git a/media/libstagefright/avc_utils.cpp b/media/libstagefright/avc_utils.cpp index 1ed9e57..65c1848 100644 --- a/media/libstagefright/avc_utils.cpp +++ b/media/libstagefright/avc_utils.cpp @@ -290,7 +290,7 @@ sp MakeAVCCodecSpecificData(const sp &accessUnit) { memcpy(out, picParamSet->data(), picParamSet->size()); #if 0 - LOGI("AVC seq param set"); + ALOGI("AVC seq param set"); hexdump(seqParamSet->data(), seqParamSet->size()); #endif @@ -301,7 +301,7 @@ sp MakeAVCCodecSpecificData(const sp &accessUnit) { meta->setInt32(kKeyWidth, width); meta->setInt32(kKeyHeight, height); - LOGI("found AVC codec config (%d x %d, %s-profile level %d.%d)", + ALOGI("found AVC codec config (%d x %d, %s-profile level %d.%d)", width, height, AVCProfileToString(profile), level / 10, level % 10); return meta; diff --git a/media/libstagefright/codecs/avc/enc/AVCEncoder.cpp b/media/libstagefright/codecs/avc/enc/AVCEncoder.cpp index 18c5550..37df634 100644 --- a/media/libstagefright/codecs/avc/enc/AVCEncoder.cpp +++ b/media/libstagefright/codecs/avc/enc/AVCEncoder.cpp @@ -178,7 +178,7 @@ AVCEncoder::AVCEncoder( mInputFrameData(NULL), mGroup(NULL) { - LOGI("Construct software AVCEncoder"); + ALOGI("Construct software AVCEncoder"); mHandle = new tagAVCHandle; memset(mHandle, 0, sizeof(tagAVCHandle)); diff --git a/media/libstagefright/codecs/m4v_h263/enc/M4vH263Encoder.cpp b/media/libstagefright/codecs/m4v_h263/enc/M4vH263Encoder.cpp index 2e3d12d..1188780 100644 --- a/media/libstagefright/codecs/m4v_h263/enc/M4vH263Encoder.cpp +++ b/media/libstagefright/codecs/m4v_h263/enc/M4vH263Encoder.cpp @@ -178,7 +178,7 @@ M4vH263Encoder::M4vH263Encoder( mInputFrameData(NULL), mGroup(NULL) { - LOGI("Construct software M4vH263Encoder"); + ALOGI("Construct software M4vH263Encoder"); mHandle = new tagvideoEncControls; memset(mHandle, 0, sizeof(tagvideoEncControls)); diff --git a/media/libstagefright/foundation/hexdump.cpp b/media/libstagefright/foundation/hexdump.cpp index 9f6bf9e..16c1ca5 100644 --- a/media/libstagefright/foundation/hexdump.cpp +++ b/media/libstagefright/foundation/hexdump.cpp @@ -67,7 +67,7 @@ void hexdump(const void *_data, size_t size) { } } - LOGI("%s", line.c_str()); + ALOGI("%s", line.c_str()); offset += 16; } diff --git a/media/libstagefright/httplive/LiveSession.cpp b/media/libstagefright/httplive/LiveSession.cpp index 6f4b875..ee76bcd 100644 --- a/media/libstagefright/httplive/LiveSession.cpp +++ b/media/libstagefright/httplive/LiveSession.cpp @@ -168,9 +168,9 @@ void LiveSession::onConnect(const sp &msg) { } if (!(mFlags & kFlagIncognito)) { - LOGI("onConnect '%s'", url.c_str()); + ALOGI("onConnect '%s'", url.c_str()); } else { - LOGI("onConnect "); + ALOGI("onConnect "); } mMasterURL = url; @@ -207,7 +207,7 @@ void LiveSession::onConnect(const sp &msg) { } void LiveSession::onDisconnect() { - LOGI("onDisconnect"); + ALOGI("onDisconnect"); mDataSource->queueEOS(ERROR_END_OF_STREAM); @@ -596,7 +596,7 @@ rinse_repeat: int32_t newSeqNumber = firstSeqNumberInPlaylist + index; if (newSeqNumber != mSeqNumber) { - LOGI("seeking to seq no %d", newSeqNumber); + ALOGI("seeking to seq no %d", newSeqNumber); mSeqNumber = newSeqNumber; @@ -633,7 +633,7 @@ rinse_repeat: if (mPrevBandwidthIndex != (ssize_t)bandwidthIndex) { // Go back to the previous bandwidth. - LOGI("new bandwidth does not have the sequence number " + ALOGI("new bandwidth does not have the sequence number " "we're looking for, switching back to previous bandwidth"); mLastPlaylistFetchTimeUs = -1; @@ -653,7 +653,7 @@ rinse_repeat: // we've missed the boat, let's start from the lowest sequence // number available and signal a discontinuity. - LOGI("We've missed the boat, restarting playback."); + ALOGI("We've missed the boat, restarting playback."); mSeqNumber = lastSeqNumberInPlaylist; explicitDiscontinuity = true; @@ -721,7 +721,7 @@ rinse_repeat: return; } - LOGI("Retrying with a different bandwidth stream."); + ALOGI("Retrying with a different bandwidth stream."); mLastPlaylistFetchTimeUs = -1; bandwidthIndex = getBandwidthIndex(); @@ -744,7 +744,7 @@ rinse_repeat: if (seekDiscontinuity || explicitDiscontinuity || bandwidthChanged) { // Signal discontinuity. - LOGI("queueing discontinuity (seek=%d, explicit=%d, bandwidthChanged=%d)", + ALOGI("queueing discontinuity (seek=%d, explicit=%d, bandwidthChanged=%d)", seekDiscontinuity, explicitDiscontinuity, bandwidthChanged); sp tmp = new ABuffer(188); diff --git a/media/libstagefright/httplive/M3UParser.cpp b/media/libstagefright/httplive/M3UParser.cpp index a50970e..f7bbc3e 100644 --- a/media/libstagefright/httplive/M3UParser.cpp +++ b/media/libstagefright/httplive/M3UParser.cpp @@ -169,7 +169,7 @@ status_t M3UParser::parse(const void *_data, size_t size) { line.setTo(&data[offset], offsetLF - offset); } - // LOGI("#%s#", line.c_str()); + // ALOGI("#%s#", line.c_str()); if (line.empty()) { offset = offsetLF + 1; diff --git a/media/libstagefright/matroska/MatroskaExtractor.cpp b/media/libstagefright/matroska/MatroskaExtractor.cpp index 474c794..f215f52 100644 --- a/media/libstagefright/matroska/MatroskaExtractor.cpp +++ b/media/libstagefright/matroska/MatroskaExtractor.cpp @@ -563,7 +563,7 @@ MatroskaExtractor::MatroskaExtractor(const sp &source) #if 0 const mkvparser::SegmentInfo *info = mSegment->GetInfo(); - LOGI("muxing app: %s, writing app: %s", + ALOGI("muxing app: %s, writing app: %s", info->GetMuxingAppAsUTF8(), info->GetWritingAppAsUTF8()); #endif diff --git a/media/libstagefright/mpeg2ts/ATSParser.cpp b/media/libstagefright/mpeg2ts/ATSParser.cpp index da911e4..576693a 100644 --- a/media/libstagefright/mpeg2ts/ATSParser.cpp +++ b/media/libstagefright/mpeg2ts/ATSParser.cpp @@ -282,7 +282,7 @@ status_t ATSParser::Program::parseProgramMap(ABitReader *br) { ssize_t index = mStreams.indexOfKey(info.mPID); if (index >= 0 && mStreams.editValueAt(index)->type() != info.mType) { - LOGI("uh oh. stream PIDs have changed."); + ALOGI("uh oh. stream PIDs have changed."); PIDsChanged = true; break; } @@ -290,18 +290,18 @@ status_t ATSParser::Program::parseProgramMap(ABitReader *br) { if (PIDsChanged) { #if 0 - LOGI("before:"); + ALOGI("before:"); for (size_t i = 0; i < mStreams.size(); ++i) { sp stream = mStreams.editValueAt(i); - LOGI("PID 0x%08x => type 0x%02x", stream->pid(), stream->type()); + ALOGI("PID 0x%08x => type 0x%02x", stream->pid(), stream->type()); } - LOGI("after:"); + ALOGI("after:"); for (size_t i = 0; i < infos.size(); ++i) { StreamInfo &info = infos.editItemAt(i); - LOGI("PID 0x%08x => type 0x%02x", info.mPID, info.mType); + ALOGI("PID 0x%08x => type 0x%02x", info.mPID, info.mType); } #endif @@ -340,7 +340,7 @@ status_t ATSParser::Program::parseProgramMap(ABitReader *br) { } if (!success) { - LOGI("Stream PIDs changed and we cannot recover."); + ALOGI("Stream PIDs changed and we cannot recover."); return ERROR_MALFORMED; } } @@ -475,7 +475,7 @@ status_t ATSParser::Stream::parse( // Increment in multiples of 64K. neededSize = (neededSize + 65535) & ~65535; - LOGI("resizing buffer to %d bytes", neededSize); + ALOGI("resizing buffer to %d bytes", neededSize); sp newBuffer = new ABuffer(neededSize); memcpy(newBuffer->data(), mBuffer->data(), mBuffer->size()); @@ -634,7 +634,7 @@ status_t ATSParser::Stream::parsePES(ABitReader *br) { CHECK_EQ(br->getBits(1), 1u); ALOGV("PTS = %llu", PTS); - // LOGI("PTS = %.2f secs", PTS / 90000.0f); + // ALOGI("PTS = %.2f secs", PTS / 90000.0f); optional_bytes_remaining -= 5; @@ -968,7 +968,7 @@ status_t ATSParser::parseTS(ABitReader *br) { unsigned continuity_counter = br->getBits(4); ALOGV("continuity_counter = %u", continuity_counter); - // LOGI("PID = 0x%04x, continuity_counter = %u", PID, continuity_counter); + // ALOGI("PID = 0x%04x, continuity_counter = %u", PID, continuity_counter); if (adaptation_field_control == 2 || adaptation_field_control == 3) { parseAdaptationField(br); diff --git a/media/libstagefright/mpeg2ts/ESQueue.cpp b/media/libstagefright/mpeg2ts/ESQueue.cpp index edb4232..05c87fd 100644 --- a/media/libstagefright/mpeg2ts/ESQueue.cpp +++ b/media/libstagefright/mpeg2ts/ESQueue.cpp @@ -144,7 +144,7 @@ status_t ElementaryStreamQueue::appendData( } if (startOffset > 0) { - LOGI("found something resembling an H.264/MPEG syncword at " + ALOGI("found something resembling an H.264/MPEG syncword at " "offset %ld", startOffset); } @@ -177,7 +177,7 @@ status_t ElementaryStreamQueue::appendData( } if (startOffset > 0) { - LOGI("found something resembling an H.264/MPEG syncword at " + ALOGI("found something resembling an H.264/MPEG syncword at " "offset %ld", startOffset); } @@ -210,7 +210,7 @@ status_t ElementaryStreamQueue::appendData( } if (startOffset > 0) { - LOGI("found something resembling an AAC syncword at offset %ld", + ALOGI("found something resembling an AAC syncword at offset %ld", startOffset); } @@ -237,7 +237,7 @@ status_t ElementaryStreamQueue::appendData( } if (startOffset > 0) { - LOGI("found something resembling an MPEG audio " + ALOGI("found something resembling an MPEG audio " "syncword at offset %ld", startOffset); } @@ -280,7 +280,7 @@ status_t ElementaryStreamQueue::appendData( #if 0 if (mMode == AAC) { - LOGI("size = %d, timeUs = %.2f secs", size, timeUs / 1E6); + ALOGI("size = %d, timeUs = %.2f secs", size, timeUs / 1E6); hexdump(data, size); } #endif @@ -337,7 +337,7 @@ sp ElementaryStreamQueue::dequeueAccessUnitAAC() { CHECK(mFormat->findInt32(kKeySampleRate, &sampleRate)); CHECK(mFormat->findInt32(kKeyChannelCount, &numChannels)); - LOGI("found AAC codec config (%d Hz, %d channels)", + ALOGI("found AAC codec config (%d Hz, %d channels)", sampleRate, numChannels); } else { // profile_ObjectType, sampling_frequency_index, private_bits, @@ -714,7 +714,7 @@ sp ElementaryStreamQueue::dequeueAccessUnitMPEGVideo() { mFormat->setInt32(kKeyWidth, width); mFormat->setInt32(kKeyHeight, height); - LOGI("found MPEG2 video codec config (%d x %d)", width, height); + ALOGI("found MPEG2 video codec config (%d x %d)", width, height); sp csd = new ABuffer(offset); memcpy(csd->data(), data, offset); @@ -880,7 +880,7 @@ sp ElementaryStreamQueue::dequeueAccessUnitMPEG4Video() { mFormat->setInt32(kKeyWidth, width); mFormat->setInt32(kKeyHeight, height); - LOGI("found MPEG4 video codec config (%d x %d)", + ALOGI("found MPEG4 video codec config (%d x %d)", width, height); sp csd = new ABuffer(offset); diff --git a/media/libstagefright/mpeg2ts/MPEG2PSExtractor.cpp b/media/libstagefright/mpeg2ts/MPEG2PSExtractor.cpp index df30a9c..727c931 100644 --- a/media/libstagefright/mpeg2ts/MPEG2PSExtractor.cpp +++ b/media/libstagefright/mpeg2ts/MPEG2PSExtractor.cpp @@ -315,7 +315,7 @@ ssize_t MPEG2PSExtractor::dequeuePES() { unsigned descriptor_tag = br.getBits(8); unsigned descriptor_length = br.getBits(8); - LOGI("found descriptor tag 0x%02x of length %u", + ALOGI("found descriptor tag 0x%02x of length %u", descriptor_tag, descriptor_length); if (offset + 2 + descriptor_length > program_stream_info_length) { @@ -338,7 +338,7 @@ ssize_t MPEG2PSExtractor::dequeuePES() { unsigned stream_type = br.getBits(8); unsigned elementary_stream_id = br.getBits(8); - LOGI("elementary stream id 0x%02x has stream type 0x%02x", + ALOGI("elementary stream id 0x%02x has stream type 0x%02x", elementary_stream_id, stream_type); mStreamTypeByESID.add(elementary_stream_id, stream_type); @@ -409,7 +409,7 @@ ssize_t MPEG2PSExtractor::dequeuePES() { CHECK_EQ(br.getBits(1), 1u); ALOGV("PTS = %llu", PTS); - // LOGI("PTS = %.2f secs", PTS / 90000.0f); + // ALOGI("PTS = %.2f secs", PTS / 90000.0f); optional_bytes_remaining -= 5; @@ -568,7 +568,7 @@ MPEG2PSExtractor::Track::Track( if (supported) { mQueue = new ElementaryStreamQueue(mode); } else { - LOGI("unsupported stream ID 0x%02x", stream_id); + ALOGI("unsupported stream ID 0x%02x", stream_id); } } diff --git a/media/libstagefright/mpeg2ts/MPEG2TSExtractor.cpp b/media/libstagefright/mpeg2ts/MPEG2TSExtractor.cpp index 17cf45a..03033f5 100644 --- a/media/libstagefright/mpeg2ts/MPEG2TSExtractor.cpp +++ b/media/libstagefright/mpeg2ts/MPEG2TSExtractor.cpp @@ -199,7 +199,7 @@ void MPEG2TSExtractor::init() { } } - LOGI("haveAudio=%d, haveVideo=%d", haveAudio, haveVideo); + ALOGI("haveAudio=%d, haveVideo=%d", haveAudio, haveVideo); } status_t MPEG2TSExtractor::feedMore() { diff --git a/media/libstagefright/omx/tests/OMXHarness.cpp b/media/libstagefright/omx/tests/OMXHarness.cpp index d4354db..3a15a5e 100644 --- a/media/libstagefright/omx/tests/OMXHarness.cpp +++ b/media/libstagefright/omx/tests/OMXHarness.cpp @@ -571,7 +571,7 @@ status_t Harness::testSeek( const char *mime = GetMimeFromComponentRole(componentRole); if (!mime) { - LOGI("Cannot perform seek test with this componentRole (%s)", + ALOGI("Cannot perform seek test with this componentRole (%s)", componentRole); return OK; @@ -597,7 +597,7 @@ status_t Harness::testSeek( int64_t durationUs; CHECK(source->getFormat()->findInt64(kKeyDuration, &durationUs)); - LOGI("stream duration is %lld us (%.2f secs)", + ALOGI("stream duration is %lld us (%.2f secs)", durationUs, durationUs / 1E6); static const int32_t kNumIterations = 5000; @@ -617,19 +617,19 @@ status_t Harness::testSeek( requestedSeekTimeUs = -1; - LOGI("requesting linear read"); + ALOGI("requesting linear read"); } else { if (i == 0 || r < 0.55) { // 5% chance of seeking beyond end of stream. requestedSeekTimeUs = durationUs; - LOGI("requesting seek beyond EOF"); + ALOGI("requesting seek beyond EOF"); } else { requestedSeekTimeUs = (int64_t)(uniform_rand() * durationUs); - LOGI("requesting seek to %lld us (%.2f secs)", + ALOGI("requesting seek to %lld us (%.2f secs)", requestedSeekTimeUs, requestedSeekTimeUs / 1E6); } @@ -649,7 +649,7 @@ status_t Harness::testSeek( buffer = NULL; } - LOGI("nearest keyframe is at %lld us (%.2f secs)", + ALOGI("nearest keyframe is at %lld us (%.2f secs)", actualSeekTimeUs, actualSeekTimeUs / 1E6); } @@ -733,7 +733,7 @@ status_t Harness::testSeek( status_t Harness::test( const char *componentName, const char *componentRole) { printf("testing %s [%s] ... ", componentName, componentRole); - LOGI("testing %s [%s].", componentName, componentRole); + ALOGI("testing %s [%s].", componentName, componentRole); status_t err1 = testStateTransitions(componentName, componentRole); status_t err2 = testSeek(componentName, componentRole); diff --git a/media/libstagefright/rtsp/AMPEG4AudioAssembler.cpp b/media/libstagefright/rtsp/AMPEG4AudioAssembler.cpp index 11d9c22..b0c7007 100644 --- a/media/libstagefright/rtsp/AMPEG4AudioAssembler.cpp +++ b/media/libstagefright/rtsp/AMPEG4AudioAssembler.cpp @@ -196,7 +196,7 @@ static status_t parseAudioSpecificConfig(ABitReader *bits, sp *asc) { unsigned syncExtensionType = bits->getBits(11); if (syncExtensionType == 0x2b7) { - LOGI("found syncExtension"); + ALOGI("found syncExtension"); CHECK_EQ(parseAudioObjectType(bits, &extensionAudioObjectType), (status_t)OK); @@ -217,7 +217,7 @@ static status_t parseAudioSpecificConfig(ABitReader *bits, sp *asc) { // Apparently an extension is always considered an even // multiple of 8 bits long. - LOGI("Skipping %d bits after sync extension", + ALOGI("Skipping %d bits after sync extension", 8 - (numBitsInExtension & 7)); bits->skipBits(8 - (numBitsInExtension & 7)); @@ -424,7 +424,7 @@ sp AMPEG4AudioAssembler::removeLATMFraming(const sp &buffer) { } if (offset < buffer->size()) { - LOGI("ignoring %d bytes of trailing data", buffer->size() - offset); + ALOGI("ignoring %d bytes of trailing data", buffer->size() - offset); } CHECK_LE(offset, buffer->size()); diff --git a/media/libstagefright/rtsp/APacketSource.cpp b/media/libstagefright/rtsp/APacketSource.cpp index 3f4cdb5..6cf1301 100644 --- a/media/libstagefright/rtsp/APacketSource.cpp +++ b/media/libstagefright/rtsp/APacketSource.cpp @@ -193,7 +193,7 @@ static sp MakeAVCCodecSpecificData( if (i == 0) { FindAVCDimensions(nal, width, height); - LOGI("dimensions %dx%d", *width, *height); + ALOGI("dimensions %dx%d", *width, *height); } } @@ -371,7 +371,7 @@ static sp MakeMPEG4VideoCodecSpecificData( return NULL; } - LOGI("VOL dimensions = %dx%d", *width, *height); + ALOGI("VOL dimensions = %dx%d", *width, *height); size_t len1 = config->size() + GetSizeWidth(config->size()) + 1; size_t len2 = len1 + GetSizeWidth(len1) + 1 + 13; diff --git a/media/libstagefright/rtsp/ARTPConnection.cpp b/media/libstagefright/rtsp/ARTPConnection.cpp index c5d8740..853ea14 100644 --- a/media/libstagefright/rtsp/ARTPConnection.cpp +++ b/media/libstagefright/rtsp/ARTPConnection.cpp @@ -396,7 +396,7 @@ status_t ARTPConnection::receive(StreamInfo *s, bool receiveRTP) { buffer->setRange(0, nbytes); - // LOGI("received %d bytes.", buffer->size()); + // ALOGI("received %d bytes.", buffer->size()); status_t err; if (receiveRTP) { @@ -606,7 +606,7 @@ status_t ARTPConnection::parseSR( uint32_t rtpTime = u32at(&data[16]); #if 0 - LOGI("XXX timeUpdate: ssrc=0x%08x, rtpTime %u == ntpTime %.3f", + ALOGI("XXX timeUpdate: ssrc=0x%08x, rtpTime %u == ntpTime %.3f", id, rtpTime, (ntpTime >> 32) + (double)(ntpTime & 0xffffffff) / (1ll << 32)); diff --git a/media/libstagefright/rtsp/ARTPSession.cpp b/media/libstagefright/rtsp/ARTPSession.cpp index c6bcb12..5783beb 100644 --- a/media/libstagefright/rtsp/ARTPSession.cpp +++ b/media/libstagefright/rtsp/ARTPSession.cpp @@ -159,7 +159,7 @@ void ARTPSession::onMessageReceived(const sp &msg) { printf("access unit complete size=%d\tntp-time=0x%016llx\n", accessUnit->size(), ntpTime); #else - LOGI("access unit complete, size=%d, ntp-time=%llu", + ALOGI("access unit complete, size=%d, ntp-time=%llu", accessUnit->size(), ntpTime); hexdump(accessUnit->data(), accessUnit->size()); #endif @@ -170,7 +170,7 @@ void ARTPSession::onMessageReceived(const sp &msg) { CHECK(!memcmp("\x00\x00\x00\x01", accessUnit->data(), 4)); unsigned x = accessUnit->data()[4]; - LOGI("access unit complete: nalType=0x%02x, nalRefIdc=0x%02x", + ALOGI("access unit complete: nalType=0x%02x, nalRefIdc=0x%02x", x & 0x1f, (x & 0x60) >> 5); #endif @@ -181,7 +181,7 @@ void ARTPSession::onMessageReceived(const sp &msg) { int32_t damaged; if (accessUnit->meta()->findInt32("damaged", &damaged) && damaged != 0) { - LOGI("ignoring damaged AU"); + ALOGI("ignoring damaged AU"); } else #endif { diff --git a/media/libstagefright/rtsp/ARTPWriter.cpp b/media/libstagefright/rtsp/ARTPWriter.cpp index b602511..0d07043 100644 --- a/media/libstagefright/rtsp/ARTPWriter.cpp +++ b/media/libstagefright/rtsp/ARTPWriter.cpp @@ -269,7 +269,7 @@ void ARTPWriter::onRead(const sp &msg) { status_t err = mSource->read(&mediaBuf); if (err != OK) { - LOGI("reached EOS."); + ALOGI("reached EOS."); Mutex::Autolock autoLock(mLock); mFlags |= kFlagEOS; @@ -520,7 +520,7 @@ void ARTPWriter::dumpSessionDesc() { sdp.append("a=fmtp:" PT_STR " octed-align\r\n"); } - LOGI("%s", sdp.c_str()); + ALOGI("%s", sdp.c_str()); } void ARTPWriter::makeH264SPropParamSets(MediaBuffer *buffer) { diff --git a/media/libstagefright/rtsp/ARTSPConnection.cpp b/media/libstagefright/rtsp/ARTSPConnection.cpp index d8107bc..12cca13 100644 --- a/media/libstagefright/rtsp/ARTSPConnection.cpp +++ b/media/libstagefright/rtsp/ARTSPConnection.cpp @@ -624,7 +624,7 @@ bool ARTSPConnection::receiveRTSPReponse() { sp response = new ARTSPResponse; response->mStatusLine = statusLine; - LOGI("status: %s", response->mStatusLine.c_str()); + ALOGI("status: %s", response->mStatusLine.c_str()); ssize_t space1 = response->mStatusLine.find(" "); if (space1 < 0) { @@ -740,7 +740,7 @@ bool ARTSPConnection::receiveRTSPReponse() { msg->setMessage("reply", reply); msg->setString("request", request.c_str(), request.size()); - LOGI("re-sending request with authentication headers..."); + ALOGI("re-sending request with authentication headers..."); onSendRequest(msg); return true; diff --git a/media/libstagefright/rtsp/ASessionDescription.cpp b/media/libstagefright/rtsp/ASessionDescription.cpp index 56fdd9d..a9b3330 100644 --- a/media/libstagefright/rtsp/ASessionDescription.cpp +++ b/media/libstagefright/rtsp/ASessionDescription.cpp @@ -80,7 +80,7 @@ bool ASessionDescription::parse(const void *data, size_t size) { return false; } - LOGI("%s", line.c_str()); + ALOGI("%s", line.c_str()); switch (line.c_str()[0]) { case 'v': diff --git a/media/libstagefright/rtsp/MyHandler.h b/media/libstagefright/rtsp/MyHandler.h index 21ef298..53691d1 100644 --- a/media/libstagefright/rtsp/MyHandler.h +++ b/media/libstagefright/rtsp/MyHandler.h @@ -155,7 +155,7 @@ struct MyHandler : public AHandler { mSessionURL.append(StringPrintf("%u", port)); mSessionURL.append(path); - LOGI("rewritten session url: '%s'", mSessionURL.c_str()); + ALOGI("rewritten session url: '%s'", mSessionURL.c_str()); } mSessionHost = host; @@ -283,7 +283,7 @@ struct MyHandler : public AHandler { if (!GetAttribute(transport.c_str(), "server_port", &server_port)) { - LOGI("Missing 'server_port' field in Transport response."); + ALOGI("Missing 'server_port' field in Transport response."); return false; } @@ -354,7 +354,7 @@ struct MyHandler : public AHandler { int32_t result; CHECK(msg->findInt32("result", &result)); - LOGI("connection request completed with result %d (%s)", + ALOGI("connection request completed with result %d (%s)", result, strerror(-result)); if (result == OK) { @@ -392,7 +392,7 @@ struct MyHandler : public AHandler { int32_t result; CHECK(msg->findInt32("result", &result)); - LOGI("DESCRIBE completed with result %d (%s)", + ALOGI("DESCRIBE completed with result %d (%s)", result, strerror(-result)); if (result == OK) { @@ -499,7 +499,7 @@ struct MyHandler : public AHandler { int32_t result; CHECK(msg->findInt32("result", &result)); - LOGI("SETUP(%d) completed with result %d (%s)", + ALOGI("SETUP(%d) completed with result %d (%s)", index, result, strerror(-result)); if (result == OK) { @@ -540,7 +540,7 @@ struct MyHandler : public AHandler { } else { mKeepAliveTimeoutUs = timeoutSecs * 1000000ll; - LOGI("server specified timeout of %lu secs.", + ALOGI("server specified timeout of %lu secs.", timeoutSecs); } } @@ -625,7 +625,7 @@ struct MyHandler : public AHandler { int32_t result; CHECK(msg->findInt32("result", &result)); - LOGI("PLAY completed with result %d (%s)", + ALOGI("PLAY completed with result %d (%s)", result, strerror(-result)); if (result == OK) { @@ -682,7 +682,7 @@ struct MyHandler : public AHandler { int32_t result; CHECK(msg->findInt32("result", &result)); - LOGI("OPTIONS completed with result %d (%s)", + ALOGI("OPTIONS completed with result %d (%s)", result, strerror(-result)); int32_t generation; @@ -759,7 +759,7 @@ struct MyHandler : public AHandler { int32_t result; CHECK(msg->findInt32("result", &result)); - LOGI("TEARDOWN completed with result %d (%s)", + ALOGI("TEARDOWN completed with result %d (%s)", result, strerror(-result)); sp reply = new AMessage('disc', id()); @@ -793,11 +793,11 @@ struct MyHandler : public AHandler { if (mNumAccessUnitsReceived == 0) { #if 1 - LOGI("stream ended? aborting."); + ALOGI("stream ended? aborting."); (new AMessage('abor', id()))->post(); break; #else - LOGI("haven't seen an AU in a looong time."); + ALOGI("haven't seen an AU in a looong time."); #endif } @@ -848,7 +848,7 @@ struct MyHandler : public AHandler { int32_t eos; if (msg->findInt32("eos", &eos)) { - LOGI("received BYE on track index %d", trackIndex); + ALOGI("received BYE on track index %d", trackIndex); #if 0 track->mPacketSource->signalEOS(ERROR_END_OF_STREAM); #endif @@ -961,7 +961,7 @@ struct MyHandler : public AHandler { int32_t result; CHECK(msg->findInt32("result", &result)); - LOGI("PLAY completed with result %d (%s)", + ALOGI("PLAY completed with result %d (%s)", result, strerror(-result)); mCheckPending = false; @@ -983,7 +983,7 @@ struct MyHandler : public AHandler { ALOGV("rtp-info: %s", response->mHeaders.valueAt(i).c_str()); - LOGI("seek completed."); + ALOGI("seek completed."); } } @@ -1101,7 +1101,7 @@ struct MyHandler : public AHandler { if (!ASessionDescription::parseNTPRange(val.c_str(), &npt1, &npt2)) { // This is a live stream and therefore not seekable. - LOGI("This is a live stream"); + ALOGI("This is a live stream"); return; } diff --git a/media/libstagefright/rtsp/UDPPusher.cpp b/media/libstagefright/rtsp/UDPPusher.cpp index 576b3ca..6a4c87b 100644 --- a/media/libstagefright/rtsp/UDPPusher.cpp +++ b/media/libstagefright/rtsp/UDPPusher.cpp @@ -71,7 +71,7 @@ void UDPPusher::start() { bool UDPPusher::onPush() { uint32_t length; if (fread(&length, 1, sizeof(length), mFile) < sizeof(length)) { - LOGI("No more data to push."); + ALOGI("No more data to push."); return false; } @@ -93,7 +93,7 @@ bool UDPPusher::onPush() { uint32_t timeMs; if (fread(&timeMs, 1, sizeof(timeMs), mFile) < sizeof(timeMs)) { - LOGI("No more data to push."); + ALOGI("No more data to push."); return false; } @@ -113,7 +113,7 @@ void UDPPusher::onMessageReceived(const sp &msg) { case kWhatPush: { if (!onPush() && !(ntohs(mRemoteAddr.sin_port) & 1)) { - LOGI("emulating BYE packet"); + ALOGI("emulating BYE packet"); sp buffer = new ABuffer(8); uint8_t *data = buffer->data(); diff --git a/media/mediaserver/main_mediaserver.cpp b/media/mediaserver/main_mediaserver.cpp index b5f85f9..21496a9 100644 --- a/media/mediaserver/main_mediaserver.cpp +++ b/media/mediaserver/main_mediaserver.cpp @@ -31,7 +31,7 @@ int main(int argc, char** argv) { sp proc(ProcessState::self()); sp sm = defaultServiceManager(); - LOGI("ServiceManager: %p", sm.get()); + ALOGI("ServiceManager: %p", sm.get()); AudioFlinger::instantiate(); MediaPlayerService::instantiate(); CameraService::instantiate(); diff --git a/media/mtp/MtpDevice.cpp b/media/mtp/MtpDevice.cpp index b370225..2fc6ba8 100644 --- a/media/mtp/MtpDevice.cpp +++ b/media/mtp/MtpDevice.cpp @@ -232,7 +232,7 @@ void MtpDevice::print() { mDeviceInfo->print(); if (mDeviceInfo->mDeviceProperties) { - LOGI("***** DEVICE PROPERTIES *****\n"); + ALOGI("***** DEVICE PROPERTIES *****\n"); int count = mDeviceInfo->mDeviceProperties->size(); for (int i = 0; i < count; i++) { MtpDeviceProperty propCode = (*mDeviceInfo->mDeviceProperties)[i]; @@ -246,11 +246,11 @@ void MtpDevice::print() { } if (mDeviceInfo->mPlaybackFormats) { - LOGI("***** OBJECT PROPERTIES *****\n"); + ALOGI("***** OBJECT PROPERTIES *****\n"); int count = mDeviceInfo->mPlaybackFormats->size(); for (int i = 0; i < count; i++) { MtpObjectFormat format = (*mDeviceInfo->mPlaybackFormats)[i]; - LOGI("*** FORMAT: %s\n", MtpDebug::getFormatCodeName(format)); + ALOGI("*** FORMAT: %s\n", MtpDebug::getFormatCodeName(format)); MtpObjectPropertyList* props = getObjectPropsSupported(format); if (props) { for (int j = 0; j < props->size(); j++) { diff --git a/media/mtp/MtpProperty.cpp b/media/mtp/MtpProperty.cpp index 8016c35..d06f214 100644 --- a/media/mtp/MtpProperty.cpp +++ b/media/mtp/MtpProperty.cpp @@ -320,18 +320,18 @@ void MtpProperty::print() { MtpString buffer; bool deviceProp = isDeviceProperty(); if (deviceProp) - LOGI(" %s (%04X)", MtpDebug::getDevicePropCodeName(mCode), mCode); + ALOGI(" %s (%04X)", MtpDebug::getDevicePropCodeName(mCode), mCode); else - LOGI(" %s (%04X)", MtpDebug::getObjectPropCodeName(mCode), mCode); - LOGI(" type %04X", mType); - LOGI(" writeable %s", (mWriteable ? "true" : "false")); + ALOGI(" %s (%04X)", MtpDebug::getObjectPropCodeName(mCode), mCode); + ALOGI(" type %04X", mType); + ALOGI(" writeable %s", (mWriteable ? "true" : "false")); buffer = " default value: "; print(mDefaultValue, buffer); - LOGI("%s", (const char *)buffer); + ALOGI("%s", (const char *)buffer); if (deviceProp) { buffer = " current value: "; print(mCurrentValue, buffer); - LOGI("%s", (const char *)buffer); + ALOGI("%s", (const char *)buffer); } switch (mFormFlag) { case kFormNone: @@ -344,7 +344,7 @@ void MtpProperty::print() { buffer += ", "; print(mStepSize, buffer); buffer += ")"; - LOGI("%s", (const char *)buffer); + ALOGI("%s", (const char *)buffer); break; case kFormEnum: buffer = " Enum { "; @@ -353,13 +353,13 @@ void MtpProperty::print() { buffer += " "; } buffer += "}"; - LOGI("%s", (const char *)buffer); + ALOGI("%s", (const char *)buffer); break; case kFormDateTime: - LOGI(" DateTime\n"); + ALOGI(" DateTime\n"); break; default: - LOGI(" form %d\n", mFormFlag); + ALOGI(" form %d\n", mFormFlag); break; } } diff --git a/services/audioflinger/AudioFlinger.cpp b/services/audioflinger/AudioFlinger.cpp index 275de77..a893cf2 100644 --- a/services/audioflinger/AudioFlinger.cpp +++ b/services/audioflinger/AudioFlinger.cpp @@ -184,13 +184,13 @@ void AudioFlinger::onFirstRef() if (rc) continue; - LOGI("Loaded %s audio interface from %s (%s)", audio_interfaces[i], + ALOGI("Loaded %s audio interface from %s (%s)", audio_interfaces[i], mod->name, mod->id); mAudioHwDevs.push(dev); if (!mPrimaryHardwareDev) { mPrimaryHardwareDev = dev; - LOGI("Using '%s' (%s.%s) as the primary audio interface", + ALOGI("Using '%s' (%s.%s) as the primary audio interface", mod->name, mod->id, audio_interfaces[i]); } } @@ -1468,7 +1468,7 @@ status_t AudioFlinger::PlaybackThread::readyToRun() { status_t status = initCheck(); if (status == NO_ERROR) { - LOGI("AudioFlinger's thread %p ready to run", this); + ALOGI("AudioFlinger's thread %p ready to run", this); } else { LOGE("No working audio driver found."); } @@ -1896,7 +1896,7 @@ bool AudioFlinger::MixerThread::threadLoop() double minimum = stats.minimum(); double maximum = stats.maximum(); cpu.resetStatistics(); - LOGI("CPU usage over past %.1f secs (%u mixer loops at %.1f mean ms per loop):\n us per mix loop: mean=%.0f stddev=%.0f min=%.0f max=%.0f\n %% of wall: mean=%.1f stddev=%.1f min=%.1f max=%.1f", + ALOGI("CPU usage over past %.1f secs (%u mixer loops at %.1f mean ms per loop):\n us per mix loop: mean=%.0f stddev=%.0f min=%.0f max=%.0f\n %% of wall: mean=%.1f stddev=%.1f min=%.1f max=%.1f", elapsed * .000000001, n, perLoop * .000001, mean * .001, stddev * .001, diff --git a/services/audioflinger/AudioPolicyService.cpp b/services/audioflinger/AudioPolicyService.cpp index bc4c90c..d99f66a 100644 --- a/services/audioflinger/AudioPolicyService.cpp +++ b/services/audioflinger/AudioPolicyService.cpp @@ -102,7 +102,7 @@ AudioPolicyService::AudioPolicyService() forced_val = strtol(value, NULL, 0); mpAudioPolicy->set_can_mute_enforced_audible(mpAudioPolicy, !forced_val); - LOGI("Loaded audio policy from %s (%s)", module->name, module->id); + ALOGI("Loaded audio policy from %s (%s)", module->name, module->id); // load audio pre processing modules if (access(AUDIO_EFFECT_VENDOR_CONFIG_FILE, R_OK) == 0) { diff --git a/services/camera/libcameraservice/CameraHardwareInterface.h b/services/camera/libcameraservice/CameraHardwareInterface.h index 658e25e..44b9de8 100644 --- a/services/camera/libcameraservice/CameraHardwareInterface.h +++ b/services/camera/libcameraservice/CameraHardwareInterface.h @@ -88,7 +88,7 @@ public: ~CameraHardwareInterface() { - LOGI("Destroying camera %s", mName.string()); + ALOGI("Destroying camera %s", mName.string()); if(mDevice) { int rc = mDevice->common.close(&mDevice->common); if (rc != OK) @@ -98,7 +98,7 @@ public: status_t initialize(hw_module_t *module) { - LOGI("Opening camera %s", mName.string()); + ALOGI("Opening camera %s", mName.string()); int rc = module->methods->open(module, mName.string(), (hw_device_t **)&mDevice); if (rc != OK) { diff --git a/services/camera/libcameraservice/CameraService.cpp b/services/camera/libcameraservice/CameraService.cpp index d0cafb2..7b4b4ac 100644 --- a/services/camera/libcameraservice/CameraService.cpp +++ b/services/camera/libcameraservice/CameraService.cpp @@ -73,7 +73,7 @@ static CameraService *gCameraService; CameraService::CameraService() :mSoundRef(0), mModule(0) { - LOGI("CameraService started (pid=%d)", getpid()); + ALOGI("CameraService started (pid=%d)", getpid()); gCameraService = this; } @@ -163,7 +163,7 @@ sp CameraService::connect( property_get("sys.secpolicy.camera.disabled", value, "0"); if (strcmp(value, "1") == 0) { // Camera is disabled by DevicePolicyManager. - LOGI("Camera is disabled. connect X (pid %d) rejected", callingPid); + ALOGI("Camera is disabled. connect X (pid %d) rejected", callingPid); return NULL; } -- cgit v1.1