Lines Matching defs:ic_image
338 struct ipu_image_convert_image *ic_image)
346 ic_image->type == IMAGE_CONVERT_OUT ? "Output" : "Input",
347 ic_image->base.pix.width, ic_image->base.pix.height,
348 ic_image->num_cols, ic_image->num_rows,
349 ic_image->fmt->fourcc & 0xff,
350 (ic_image->fmt->fourcc >> 8) & 0xff,
351 (ic_image->fmt->fourcc >> 16) & 0xff,
352 (ic_image->fmt->fourcc >> 24) & 0xff);
1926 struct ipu_image_convert_image *ic_image,
1932 ic_image->base = *image;
1933 ic_image->type = type;
1935 ic_image->fmt = get_format(image->pix.pixelformat);
1936 if (!ic_image->fmt) {
1942 if (ic_image->fmt->planar)
1943 ic_image->stride = ic_image->base.pix.width;
1945 ic_image->stride = ic_image->base.pix.bytesperline;