diff options
author | Mehta, Jignesh <c_jmehta@qualcomm.com> | 2009-04-24 17:08:03 -0700 |
---|---|---|
committer | Manas Abichandani <manasa@quicinc.com> | 2009-06-02 12:06:05 -0700 |
commit | 420160f06d9de178521facdf559f23e2aa80933a (patch) | |
tree | 7ff135f6774881ede78d7c5873b7f12f44f2446b | |
parent | 006833061835ef8ac2193761ba9a661bebf756b6 (diff) | |
download | bionic-420160f06d9de178521facdf559f23e2aa80933a.zip bionic-420160f06d9de178521facdf559f23e2aa80933a.tar.gz bionic-420160f06d9de178521facdf559f23e2aa80933a.tar.bz2 |
Camera: Auto focus step value for BAM and FOXCONN module
Added number of steps in kernel header file.
Signed-off-by: Jignesh Mehta <c_jmehta@quicinc.com>
-rw-r--r-- | libc/kernel/common/media/msm_camera.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libc/kernel/common/media/msm_camera.h b/libc/kernel/common/media/msm_camera.h index 9aeaac8..f40c202 100644 --- a/libc/kernel/common/media/msm_camera.h +++ b/libc/kernel/common/media/msm_camera.h @@ -281,6 +281,7 @@ enum sensor_cfg_t { CFG_GET_PREV_P_PL, CFG_GET_PICT_L_PF, CFG_GET_PICT_P_PL, + CFG_GET_AF_MAX_STEPS, CFG_GET_PICT_MAX_EXP_LC, @@ -352,7 +353,7 @@ struct sensor_cfg_data_t { enum sensor_cfg_t cfgtype; enum sensor_mode_t mode; enum sensor_resolution_t rs; - + uint8_t max_steps; union { int8_t effect; uint8_t lens_shading; @@ -382,5 +383,6 @@ enum sensor_get_info_t { struct msm_camsensor_info_t { char name[MAX_SENSOR_NAME]; int8_t flash_enabled; + int8_t total_steps; }; #endif |