Lines Matching refs:pix
141 struct v4l2_pix_format *pix) in isp_video_mbus_to_pix() argument
143 unsigned int bpl = pix->bytesperline; in isp_video_mbus_to_pix()
147 memset(pix, 0, sizeof(*pix)); in isp_video_mbus_to_pix()
148 pix->width = mbus->width; in isp_video_mbus_to_pix()
149 pix->height = mbus->height; in isp_video_mbus_to_pix()
159 min_bpl = pix->width * formats[i].bpp; in isp_video_mbus_to_pix()
173 pix->pixelformat = formats[i].pixelformat; in isp_video_mbus_to_pix()
174 pix->bytesperline = bpl; in isp_video_mbus_to_pix()
175 pix->sizeimage = pix->bytesperline * pix->height; in isp_video_mbus_to_pix()
176 pix->colorspace = mbus->colorspace; in isp_video_mbus_to_pix()
177 pix->field = mbus->field; in isp_video_mbus_to_pix()
182 static void isp_video_pix_to_mbus(const struct v4l2_pix_format *pix, in isp_video_pix_to_mbus() argument
188 mbus->width = pix->width; in isp_video_pix_to_mbus()
189 mbus->height = pix->height; in isp_video_pix_to_mbus()
195 if (formats[i].pixelformat == pix->pixelformat) in isp_video_pix_to_mbus()
200 mbus->colorspace = pix->colorspace; in isp_video_pix_to_mbus()
201 mbus->field = pix->field; in isp_video_pix_to_mbus()
299 return isp_video_mbus_to_pix(video, &fmt.format, &format->fmt.pix); in __isp_video_get_format()
313 if (vfh->format.fmt.pix.pixelformat != format.fmt.pix.pixelformat || in isp_video_check_format()
314 vfh->format.fmt.pix.height != format.fmt.pix.height || in isp_video_check_format()
315 vfh->format.fmt.pix.width != format.fmt.pix.width || in isp_video_check_format()
316 vfh->format.fmt.pix.bytesperline != format.fmt.pix.bytesperline || in isp_video_check_format()
317 vfh->format.fmt.pix.sizeimage != format.fmt.pix.sizeimage || in isp_video_check_format()
318 vfh->format.fmt.pix.field != format.fmt.pix.field) in isp_video_check_format()
337 sizes[0] = vfh->format.fmt.pix.sizeimage; in isp_video_queue_setup()
371 vfh->format.fmt.pix.sizeimage); in isp_video_buffer_prepare()
691 switch (format->fmt.pix.field) { in isp_video_set_format()
698 format->fmt.pix.field = V4L2_FIELD_NONE; in isp_video_set_format()
705 format->fmt.pix.field = V4L2_FIELD_INTERLACED_TB; in isp_video_set_format()
711 format->fmt.pix.field = V4L2_FIELD_NONE; in isp_video_set_format()
721 format->fmt.pix.field = V4L2_FIELD_NONE; in isp_video_set_format()
728 isp_video_pix_to_mbus(&format->fmt.pix, &fmt); in isp_video_set_format()
729 isp_video_mbus_to_pix(video, &fmt, &format->fmt.pix); in isp_video_set_format()
754 isp_video_pix_to_mbus(&format->fmt.pix, &fmt.format); in isp_video_try_format()
762 isp_video_mbus_to_pix(video, &fmt.format, &format->fmt.pix); in isp_video_try_format()
1119 video->bpl_value = vfh->format.fmt.pix.bytesperline; in isp_video_streamon()
1151 pipe->field = vfh->format.fmt.pix.field; in isp_video_streamon()