Lines Matching refs:format
708 struct v4l2_subdev_format format = { in sh_vou_set_fmt_vid_out() local
711 .format.code = MEDIA_BUS_FMT_YUYV8_2X8, in sh_vou_set_fmt_vid_out()
712 .format.field = V4L2_FIELD_INTERLACED, in sh_vou_set_fmt_vid_out()
713 .format.colorspace = V4L2_COLORSPACE_SMPTE170M, in sh_vou_set_fmt_vid_out()
715 struct v4l2_mbus_framefmt *mbfmt = &format.format; in sh_vou_set_fmt_vid_out()
735 set_fmt, NULL, &format); in sh_vou_set_fmt_vid_out()
946 struct v4l2_subdev_format format = { in sh_vou_s_selection() local
949 .format.code = MEDIA_BUS_FMT_YUYV8_2X8, in sh_vou_s_selection()
950 .format.field = V4L2_FIELD_INTERLACED, in sh_vou_s_selection()
951 .format.colorspace = V4L2_COLORSPACE_SMPTE170M, in sh_vou_s_selection()
992 format.format.width = geo.output.width; in sh_vou_s_selection()
993 format.format.height = geo.output.height; in sh_vou_s_selection()
995 set_fmt, NULL, &format); in sh_vou_s_selection()
1001 if ((unsigned)format.format.width > VOU_MAX_IMAGE_WIDTH || in sh_vou_s_selection()
1002 (unsigned)format.format.height > img_height_max || in sh_vou_s_selection()
1003 format.format.code != MEDIA_BUS_FMT_YUYV8_2X8) in sh_vou_s_selection()
1006 geo.output.width = format.format.width; in sh_vou_s_selection()
1007 geo.output.height = format.format.height; in sh_vou_s_selection()