diff options
author | James Dong <jdong@google.com> | 2012-06-11 10:49:55 -0700 |
---|---|---|
committer | James Dong <jdong@google.com> | 2012-06-11 10:49:55 -0700 |
commit | 01e5b5699fb049bedbb7e156fbf7f5952c39130d (patch) | |
tree | 957327f28363797c3de5af0a3837a42cef172aa2 | |
parent | b7acdfb8068bf408ed859dfdd441b4a8722eb12a (diff) | |
download | frameworks_av-01e5b5699fb049bedbb7e156fbf7f5952c39130d.zip frameworks_av-01e5b5699fb049bedbb7e156fbf7f5952c39130d.tar.gz frameworks_av-01e5b5699fb049bedbb7e156fbf7f5952c39130d.tar.bz2 |
Revert "Added some informational log messages to track down ANR related issues"
This reverts commit c558fa89016ba9583049b84dc57e66a913cabde8.
related-to-bug: 6565826
-rwxr-xr-x | media/libstagefright/OMXCodec.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/media/libstagefright/OMXCodec.cpp b/media/libstagefright/OMXCodec.cpp index baabd37..7fb395e 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; } |