Lines Matching defs:pixfmt
1262 struct v4l2_pix_format *pixfmt = &f->fmt.pix;
1284 direct_fmt = find_format_by_fourcc(isc, pixfmt->pixelformat);
1310 (char *)&pixfmt->pixelformat, (char *)&sd_fmt->fourcc);
1327 if (pixfmt->width > ISC_MAX_SUPPORT_WIDTH)
1328 pixfmt->width = ISC_MAX_SUPPORT_WIDTH;
1329 if (pixfmt->height > ISC_MAX_SUPPORT_HEIGHT)
1330 pixfmt->height = ISC_MAX_SUPPORT_HEIGHT;
1342 isc->try_config.fourcc = pixfmt->pixelformat;
1345 pixfmt->pixelformat = isc->try_config.fourcc = sd_fmt->fourcc;
1363 v4l2_fill_mbus_format(&format.format, pixfmt, mbus_code);
1369 v4l2_fill_pix_format(pixfmt, &format.format);
1371 pixfmt->field = V4L2_FIELD_NONE;
1372 pixfmt->bytesperline = (pixfmt->width * isc->try_config.bpp) >> 3;
1373 pixfmt->sizeimage = pixfmt->bytesperline * pixfmt->height;