diff options
author | Linux Build Service Account <lnxbuild@qualcomm.com> | 2010-07-27 03:45:43 -0700 |
---|---|---|
committer | QuIC Gerrit Code Review <code-review@quicinc.com> | 2010-07-27 03:45:43 -0700 |
commit | a2d883b71532ea253edb85aee4f3bdae76ac56bc (patch) | |
tree | f18f52525bfe61f1dfeb601be1cc4c2607b33f0c | |
parent | 34a02a016e3365f68c79201b7edb3a5bb0c18ed9 (diff) | |
parent | b3d2c4749f012bb73610c20ecd0f544d07f01b7a (diff) | |
download | bionic-a2d883b71532ea253edb85aee4f3bdae76ac56bc.zip bionic-a2d883b71532ea253edb85aee4f3bdae76ac56bc.tar.gz bionic-a2d883b71532ea253edb85aee4f3bdae76ac56bc.tar.bz2 |
Merge "Enabling thumbnail mode in 8k video decoder." into froyo
-rw-r--r-- | libc/kernel/common/linux/msm_q6vdec.h | 55 |
1 files changed, 54 insertions, 1 deletions
diff --git a/libc/kernel/common/linux/msm_q6vdec.h b/libc/kernel/common/linux/msm_q6vdec.h index ec2175c..dc1a388 100644 --- a/libc/kernel/common/linux/msm_q6vdec.h +++ b/libc/kernel/common/linux/msm_q6vdec.h @@ -27,6 +27,8 @@ #define VDEC_IOCTL_FREEBUFFERS _IOW(VDEC_IOCTL_MAGIC, 9, struct vdec_buf_info) #define VDEC_IOCTL_GETDECATTRIBUTES _IOR(VDEC_IOCTL_MAGIC, 10, struct vdec_dec_attributes) #define VDEC_IOCTL_GETVERSION _IOR(VDEC_IOCTL_MAGIC, 11, struct vdec_version) +#define VDEC_IOCTL_SETPROPERTY _IOW(VDEC_IOCTL_MAGIC, 12, struct vdec_property_info) +#define VDEC_IOCTL_GETPROPERTY _IOR(VDEC_IOCTL_MAGIC, 13, struct vdec_property_info) enum { VDEC_FRAME_DECODE_OK, @@ -64,6 +66,20 @@ enum { VDEC_COLOR_FORMAT_NV21_YAMOTO = 0x02 }; +enum vdec_property_id { + VDEC_FOURCC, + VDEC_PROFILE, + VDEC_LEVEL, + VDEC_DIMENSIONS, + VDEC_CWIN, + VDEC_INPUT_BUF_REQ, + VDEC_OUTPUT_BUF_REQ, + VDEC_LUMA_CHROMA_STRIDE, + VDEC_NUM_DAL_PORTS, + VDEC_PRIORITY, + VDEC_FRAME_ALIGNMENT +}; + struct vdec_input_buf_info { u32 offset; u32 data; @@ -219,4 +235,41 @@ struct vdec_version { u32 minor; }; -#endif +struct dal_vdec_rectangle { + u32 width; + u32 height; +}; + +struct stride_type { + u32 luma; + u32 chroma; +}; + +struct frame_alignment_type { + u32 luma_width; + u32 luma_height; + u32 chroma_width; + u32 chroma_height; + u32 chroma_offset; +}; + +union vdec_property { + u32 fourcc; + u32 profile; + u32 level; + struct dal_vdec_rectangle dim; + struct vdec_cropping_window cw; + struct vdec_buf_desc input_req; + struct vdec_buf_desc output_req; + struct stride_type stride; + u32 num_dal_ports; + u32 priority; + struct frame_alignment_type frame_alignment; + u32 def_type; +}; + +struct vdec_property_info { + enum vdec_property_id id; + union vdec_property property; +}; +#endif /* _MSM_VDEC_H_ */ |