Lines Matching refs:pix
357 f->fmt.pix.width = dev->width;
358 f->fmt.pix.height = dev->height;
359 f->fmt.pix.field = V4L2_FIELD_INTERLACED;
360 f->fmt.pix.pixelformat = dev->fmt->fourcc;
361 f->fmt.pix.bytesperline = dev->width * 2;
362 f->fmt.pix.sizeimage = dev->height * f->fmt.pix.bytesperline;
363 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
381 width = clamp_t(unsigned int, f->fmt.pix.width,
383 height = clamp_t(unsigned int, f->fmt.pix.height,
391 f->fmt.pix.width = base_width;
392 f->fmt.pix.height = base_height;
411 f->fmt.pix.width = (base_width * col_n) / (col_n + 1);
430 f->fmt.pix.width = base_width / (col_n + 1);
439 f->fmt.pix.height = (base_height * row_n) / (row_n + 1);
447 f->fmt.pix.height = base_height / (row_n + 1);
451 f->fmt.pix.pixelformat = dev->fmt->fourcc;
452 f->fmt.pix.field = V4L2_FIELD_INTERLACED;
453 f->fmt.pix.bytesperline = f->fmt.pix.width * 2;
454 f->fmt.pix.sizeimage = f->fmt.pix.height * f->fmt.pix.bytesperline;
455 f->fmt.pix.colorspace = V4L2_COLORSPACE_SMPTE170M;
467 f->fmt.pix.width, f->fmt.pix.height);
493 dev->width = f->fmt.pix.width;
494 dev->height = f->fmt.pix.height;