Searched refs:sb_rows (Results 1 – 5 of 5) sorted by relevance
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_multi_thread.c | 59 const int sb_rows = mi_cols_aligned_to_sb(cm->mi_rows) >> MI_BLOCK_SIZE_LOG2; in vp9_row_mt_mem_alloc() local 62 jobs_per_tile_col = VPXMAX(cm->mb_rows, sb_rows); in vp9_row_mt_mem_alloc() 86 const int sb_rows = in vp9_row_mt_mem_alloc() local 90 (int *)vpx_calloc(sb_rows * BLOCK_SIZES * MAX_MODES, in vp9_row_mt_mem_alloc() 92 for (i = 0; i < sb_rows * BLOCK_SIZES * MAX_MODES; i++) in vp9_row_mt_mem_alloc() 163 const int sb_rows = mi_cols_aligned_to_sb(cm->mi_rows) >> MI_BLOCK_SIZE_LOG2; in vp9_multi_thread_tile_init() local 168 int jobs_per_tile_col = cpi->oxcf.pass == 1 ? cm->mb_rows : sb_rows; in vp9_multi_thread_tile_init() 223 const int sb_rows = mi_cols_aligned_to_sb(cm->mi_rows) >> MI_BLOCK_SIZE_LOG2; in vp9_prepare_job_queue() local 226 jobs_per_tile_col = (job_type != ENCODE_JOB) ? cm->mb_rows : sb_rows; in vp9_prepare_job_queue()
|
D | vp9_aq_cyclicrefresh.c | 331 int i, block_count, bl_index, sb_rows, sb_cols, sbs_in_frame; in cyclic_refresh_update_map() local 339 sb_rows = (cm->mi_rows + MI_BLOCK_SIZE - 1) / MI_BLOCK_SIZE; in cyclic_refresh_update_map() 340 sbs_in_frame = sb_cols * sb_rows; in cyclic_refresh_update_map()
|
D | vp9_ratectrl.c | 2346 int sb_rows = (cm->mi_rows + MI_BLOCK_SIZE - 1) / MI_BLOCK_SIZE; in vp9_scene_detection_onepass() local 2353 for (sbi_row = 0; sbi_row < sb_rows; ++sbi_row) { in vp9_scene_detection_onepass() 2357 (sbi_row < sb_rows - 1 && sbi_col < sb_cols - 1) && in vp9_scene_detection_onepass()
|
D | vp9_encoder.c | 1182 int sb_rows; in alloc_compressor_data() local 1196 sb_rows = mi_cols_aligned_to_sb(cm->mi_rows) >> MI_BLOCK_SIZE_LOG2; in alloc_compressor_data() 1200 vpx_calloc(sb_rows * 4 * (1 << 6), sizeof(*cpi->tplist[0][0]))); in alloc_compressor_data()
|
/external/libvpx/libvpx/vp9/common/ |
D | vp9_thread_common.c | 159 const int sb_rows = mi_cols_aligned_to_sb(cm->mi_rows) >> MI_BLOCK_SIZE_LOG2; in loop_filter_rows_mt() local 166 if (!lf_sync->sync_range || sb_rows != lf_sync->rows || in loop_filter_rows_mt() 169 vp9_loop_filter_alloc(lf_sync, cm, sb_rows, cm->width, num_workers); in loop_filter_rows_mt() 173 memset(lf_sync->cur_sb_col, -1, sizeof(*lf_sync->cur_sb_col) * sb_rows); in loop_filter_rows_mt()
|