Home | History | Annotate | Download | only in libcamera

Lines Matching refs:v4l2_fmt

3411     struct v4l2_format v4l2_fmt;
3416 memset(&v4l2_fmt, 0, sizeof(struct v4l2_format));
3422 v4l2_fmt.type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE;
3426 v4l2_fmt.fmt.pix_mp.width = w;
3427 v4l2_fmt.fmt.pix_mp.height = h;
3428 v4l2_fmt.fmt.pix_mp.pixelformat = colorFormat;
3429 v4l2_fmt.fmt.pix_mp.num_planes = planes;
3431 if (exynos_v4l2_s_fmt(fd, &v4l2_fmt) < 0) {
3437 v4l2_fmt.type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE;
3445 v4l2_fmt.fmt.pix = pixfmt;
3447 if (exynos_v4l2_s_fmt(fd, &v4l2_fmt) < 0) {