/external/libaom/libaom/av1/common/ |
D | tile_common.c | 33 int sb_cols = mi_cols >> cm->seq_params.mib_size_log2; in av1_get_tile_limits() local 40 cm->min_log2_tile_cols = tile_log2(cm->max_tile_width_sb, sb_cols); in av1_get_tile_limits() 41 cm->max_log2_tile_cols = tile_log2(1, AOMMIN(sb_cols, MAX_TILE_COLS)); in av1_get_tile_limits() 43 cm->min_log2_tiles = tile_log2(max_tile_area_sb, sb_cols * sb_rows); in av1_get_tile_limits() 50 int sb_cols = mi_cols >> cm->seq_params.mib_size_log2; in av1_calculate_tile_cols() local 60 int size_sb = ALIGN_POWER_OF_TWO(sb_cols, cm->log2_tile_cols); in av1_calculate_tile_cols() 63 for (i = 0, start_sb = 0; start_sb < sb_cols; i++) { in av1_calculate_tile_cols() 68 cm->tile_col_start_sb[i] = sb_cols; in av1_calculate_tile_cols() 78 int max_tile_area_sb = (sb_rows * sb_cols); in av1_calculate_tile_cols() 156 int sb_cols = mi_cols_aligned_to_sb >> cm->seq_params.mib_size_log2; in av1_get_sb_cols_in_tile() local [all …]
|
D | thread_common.c | 176 const int sb_cols, int plane) { in sync_write() argument 183 if (c < sb_cols - 1) { in sync_write() 187 cur = sb_cols + nsync; in sync_write() 202 (void)sb_cols; in sync_write() 270 const int sb_cols = in thread_loop_filter_rows() local 293 sync_write(lf_sync, r, c, sb_cols, plane); in thread_loop_filter_rows() 333 const int sb_cols = in thread_loop_filter_bitmask_rows() local 357 sync_write(lf_sync, r, c, sb_cols, plane); in thread_loop_filter_bitmask_rows() 547 const int sb_cols, int plane) { in lr_sync_write() argument 555 if (c < sb_cols - 1) { in lr_sync_write() [all …]
|
D | restoration.h | 331 const int sb_cols, int plane); 374 const int sb_cols, int plane);
|
D | restoration.c | 1236 const int sb_cols, int plane) { in av1_lr_sync_write_dummy() argument 1240 (void)sb_cols; in av1_lr_sync_write_dummy()
|
/external/libvpx/libvpx/vp9/common/ |
D | vp9_tile_common.c | 19 const int sb_cols = mi_cols_aligned_to_sb(mis) >> MI_BLOCK_SIZE_LOG2; in get_tile_offset() local 20 const int offset = ((idx * sb_cols) >> log2) << MI_BLOCK_SIZE_LOG2; in get_tile_offset()
|
D | vp9_thread_common.c | 59 const int sb_cols) { in sync_write() argument 66 if (c < sb_cols - 1) { in sync_write() 70 cur = sb_cols + nsync; in sync_write() 85 (void)sb_cols; in sync_write() 95 const int sb_cols = mi_cols_aligned_to_sb(cm->mi_cols) >> MI_BLOCK_SIZE_LOG2; in thread_loop_filter_rows() local 142 sync_write(lf_sync, r, c, sb_cols); in thread_loop_filter_rows()
|
/external/libaom/libaom/av1/encoder/ |
D | aq_cyclicrefresh.c | 294 int i, block_count, bl_index, sb_rows, sb_cols, sbs_in_frame; in cyclic_refresh_update_map() local 297 sb_cols = in cyclic_refresh_update_map() 301 sbs_in_frame = sb_cols * sb_rows; in cyclic_refresh_update_map() 314 int sb_row_index = (i / sb_cols); in cyclic_refresh_update_map() 315 int sb_col_index = i - sb_row_index * sb_cols; in cyclic_refresh_update_map()
|
D | encoder.h | 1164 const int sb_cols = ALIGN_POWER_OF_TWO(mb_cols, shift) >> shift; in get_token_alloc() local 1169 return sb_rows * sb_cols * sb_palette_toks; in get_token_alloc()
|
D | encoder.c | 894 int sb_cols = mi_cols >> cm->seq_params.mib_size_log2; in set_tile_info() local 897 for (i = 0, start_sb = 0; start_sb < sb_cols && i < MAX_TILE_COLS; i++) { in set_tile_info() 904 cm->tile_col_start_sb[i] = sb_cols; in set_tile_info()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_aq_cyclicrefresh.c | 364 int i, block_count, bl_index, sb_rows, sb_cols, sbs_in_frame; in cyclic_refresh_update_map() local 371 sb_cols = (cm->mi_cols + MI_BLOCK_SIZE - 1) / MI_BLOCK_SIZE; in cyclic_refresh_update_map() 373 sbs_in_frame = sb_cols * sb_rows; in cyclic_refresh_update_map() 400 int sb_row_index = (i / sb_cols); in cyclic_refresh_update_map() 401 int sb_col_index = i - sb_row_index * sb_cols; in cyclic_refresh_update_map()
|
D | vp9_ratectrl.c | 2878 int sb_cols = (num_mi_cols + MI_BLOCK_SIZE - 1) / MI_BLOCK_SIZE; in vp9_scene_detection_onepass() local 2888 for (sbi_col = 0; sbi_col < sb_cols; ++sbi_col) { in vp9_scene_detection_onepass() 2891 (sbi_row < sb_rows - 1 && sbi_col < sb_cols - 1) && in vp9_scene_detection_onepass() 2903 src_y += (src_ystride << 6) - (sb_cols << 6); in vp9_scene_detection_onepass() 2904 last_src_y += (last_src_ystride << 6) - (sb_cols << 6); in vp9_scene_detection_onepass()
|
/external/libaom/libaom/av1/decoder/ |
D | decodeframe.c | 2988 int c, const int sb_cols) { in sync_write() argument 2994 if (c < sb_cols - 1) { in sync_write() 2998 cur = sb_cols + nsync; in sync_write() 3013 (void)sb_cols; in sync_write()
|
/external/libvpx/libvpx/vp9/decoder/ |
D | vp9_decodeframe.c | 2377 const int sb_cols = aligned_cols >> MI_BLOCK_SIZE_LOG2; in read_uncompressed_header() local 2381 num_sbs = sb_cols * sb_rows; in read_uncompressed_header()
|