diff options
author | Jignesh Mehta <c_jmehta@quicinc.com> | 2009-06-05 11:03:01 -0700 |
---|---|---|
committer | Jignesh Mehta <c_jmehta@quicinc.com> | 2009-06-16 01:12:44 -0700 |
commit | 6c63823e6da74a60a174369b3456a056ae6161e0 (patch) | |
tree | 034f501f5144455fe2a25a3ed338240ce4f5ea28 | |
parent | 621958b100624afba4044e9384ba330f15277037 (diff) | |
download | bionic-6c63823e6da74a60a174369b3456a056ae6161e0.zip bionic-6c63823e6da74a60a174369b3456a056ae6161e0.tar.gz bionic-6c63823e6da74a60a174369b3456a056ae6161e0.tar.bz2 |
camera: Add defines for post processing.
Add defines for preview, snapshot and raw snapshot post processing.
Signed-off-by: Jignesh Mehta <c_jmehta@quicinc.com>
-rw-r--r-- | libc/kernel/common/media/msm_camera.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libc/kernel/common/media/msm_camera.h b/libc/kernel/common/media/msm_camera.h index e793586..355522a 100644 --- a/libc/kernel/common/media/msm_camera.h +++ b/libc/kernel/common/media/msm_camera.h @@ -240,6 +240,10 @@ enum msm_v4l2_ctrl_t { MSM_V4L2_MAX }; +#define PP_SNAP 0x01 +#define PP_RAW_SNAP ((0x01)<<1) +#define PP_PREV ((0x01)<<2) + struct crop_info_t { void *info; int len; |