Home
last modified time | relevance | path

Searched refs:MI_SIZE_64X64 (Results 1 – 8 of 8) sorted by relevance

/external/libaom/libaom/av1/common/
Dcdef.c46 maxc = AOMMIN(maxc, MI_SIZE_64X64); in av1_cdef_compute_sb_list()
50 maxr = AOMMIN(maxr, MI_SIZE_64X64); in av1_cdef_compute_sb_list()
129 cdef_list dlist[MI_SIZE_64X64 * MI_SIZE_64X64]; in av1_cdef_frame()
139 const int nvfb = (mi_params->mi_rows + MI_SIZE_64X64 - 1) / MI_SIZE_64X64; in av1_cdef_frame()
140 const int nhfb = (mi_params->mi_cols + MI_SIZE_64X64 - 1) / MI_SIZE_64X64; in av1_cdef_frame()
164 (MI_SIZE_64X64 << mi_high_l2[pli]) + 2 * CDEF_VBORDER; in av1_cdef_frame()
175 if (mi_params->mi_grid_base[MI_SIZE_64X64 * fbr * mi_params->mi_stride + in av1_cdef_frame()
176 MI_SIZE_64X64 * fbc] == NULL || in av1_cdef_frame()
178 ->mi_grid_base[MI_SIZE_64X64 * fbr * mi_params->mi_stride + in av1_cdef_frame()
179 MI_SIZE_64X64 * fbc] in av1_cdef_frame()
[all …]
Dav1_loopfilter.h61 uint8_t lfl_y_hor[MI_SIZE_64X64][MI_SIZE_64X64];
62 uint8_t lfl_y_ver[MI_SIZE_64X64][MI_SIZE_64X64];
65 uint8_t lfl_u_ver[MI_SIZE_64X64][MI_SIZE_64X64];
66 uint8_t lfl_u_hor[MI_SIZE_64X64][MI_SIZE_64X64];
69 uint8_t lfl_v_ver[MI_SIZE_64X64][MI_SIZE_64X64];
70 uint8_t lfl_v_hor[MI_SIZE_64X64][MI_SIZE_64X64];
Dloopfiltermask.c630 if (offset + next_edge >= MI_SIZE_64X64) next_edge = 0; in filter_selectively_horiz()
713 if (offset + next_edge >= MI_SIZE_64X64) next_edge = 0; in highbd_filter_selectively_horiz()
792 const int row = mi_row % MI_SIZE_64X64; in av1_build_bitmask_vert_info()
870 const int col = mi_col % MI_SIZE_64X64; in av1_build_bitmask_horz_info()
958 ((mi_row + r) << MI_SIZE_LOG2) < cm->height && r < MI_SIZE_64X64; in av1_filter_block_plane_bitmask_vert()
1042 ((mi_row + r) << MI_SIZE_LOG2) < cm->height && r < MI_SIZE_64X64; in av1_filter_block_plane_bitmask_horz()
1117 c += MI_SIZE_64X64) { in av1_filter_block_plane_ver()
1121 const int row = ((mi_row + r) | ssy) % MI_SIZE_64X64; in av1_filter_block_plane_ver()
1122 const int col = ((mi_col + c) | ssx) % MI_SIZE_64X64; in av1_filter_block_plane_ver()
1202 c += MI_SIZE_64X64) { in av1_filter_block_plane_hor()
[all …]
Dav1_loopfilter.c689 for (mi_row = start; mi_row < stop; mi_row += MI_SIZE_64X64) { in loop_filter_rows()
690 for (mi_col = col_start; mi_col < col_end; mi_col += MI_SIZE_64X64) { in loop_filter_rows()
695 if (mi_col - MI_SIZE_64X64 >= 0) { in loop_filter_rows()
697 mi_col - MI_SIZE_64X64, plane, plane + 1); in loop_filter_rows()
699 mi_col - MI_SIZE_64X64); in loop_filter_rows()
703 mi_col - MI_SIZE_64X64, plane, plane + 1); in loop_filter_rows()
705 mi_col - MI_SIZE_64X64); in loop_filter_rows()
Dalloccommon.c287 (cm->mi_params.mi_cols + (MI_SIZE_64X64 - 1)) >> MIN_MIB_SIZE_LOG2; in av1_alloc_loop_filter_mask()
289 ((cm->mi_params.mi_rows + (MI_SIZE_64X64 - 1)) >> MIN_MIB_SIZE_LOG2) * in av1_alloc_loop_filter_mask()
Dthread_common.c229 step = MI_SIZE_64X64; in enqueue_lf_jobs()
354 mi_col += MI_SIZE_64X64) { in thread_loop_filter_bitmask_rows()
366 mi_col += MI_SIZE_64X64) { in thread_loop_filter_bitmask_rows()
Denums.h55 #define MI_SIZE_64X64 (64 >> MI_SIZE_LOG2) macro
/external/libaom/libaom/av1/encoder/
Dpickcdef.c308 const int maxr = AOMMIN(mi_params->mi_rows - mi_row, MI_SIZE_64X64); in sb_all_skip()
309 const int maxc = AOMMIN(mi_params->mi_cols - mi_col, MI_SIZE_64X64); in sb_all_skip()
367 const int nvfb = (mi_params->mi_rows + MI_SIZE_64X64 - 1) / MI_SIZE_64X64; in pick_cdef_from_qp()
368 const int nhfb = (mi_params->mi_cols + MI_SIZE_64X64 - 1) / MI_SIZE_64X64; in pick_cdef_from_qp()
372 mbmi[MI_SIZE_64X64 * c]->cdef_strength = 0; in pick_cdef_from_qp()
374 mbmi += MI_SIZE_64X64 * mi_params->mi_stride; in pick_cdef_from_qp()
390 const int nvfb = (mi_params->mi_rows + MI_SIZE_64X64 - 1) / MI_SIZE_64X64; in av1_cdef_search()
391 const int nhfb = (mi_params->mi_cols + MI_SIZE_64X64 - 1) / MI_SIZE_64X64; in av1_cdef_search()
440 if (sb_all_skip(mi_params, fbr * MI_SIZE_64X64, fbc * MI_SIZE_64X64)) in av1_cdef_search()
444 mi_params->mi_grid_base[MI_SIZE_64X64 * fbr * mi_params->mi_stride + in av1_cdef_search()
[all …]