Lines Matching defs:tile_y
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,
899 tile_height = FFMIN(c->height - tile_y * c->tile_height, c->tile_height);
936 "ePIC: tile decoding failed, frame=%d, tile_x=%d, tile_y=%d\n",
937 avctx->frame_number, tile_x, tile_y);
943 tile_y * c->tile_height * c->framebuf_stride;
994 tile_y * c->tile_height * c->framebuf_stride;
1007 tile_y * c->tile_height * c->framebuf_stride;
1050 static int kempf_decode_tile(G2MContext *c, int tile_x, int tile_y,
1063 tile_y * c->tile_height * c->framebuf_stride;
1069 height = FFMIN(c->height - tile_y * c->tile_height, c->tile_height);
1503 c->tile_y = 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);