aboutsummaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
authorDavid Stevens <stevensd@google.com>2020-08-27 01:15:39 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2020-08-27 01:15:39 +0000
commitfb1cc33e7753d6a6cb6497c740e9651cccfa94b4 (patch)
tree17ce163e5abecf5a545f16556b391f1c0775f6f8 /components
parent565b51116c067bd6b139f99a559360b6bc4059dc (diff)
parent9ded236141563ddf1023784a05096b6aadbeb98f (diff)
downloadv4l2_codec2-fb1cc33e7753d6a6cb6497c740e9651cccfa94b4.tar.gz
Merge "Reduce the verbosity of some logs" into rvc-dev
Diffstat (limited to 'components')
-rw-r--r--components/V4L2Decoder.cpp2
-rw-r--r--components/VideoFramePool.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/components/V4L2Decoder.cpp b/components/V4L2Decoder.cpp
index a5ef3fb..4432222 100644
--- a/components/V4L2Decoder.cpp
+++ b/components/V4L2Decoder.cpp
@@ -503,7 +503,7 @@ void V4L2Decoder::tryFetchVideoFrame() {
if (mState == State::Idle) return;
if (mVideoFramePool->hasPendingRequests()) {
- ALOGD("Previous callback is running, ignore.");
+ ALOGV("Previous callback is running, ignore.");
return;
}
diff --git a/components/VideoFramePool.cpp b/components/VideoFramePool.cpp
index 662ba6e..0a0c914 100644
--- a/components/VideoFramePool.cpp
+++ b/components/VideoFramePool.cpp
@@ -175,7 +175,7 @@ void VideoFramePool::getVideoFrameTask(GetVideoFrameCB cb) {
break;
} else {
++numRetries;
- ALOGD("fetchGraphicBlock() timeout, waiting %zuus (%zu retry)", delay, numRetries);
+ ALOGV("fetchGraphicBlock() timeout, waiting %zuus (%zu retry)", delay, numRetries);
usleep(delay);
// Exponential backoff
delay = std::min(delay * 2, kFetchRetryDelayMax);