Lines Matching defs:s_image

922 	struct ipu_image_convert_image *s_image = &ctx->in;
928 return src_row * s_image->num_cols + src_col;
932 * source row,col for an origin in the center of s_image
934 src_row = src_row * 2 - (s_image->num_rows - 1);
935 src_col = src_col * 2 - (s_image->num_cols - 1);
972 struct ipu_image_convert_image *s_image = &ctx->in;
975 for (row = 0; row < s_image->num_rows; row++) {
976 for (col = 0; col < s_image->num_cols; col++) {
1384 struct ipu_image_convert_image *s_image = &ctx->in;
1407 row = tile / s_image->num_cols;
1408 col = tile % s_image->num_cols;
1416 __func__, s_image->tile[tile].width,
1417 s_image->tile[tile].height, dest_width, dest_height, rsc);
1421 s_image->tile[tile].width,
1422 s_image->tile[tile].height,
1432 init_idmac_channel(ctx, chan->in_chan, s_image,
1638 struct ipu_image_convert_image *s_image = &ctx->in;
1679 src_tile = &s_image->tile[ctx->next_tile];
1684 s_image->base.phys0 +
1689 if (s_image->fmt->planar)
1703 src_tile = &s_image->tile[ctx->next_tile + 1];
1708 s_image->base.phys0 + src_tile->offset);
2076 struct ipu_image_convert_image *s_image, *d_image;
2116 s_image = &ctx->in;
2121 d_image->num_rows = s_image->num_cols;
2122 d_image->num_cols = s_image->num_rows;
2124 d_image->num_rows = s_image->num_rows;
2125 d_image->num_cols = s_image->num_cols;
2130 ret = fill_image(ctx, s_image, in, IMAGE_CONVERT_IN);
2139 find_seams(ctx, s_image, d_image);
2141 ret = calc_tile_dimensions(ctx, s_image);
2145 ret = calc_tile_offsets(ctx, s_image);
2157 s_image->base.pix.ycbcr_enc,
2158 s_image->base.pix.quantization,
2159 ipu_pixelformat_to_colorspace(s_image->fmt->fourcc),
2166 dump_format(ctx, s_image);
2186 !s_image->fmt->planar &&