• Home
  • Raw
  • Download

Lines Matching refs:tile_cols

39     for (int col = 0; col < cm->tile_cols; col++) {  in update_delta_lf_for_row_mt()
40 TileDataEnc *tile_data = &cpi->tile_data[row * cm->tile_cols + col]; in update_delta_lf_for_row_mt()
227 const int tile_cols = cm->tile_cols; in switch_tile_and_get_next_job() local
235 for (int tile_col = 0; tile_col < tile_cols; tile_col++) { in switch_tile_and_get_next_job()
236 int tile_index = tile_row * tile_cols + tile_col; in switch_tile_and_get_next_job()
356 const int tile_cols = cm->tile_cols; in enc_worker_hook() local
362 for (t = thread_data->start; t < tile_rows * tile_cols; in enc_worker_hook()
364 int tile_row = t / tile_cols; in enc_worker_hook()
365 int tile_col = t % tile_cols; in enc_worker_hook()
368 &cpi->tile_data[tile_row * cm->tile_cols + tile_col]; in enc_worker_hook()
589 const int tile_cols = cm->tile_cols; in av1_encode_tiles_mt() local
591 int num_workers = AOMMIN(cpi->oxcf.max_threads, tile_cols * tile_rows); in av1_encode_tiles_mt()
593 if (cpi->tile_data == NULL || cpi->allocated_tiles < tile_cols * tile_rows) in av1_encode_tiles_mt()
623 const int tile_cols = cm->tile_cols; in av1_encode_tiles_row_mt() local
630 if (cpi->tile_data == NULL || cpi->allocated_tiles < tile_cols * tile_rows) { in av1_encode_tiles_row_mt()
638 for (int col = 0; col < tile_cols; col++) { in av1_encode_tiles_row_mt()
639 TileDataEnc *tile_data = &cpi->tile_data[row * cm->tile_cols + col]; in av1_encode_tiles_row_mt()
656 if (multi_thread_ctxt->allocated_tile_cols != tile_cols || in av1_encode_tiles_row_mt()
667 for (int tile_col = 0; tile_col < tile_cols; tile_col++) { in av1_encode_tiles_row_mt()
668 int tile_id = tile_row * tile_cols + tile_col; in av1_encode_tiles_row_mt()
692 assign_tile_to_thread(multi_thread_ctxt, tile_cols * tile_rows, num_workers); in av1_encode_tiles_row_mt()