Lines Matching defs:height
358 f->fmt.pix.height = dev->height;
362 f->fmt.pix.sizeimage = dev->height * f->fmt.pix.bytesperline;
371 unsigned int width, height;
380 /* Minimum width and height is 5% the frame size */
383 height = clamp_t(unsigned int, f->fmt.pix.height,
392 f->fmt.pix.height = base_height;
434 if (height < base_height && height > base_height / 2) {
435 row_n = div_round_integer(height, base_height - height);
439 f->fmt.pix.height = (base_height * row_n) / (row_n + 1);
442 } else if (height <= base_height / 2) {
443 row_n = div_round_integer(base_height, height) - 1;
447 f->fmt.pix.height = base_height / (row_n + 1);
454 f->fmt.pix.sizeimage = f->fmt.pix.height * f->fmt.pix.bytesperline;
466 stk1160_dbg("width %d, height %d\n",
467 f->fmt.pix.width, f->fmt.pix.height);
494 dev->height = f->fmt.pix.height;
532 dev->height = (norm & V4L2_STD_525_60) ? 480 : 576;
657 size = dev->width * dev->height * 2;
706 if (buf->length < dev->width * dev->height * 2)
823 dev->height = 480;