Lines Matching defs:tile_x
144 int tiles_x, tiles_y, tile_x, tile_y;
864 static int epic_jb_decode_tile(G2MContext *c, int tile_x, int tile_y,
898 tile_width = FFMIN(c->width - tile_x * c->tile_width, c->tile_width);
936 "ePIC: tile decoding failed, frame=%d, tile_x=%d, tile_y=%d\n",
937 avctx->frame_number, tile_x, tile_y);
942 dst = c->framebuf + tile_x * c->tile_width * 3 +
993 dst = c->framebuf + tile_x * c->tile_width * 3 +
1006 dst = c->framebuf + tile_x * c->tile_width * 3 +
1050 static int kempf_decode_tile(G2MContext *c, int tile_x, int tile_y,
1062 uint8_t *dst = c->framebuf + tile_x * c->tile_width * 3 +
1068 width = FFMIN(c->width - tile_x * c->tile_width, c->tile_width);
1502 c->tile_x = bytestream2_get_byte(&bc);
1504 if (c->tile_x >= c->tiles_x || c->tile_y >= c->tiles_y) {
1507 c->tile_x, c->tile_y, c->tiles_x, c->tiles_y);
1513 ret = epic_jb_decode_tile(c, c->tile_x, c->tile_y,
1518 ret = kempf_decode_tile(c, c->tile_x, c->tile_y,
1525 c->tile_x, c->tile_y);