summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShuzhen Wang <shuzhenwang@google.com>2016-06-17 06:30:09 +0000
committerandroid-build-merger <android-build-merger@google.com>2016-06-17 06:30:09 +0000
commitcaa7ccc985f82cb60dad8556d7ec4063d09ebba1 (patch)
treeb8d7c6194c65dabe806e777debb670ab8603705a
parent601cd7dab73b80c8aa7109260889cf2212ee63fb (diff)
parent35fc73649495a3bf5747202c4a4bffd20ed5c0b4 (diff)
downloadshamu-caa7ccc985f82cb60dad8556d7ec4063d09ebba1.tar.gz
Merge \"QCamera2: HAL3: Log BUFFER_ERROR as warning\" into nyc-dev
am: 35fc736494 Change-Id: I83addcca9ef1c80b0cd98a9cdbe439cf058b04d0
-rw-r--r--camera/QCamera2/HAL3/QCamera3HWI.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/camera/QCamera2/HAL3/QCamera3HWI.cpp b/camera/QCamera2/HAL3/QCamera3HWI.cpp
index c35a7f04..1a9079a2 100644
--- a/camera/QCamera2/HAL3/QCamera3HWI.cpp
+++ b/camera/QCamera2/HAL3/QCamera3HWI.cpp
@@ -1789,14 +1789,14 @@ void QCamera3HardwareInterface::handleMetadataWithLock(
for (uint32_t k = 0; k < cam_frame_drop.cam_stream_ID.num_streams; k++) {
if (streamID == cam_frame_drop.cam_stream_ID.streamID[k]) {
// Send Error notify to frameworks with CAMERA3_MSG_ERROR_BUFFER
- CDBG("%s: Start of reporting error frame#=%d, streamID=%d",
+ ALOGW("%s: Start of reporting error frame#=%d, streamID=%d",
__func__, i->frame_number, streamID);
notify_msg.type = CAMERA3_MSG_ERROR;
notify_msg.message.error.frame_number = i->frame_number;
notify_msg.message.error.error_code = CAMERA3_MSG_ERROR_BUFFER ;
notify_msg.message.error.error_stream = j->stream;
mCallbackOps->notify(mCallbackOps, &notify_msg);
- CDBG("%s: End of reporting error frame#=%d, streamID=%d",
+ ALOGW("%s: End of reporting error frame#=%d, streamID=%d",
__func__, i->frame_number, streamID);
PendingFrameDropInfo PendingFrameDrop;
PendingFrameDrop.frame_number=i->frame_number;