summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSaravanan Solaiyappan <saravanan.s@ti.com>2012-11-01 14:12:08 -0500
committerJason Simmons <jsimmons@google.com>2012-11-07 14:36:34 -0800
commitc0612fd3788965de3bffe6669e33746a45221c09 (patch)
tree961fe54c4c5524043f0502fd4a61eeaad25ee6e7
parent5f0295a8cac99650c22617d0fcf2f2d7702b01bf (diff)
downloadomap4-aah-c0612fd3788965de3bffe6669e33746a45221c09.tar.gz
USBCAMERA: Enable fps print.
This patch enables the FPS information print. Change-Id: I9f679dba10bdb5100c79436929f1da474233f185 Signed-off-by: Saravanan Solaiyappan <saravanan.s@ti.com>
-rw-r--r--camera/V4LCameraAdapter/V4LCameraAdapter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/camera/V4LCameraAdapter/V4LCameraAdapter.cpp b/camera/V4LCameraAdapter/V4LCameraAdapter.cpp
index daf2b39..91ecfe1 100644
--- a/camera/V4LCameraAdapter/V4LCameraAdapter.cpp
+++ b/camera/V4LCameraAdapter/V4LCameraAdapter.cpp
@@ -857,7 +857,7 @@ static void debugShowFPS()
mFps = ((mFrameCount - mLastFrameCount) * float(s2ns(1))) / diff;
mLastFpsTime = now;
mLastFrameCount = mFrameCount;
- CAMHAL_LOGD("Camera %d Frames, %f FPS", mFrameCount, mFps);
+ CAMHAL_LOGI("Camera %d Frames, %f FPS", mFrameCount, mFps);
}
}
}