Lines Matching refs:tile
159 /* Decode tile dimensions. */
461 * for all macroblocks in the current tile.
465 * @param[in,out] tile pointer to the tile descriptor
470 IVITile *tile, AVCodecContext *avctx)
477 mb = tile->mbs;
478 ref_mb = tile->ref_mbs;
479 offs = tile->ypos * band->pitch + tile->xpos;
488 if (((tile->width + band->mb_size-1)/band->mb_size) * ((tile->height + band->mb_size-1)/band->mb_size) != tile->num_MBs) {
489 av_log(avctx, AV_LOG_ERROR, "num_MBs mismatch %d %d %d %d\n", tile->width, tile->height, band->mb_size, tile->num_MBs);
493 for (y = tile->ypos; y < tile->ypos + tile->height; y += band->mb_size) {
496 for (x = tile->xpos; x < tile->xpos + tile->width; x += band->mb_size) {