Lines Matching defs:height
362 f->fmt.pix.height = dev->height;
366 f->fmt.pix.sizeimage = dev->height * f->fmt.pix.bytesperline;
375 unsigned int width, height;
384 /* Minimum width and height is 5% the frame size */
387 height = clamp_t(unsigned int, f->fmt.pix.height,
396 f->fmt.pix.height = base_height;
438 if (height < base_height && height > base_height / 2) {
439 row_n = div_round_integer(height, base_height - height);
443 f->fmt.pix.height = (base_height * row_n) / (row_n + 1);
446 } else if (height <= base_height / 2) {
447 row_n = div_round_integer(base_height, height) - 1;
451 f->fmt.pix.height = base_height / (row_n + 1);
458 f->fmt.pix.sizeimage = f->fmt.pix.height * f->fmt.pix.bytesperline;
470 stk1160_dbg("width %d, height %d\n",
471 f->fmt.pix.width, f->fmt.pix.height);
498 dev->height = f->fmt.pix.height;
536 dev->height = (norm & V4L2_STD_525_60) ? 480 : 576;
661 size = dev->width * dev->height * 2;
710 if (buf->length < dev->width * dev->height * 2)
827 dev->height = 480;