Lines Matching refs:tile_height
143 int tile_width, tile_height;
798 static int epic_decode_tile(ePICContext *dc, uint8_t *out, int tile_height,
805 for (y = 0; y < tile_height; y++, out += stride) {
869 int extrabytes, tile_width, tile_height, awidth, aheight;
899 tile_height = FFMIN(c->height - tile_y * c->tile_height, c->tile_height);
901 aheight = FFALIGN(tile_height, 16);
928 ret = epic_decode_tile(&c->ec, c->epic_buf, tile_height, tile_width,
943 tile_y * c->tile_height * c->framebuf_stride;
945 for (j = 0; j < tile_height; j++) {
973 for (j = 0; j < tile_height; j += 8) {
994 tile_y * c->tile_height * c->framebuf_stride;
996 for (j = 0; j < tile_height; j++) {
1007 tile_y * c->tile_height * c->framebuf_stride;
1008 return jpg_decode_data(&c->jc, tile_width, tile_height, src, src_size,
1058 uLongf dlen = (c->tile_width + 1) * c->tile_height;
1063 tile_y * c->tile_height * c->framebuf_stride;
1069 height = FFMIN(c->height - tile_y * c->tile_height, c->tile_height);
1175 c->old_tile_h < c->tile_height) {
1178 aligned_height = FFALIGN(c->tile_height, 16);
1447 c->tile_height = bytestream2_get_be32(&bc);
1448 if (c->tile_width <= 0 || c->tile_height <= 0 ||
1449 ((c->tile_width | c->tile_height) & 0xF) ||
1450 c->tile_width * (uint64_t)c->tile_height >= INT_MAX / 4 ||
1451 av_image_check_size2(c->tile_width, c->tile_height, avctx->max_pixels, avctx->pix_fmt, 0, avctx) < 0
1455 c->tile_width, c->tile_height);
1460 c->tiles_y = (c->height + c->tile_height - 1) / c->tile_height;
1584 c->tile_height = 0;