Home
last modified time | relevance | path

Searched refs:sb_cols (Results 1 – 13 of 13) sorted by relevance

/external/libaom/libaom/av1/common/
Dtile_common.c33 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 …]
Dthread_common.c176 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 …]
Drestoration.h331 const int sb_cols, int plane);
374 const int sb_cols, int plane);
Drestoration.c1236 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/
Dvp9_tile_common.c19 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()
Dvp9_thread_common.c59 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/
Daq_cyclicrefresh.c294 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()
Dencoder.h1164 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()
Dencoder.c894 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/
Dvp9_aq_cyclicrefresh.c364 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()
Dvp9_ratectrl.c2878 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/
Ddecodeframe.c2988 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/
Dvp9_decodeframe.c2377 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()