Lines Matching refs:height

88 static void get_resolution(struct go7007 *go, int *width, int *height)  in get_resolution()  argument
93 *height = 480; in get_resolution()
97 *height = 576; in get_resolution()
102 *height = go->board_info->sensor_height; in get_resolution()
187 int width, height; in set_capture_size() local
196 height = sensor_height; in set_capture_size()
205 if (fmt->fmt.pix.height > sensor_height) in set_capture_size()
206 height = sensor_height; in set_capture_size()
207 else if (fmt->fmt.pix.height < 96) in set_capture_size()
208 height = 96; in set_capture_size()
210 height = fmt->fmt.pix.height & ~0x0f; in set_capture_size()
216 height = sensor_height / 4; in set_capture_size()
219 height = sensor_height / 2; in set_capture_size()
222 height = sensor_height; in set_capture_size()
225 height &= ~0xf; in set_capture_size()
234 fmt->fmt.pix.height = height; in set_capture_size()
248 go->height = height; in set_capture_size()
257 mbus_fmt.height = height; in set_capture_size()
340 fmt->fmt.pix.height = go->height; in vidioc_g_fmt_vid_cap()
541 int width, height; in vidioc_enum_framesizes() local
549 get_resolution(go, &width, &height); in vidioc_enum_framesizes()
552 fsize->discrete.height = (height >> fsize->index) & ~0xf; in vidioc_enum_framesizes()
560 int width, height; in vidioc_enum_frameintervals() local
570 get_resolution(go, &width, &height); in vidioc_enum_frameintervals()
573 fival->height == ((height >> i) & ~0xf)) in vidioc_enum_frameintervals()
849 for (y = 0; y < go->height / 16; y++, mt += go->width / 16) in go7007_s_ctrl()