summaryrefslogtreecommitdiff
path: root/libcamera/V4L2Camera.cpp
diff options
context:
space:
mode:
authorYongqin Liu <yongqin.liu@linaro.org>2017-09-22 22:21:59 +0800
committerYongqin Liu <yongqin.liu@linaro.org>2017-09-22 22:21:59 +0800
commitc2bc9c838943dd1aac6cdee5dc1523550b7714b0 (patch)
tree00d1fcbea6a5875e5fb558669bd33ed3a98d1e07 /libcamera/V4L2Camera.cpp
parent63100e2c2803bf6f368e2dfef972a8740ea8f40b (diff)
update some debug message
Signed-off-by: Yongqin Liu <yongqin.liu@linaro.org>
Diffstat (limited to 'libcamera/V4L2Camera.cpp')
-rw-r--r--libcamera/V4L2Camera.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/libcamera/V4L2Camera.cpp b/libcamera/V4L2Camera.cpp
index 812eb8c..fdd0c41 100644
--- a/libcamera/V4L2Camera.cpp
+++ b/libcamera/V4L2Camera.cpp
@@ -306,7 +306,6 @@ bool V4L2Camera::GrabValidFrame(){
unsigned int count = 5;
while(count-- > 0){
- // ALOGE("GrabJpegFrame: try the %d time", count);
int r;
fd_set fds;
struct timeval tv;
@@ -400,7 +399,7 @@ camera_memory_t* V4L2Camera::GrabJpegFrame (camera_request_memory mRequestMem
HERE("LIUYQ after call mRequestMemory");
memcpy(picture->data, tmpBuf, fileSize);
delete[] tmpBuf;
- HERE("LIUYQ will return from GrabJpegFrame");
+ HERE("LIUYQ will return");
return picture;
}