Lines Matching refs:tile_height
121 int tile_width, tile_height; ///< tile size
168 fprintf(fd, "XSiz = %d, YSiz = %d, tile_width = %d, tile_height = %d\n"
171 s->width, s->height, s->tile_width, s->tile_height,
315 bytestream_put_be32(&s->buf, s->tile_height); // YTSiz
461 s->numYtiles = ff_jpeg2000_ceildiv(s->height, s->tile_height);
484 comp->coord[1][0] = comp->coord_o[1][0] = tiley * s->tile_height;
485 comp->coord[1][1] = comp->coord_o[1][1] = FFMIN((tiley+1)*s->tile_height, s->height);
951 tile_coord[1][0] = row * s->tile_height;
952 tile_coord[1][1] = FFMIN(tile_coord[1][0] + s->tile_height, s->height);
1751 (s->tile_height & (s->tile_height-1))) {
1804 { "tile_height", "Tile Height", OFFSET(tile_height), AV_OPT_TYPE_INT, { .i64 = 256 }, 1, 1<<30, VE, },