HomeSort by: relevance | last modified time | path
    Searched defs:tile_log2 (Results 1 - 1 of 1) sorted by relevancy

  /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/omx/bellagio/
vid_dec_av1.c 629 static unsigned tile_log2(unsigned blkSize, unsigned target) function
666 minLog2TileCols = tile_log2(maxTileWidthSb, sbCols);
667 maxLog2TileCols = tile_log2(1, MIN2(sbCols, AV1_MAX_TILE_COLS));
668 maxLog2TileRows = tile_log2(1, MIN2(sbRows, AV1_MAX_TILE_ROWS));
669 minLog2Tiles = MAX2(minLog2TileCols, tile_log2(maxTileAreaSb, sbRows * sbCols));
732 ti->TileColsLog2 = tile_log2(1, ti->TileCols);
753 ti->TileRowsLog2 = tile_log2(1, ti->TileRows);

Completed in 23 milliseconds