summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Dong <jdong@google.com>2012-06-11 13:35:06 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2012-06-11 13:35:06 -0700
commit8a61dc02dbbc325dee51f2e9c9f0bbc238759ec5 (patch)
tree1b0e4a5dcd07dab1fcc2738ff93aee27ba62d089
parentc15d6657a17d7cef91f800f40d11760e2e7340af (diff)
parent01e5b5699fb049bedbb7e156fbf7f5952c39130d (diff)
Merge "Revert "Added some informational log messages to track down ANR related issues"" into jb-dev
-rwxr-xr-xmedia/libstagefright/OMXCodec.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/media/libstagefright/OMXCodec.cpp b/media/libstagefright/OMXCodec.cpp
index baabd372..7fb395e4 100755
--- a/media/libstagefright/OMXCodec.cpp
+++ b/media/libstagefright/OMXCodec.cpp
@@ -3648,7 +3648,7 @@ status_t OMXCodec::start(MetaData *meta) {
}
status_t OMXCodec::stop() {
- CODEC_LOGI("stop mState=%d", mState);
+ CODEC_LOGV("stop mState=%d", mState);
Mutex::Autolock autoLock(mLock);
@@ -3748,10 +3748,9 @@ status_t OMXCodec::stop() {
mLeftOverBuffer = NULL;
}
- CODEC_LOGI("stopping in state %d", mState);
mSource->stop();
- CODEC_LOGI("stopped in state %d", mState);
+ CODEC_LOGV("stopped in state %d", mState);
return OK;
}