aboutsummaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
authorDavid Stevens <stevensd@google.com>2020-08-14 10:12:12 +0900
committerDavid Stevens <stevensd@google.com>2020-08-26 08:58:14 +0000
commit9ded236141563ddf1023784a05096b6aadbeb98f (patch)
treef5ddab9a7af1e4860fe001b7d9e503517699a973 /components
parentd23406c03da79ab4b8829c68bbeacd11a790cbd8 (diff)
downloadv4l2_codec2-9ded236141563ddf1023784a05096b6aadbeb98f.tar.gz
Reduce the verbosity of some logs
This reduces the verbosity of logs that appear very often during execution of the c2_e2e_test. Bug: 166401871 Test: Run c2_e2e_test and verify there is no logspam Change-Id: Ie21c54f50b52c6062f8e7b6c9bc02ef226d3451d
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);