diff options
-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 { |