Lines Matching refs:format
105 * struct xvip_video_format - Xilinx Video IP video format description
106 * @vf_code: AXI4 video format code
107 * @width: AXI4 format width in bits per component
109 * @code: media bus format code
111 * @fourcc: V4L2 pixel format FCC identifier
125 void xvip_set_format_size(struct v4l2_mbus_framefmt *format,
190 const struct v4l2_mbus_framefmt *format)
193 (format->height << XVIP_ACTIVE_VSIZE_SHIFT) |
194 (format->width << XVIP_ACTIVE_HSIZE_SHIFT));
198 struct v4l2_mbus_framefmt *format)
203 format->width = (reg & XVIP_ACTIVE_HSIZE_MASK) >>
205 format->height = (reg & XVIP_ACTIVE_VSIZE_MASK) >>