You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
2.0 KiB
58 lines
2.0 KiB
/****************************************************************************
|
|
****************************************************************************
|
|
***
|
|
*** This header was automatically generated from a Linux kernel header
|
|
*** of the same name, to make information necessary for userspace to
|
|
*** call into the kernel available to libc. It contains only constants,
|
|
*** structures, and macros generated from the original header, and thus,
|
|
*** contains no copyrightable information.
|
|
***
|
|
*** To edit the content of this header, modify the corresponding
|
|
*** source file (e.g. under external/kernel-headers/original/) then
|
|
*** run bionic/libc/kernel/tools/update_all.py
|
|
***
|
|
*** Any manual change here will be lost the next time this script will
|
|
*** be run. You've been warned!
|
|
***
|
|
****************************************************************************
|
|
****************************************************************************/
|
|
#ifndef __UAPI_MSM_FD__
|
|
#define __UAPI_MSM_FD__
|
|
#include <linux/videodev2.h>
|
|
#include <linux/types.h>
|
|
struct msm_fd_event {
|
|
__u32 buf_index;
|
|
__u32 frame_id;
|
|
__u32 face_cnt;
|
|
};
|
|
enum msm_fd_pose {
|
|
MSM_FD_POSE_FRONT,
|
|
MSM_FD_POSE_RIGHT_DIAGONAL,
|
|
MSM_FD_POSE_RIGHT,
|
|
MSM_FD_POSE_LEFT_DIAGONAL,
|
|
MSM_FD_POSE_LEFT,
|
|
};
|
|
struct msm_fd_face_data {
|
|
__u32 pose;
|
|
__u32 angle;
|
|
__u32 confidence;
|
|
__u32 reserved;
|
|
struct v4l2_rect face;
|
|
};
|
|
struct msm_fd_result {
|
|
__u32 frame_id;
|
|
__u32 face_cnt;
|
|
struct msm_fd_face_data * face_data;
|
|
};
|
|
#define VIDIOC_MSM_FD_GET_RESULT _IOWR('V', BASE_VIDIOC_PRIVATE, struct msm_fd_result)
|
|
#define MSM_EVENT_FD (V4L2_EVENT_PRIVATE_START)
|
|
#define V4L2_CID_FD_SPEED (V4L2_CID_PRIVATE_BASE)
|
|
#define V4L2_CID_FD_FACE_ANGLE (V4L2_CID_PRIVATE_BASE + 1)
|
|
#define V4L2_CID_FD_MIN_FACE_SIZE (V4L2_CID_PRIVATE_BASE + 2)
|
|
#define V4L2_CID_FD_FACE_DIRECTION (V4L2_CID_PRIVATE_BASE + 3)
|
|
#define V4L2_CID_FD_DETECTION_THRESHOLD (V4L2_CID_PRIVATE_BASE + 4)
|
|
#define V4L2_CID_FD_WORK_MEMORY_SIZE (V4L2_CID_PRIVATE_BASE + 5)
|
|
#define V4L2_CID_FD_WORK_MEMORY_FD (V4L2_CID_PRIVATE_BASE + 6)
|
|
#endif
|
|
|