Lines Matching refs:base_height
376 unsigned int base_width, base_height;
382 base_height = (dev->norm & V4L2_STD_525_60) ? 480 : 576;
388 base_height / 20, base_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);