diff options
author | Andriy Chepurnyy <x0155536@ti.com> | 2012-10-23 13:12:31 +0300 |
---|---|---|
committer | Daniel Levin <dendy@ti.com> | 2012-11-26 20:17:15 +0200 |
commit | 8315549554d6b10ced4bdda46930b2b1510c2a5e (patch) | |
tree | 6d6fc8b1fe124c72e2e344ef74c058855193d1d8 | |
parent | 5e855a17a032fbb6dffb921958ca887d22eabf88 (diff) | |
download | hardware_ti_omap4-8315549554d6b10ced4bdda46930b2b1510c2a5e.zip hardware_ti_omap4-8315549554d6b10ced4bdda46930b2b1510c2a5e.tar.gz hardware_ti_omap4-8315549554d6b10ced4bdda46930b2b1510c2a5e.tar.bz2 |
V4L Camera: HACK add fake zoom support
Change-Id: I705149d5ce274671385e9f465c0fd3b556d4c7ee
Signed-off-by: Andriy Chepurnyy <x0155536@ti.com>
-rwxr-xr-x | camera/V4LCameraAdapter/V4LCapabilities.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/camera/V4LCameraAdapter/V4LCapabilities.cpp b/camera/V4LCameraAdapter/V4LCapabilities.cpp index f632cdf..f03ba9b 100755 --- a/camera/V4LCameraAdapter/V4LCapabilities.cpp +++ b/camera/V4LCameraAdapter/V4LCapabilities.cpp @@ -95,6 +95,12 @@ status_t V4LCameraAdapter::insertDefaults(CameraProperties::Properties* params, params->set(CameraProperties::VSTAB, DEFAULT_VSTAB); params->set(CameraProperties::VNF, DEFAULT_VNF); + //For compatibility + params->set(CameraProperties::SUPPORTED_ZOOM_RATIOS,"0"); + params->set(CameraProperties::SUPPORTED_ZOOM_STAGES, "0"); + params->set(CameraProperties::ZOOM, "0"); + params->set(CameraProperties::ZOOM_SUPPORTED, "true"); + LOG_FUNCTION_NAME_EXIT; |