Lines Matching defs:tile
76 av_log(avctx, AV_LOG_ERROR, "Invalid tile size: %d\n", tile_size);
447 * for all macroblocks in the current tile.
451 * @param[in,out] tile ptr to the tile descriptor
456 IVITile *tile, AVCodecContext *avctx)
463 mb = tile->mbs;
464 ref_mb = tile->ref_mbs;
465 offs = tile->ypos * band->pitch + tile->xpos;
471 if (tile->num_MBs != IVI_MBs_PER_TILE(tile->width, tile->height, band->mb_size)) {
472 av_log(avctx, AV_LOG_ERROR, "Allocated tile size %d mismatches parameters %d\n",
473 tile->num_MBs, IVI_MBs_PER_TILE(tile->width, tile->height, band->mb_size));
481 for (y = tile->ypos; y < (tile->ypos + tile->height); y += band->mb_size) {
484 for (x = tile->xpos; x < (tile->xpos + tile->width); x += band->mb_size) {
654 there is only one band per plane (no scalability), only one tile (no local decoding)