diff options
author | Gopikrishnaiah Anandan <c_gopikr@quicinc.com> | 2010-02-22 16:14:30 -0800 |
---|---|---|
committer | Gopikrishnaiah Anandan <c_gopikr@quicinc.com> | 2010-02-22 16:16:11 -0800 |
commit | 57960fefabd35a937a0caa5836d9f614f3364c4f (patch) | |
tree | 4e414b4e5562078062a0595dd31b9237f5415eb3 | |
parent | ca0d5ffd60af813fd6502f3a2ce47afc7c43632b (diff) | |
download | bionic-57960fefabd35a937a0caa5836d9f614f3364c4f.zip bionic-57960fefabd35a937a0caa5836d9f614f3364c4f.tar.gz bionic-57960fefabd35a937a0caa5836d9f614f3364c4f.tar.bz2 |
7x30: Non standard resoluton playback support.
Added support for Non-Standard resolution playback.
Cropping information will be shared to applicaiton for H264
-rw-r--r-- | libc/kernel/common/linux/ss_vdec.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/libc/kernel/common/linux/ss_vdec.h b/libc/kernel/common/linux/ss_vdec.h index bbcc535..140f900 100644 --- a/libc/kernel/common/linux/ss_vdec.h +++ b/libc/kernel/common/linux/ss_vdec.h @@ -395,6 +395,8 @@ enum vdec_output_fromat { struct vdec_picsize { uint32_t frame_width; uint32_t frame_height; + uint32_t stride; + uint32_t scan_lines; }; struct vdec_seqheader { @@ -422,8 +424,10 @@ struct vdec_input_frameinfo { }; struct vdec_framesize { - uint32_t width; - uint32_t height; + uint32_t n_left; + uint32_t n_top; + uint32_t n_right; + uint32_t n_bottom; }; struct vdec_output_frameinfo { |