Searched refs:max_sb_rows (Results 1 – 4 of 4) sorted by relevance
/external/libaom/libaom/av1/encoder/ |
D | av1_multi_thread.c | 18 void av1_row_mt_mem_alloc(AV1_COMP *cpi, int max_sb_rows) { in av1_row_mt_mem_alloc() argument 27 multi_thread_ctxt->allocated_sb_rows = max_sb_rows; in av1_row_mt_mem_alloc() 37 av1_row_mt_sync_mem_alloc(&this_tile->row_mt_sync, cm, max_sb_rows); in av1_row_mt_mem_alloc()
|
D | av1_multi_thread.h | 17 void av1_row_mt_mem_alloc(AV1_COMP *cpi, int max_sb_rows);
|
D | ethread.c | 661 int max_sb_rows = 0; in av1_encode_tiles_row_mt() local 679 max_sb_rows = AOMMAX(max_sb_rows, num_sb_rows_in_tile); in av1_encode_tiles_row_mt() 691 multi_thread_ctxt->allocated_sb_rows != max_sb_rows) { in av1_encode_tiles_row_mt() 693 av1_row_mt_mem_alloc(cpi, max_sb_rows); in av1_encode_tiles_row_mt() 706 sizeof(*this_tile->row_mt_sync.cur_col) * max_sb_rows); in av1_encode_tiles_row_mt()
|
/external/libaom/libaom/av1/decoder/ |
D | decodeframe.c | 3637 int end_tile, int max_sb_rows) { in row_mt_frame_init() argument 3677 sizeof(*tile_data->dec_row_mt_sync.cur_sb_col) * max_sb_rows); in row_mt_frame_init() 3721 int max_sb_rows = 0; in decode_tiles_row_mt() local 3780 max_sb_rows = AOMMAX(max_sb_rows, in decode_tiles_row_mt() 3787 if (pbi->allocated_row_mt_sync_rows != max_sb_rows) { in decode_tiles_row_mt() 3791 dec_row_mt_alloc(&tile_data->dec_row_mt_sync, cm, max_sb_rows); in decode_tiles_row_mt() 3793 pbi->allocated_row_mt_sync_rows = max_sb_rows; in decode_tiles_row_mt() 3802 tile_cols_end, start_tile, end_tile, max_sb_rows); in decode_tiles_row_mt()
|