Lines Matching defs:subfmt
1017 struct v4l2_subdev_format subfmt = {
1030 subfmt.format.width = f->fmt.pix.width & ~1;
1031 subfmt.format.height = f->fmt.pix.height & ~1;
1032 subfmt.format.code = MEDIA_BUS_FMT_FIXED;
1033 subfmt.format.field = field;
1034 subfmt.format.colorspace = V4L2_COLORSPACE_SMPTE170M;
1036 ret = v4l2_subdev_call(cxdev->cx25840, pad, set_fmt, NULL, &subfmt);
1040 f->fmt.pix.width = subfmt.format.width;
1041 f->fmt.pix.height = subfmt.format.height;
1467 struct v4l2_subdev_format subfmt = {
1512 subfmt.format.width = cxdev->width;
1513 subfmt.format.height = cxdev->height;
1514 subfmt.format.code = MEDIA_BUS_FMT_FIXED;
1515 subfmt.format.field = V4L2_FIELD_SEQ_TB;
1516 subfmt.format.colorspace = V4L2_COLORSPACE_SMPTE170M;
1518 ret = v4l2_subdev_call(cxdev->cx25840, pad, set_fmt, NULL, &subfmt);
1524 cxdev->width = subfmt.format.width;
1525 cxdev->height = subfmt.format.height;