Searched refs:lfm (Results 1 – 4 of 4) sorted by relevance
/external/libvpx/libvpx/vp9/common/ |
D | vp9_loopfilter.c | 711 LOOP_FILTER_MASK *lfm) { in build_masks() argument 717 uint64_t *const left_y = &lfm->left_y[tx_size_y]; in build_masks() 718 uint64_t *const above_y = &lfm->above_y[tx_size_y]; in build_masks() 719 uint64_t *const int_4x4_y = &lfm->int_4x4_y; in build_masks() 720 uint16_t *const left_uv = &lfm->left_uv[tx_size_uv]; in build_masks() 721 uint16_t *const above_uv = &lfm->above_uv[tx_size_uv]; in build_masks() 722 uint16_t *const int_4x4_uv = &lfm->int_4x4_uv; in build_masks() 733 memset(&lfm->lfl_y[index], filter_level, w); in build_masks() 790 LOOP_FILTER_MASK *lfm) { in build_y_mask() argument 795 uint64_t *const left_y = &lfm->left_y[tx_size_y]; in build_y_mask() [all …]
|
D | vp9_loopfilter.h | 87 LOOP_FILTER_MASK *lfm; member 101 LOOP_FILTER_MASK *lfm); 106 LOOP_FILTER_MASK *lfm); 111 LOOP_FILTER_MASK *lfm); 134 return &lf->lfm[(mi_col >> 3) + ((mi_row >> 3) * lf->lfm_stride)]; in get_lfm() 140 const int mi_col, LOOP_FILTER_MASK *lfm);
|
D | vp9_alloccommon.c | 118 vpx_free(cm->lf.lfm); in vp9_free_context_buffers() 119 cm->lf.lfm = NULL; in vp9_free_context_buffers() 154 vpx_free(cm->lf.lfm); in vp9_alloc_context_buffers() 159 cm->lf.lfm = (LOOP_FILTER_MASK *)vpx_calloc( in vp9_alloc_context_buffers() 161 sizeof(*cm->lf.lfm)); in vp9_alloc_context_buffers() 162 if (!cm->lf.lfm) goto fail; in vp9_alloc_context_buffers()
|
D | vp9_thread_common.c | 112 LOOP_FILTER_MASK *lfm = get_lfm(&cm->lf, mi_row, 0); in thread_loop_filter_rows() local 114 for (mi_col = 0; mi_col < cm->mi_cols; mi_col += MI_BLOCK_SIZE, ++lfm) { in thread_loop_filter_rows() 123 vp9_adjust_mask(cm, mi_row, mi_col, lfm); in thread_loop_filter_rows() 125 vp9_filter_block_plane_ss00(cm, &planes[0], mi_row, lfm); in thread_loop_filter_rows() 129 vp9_filter_block_plane_ss11(cm, &planes[plane], mi_row, lfm); in thread_loop_filter_rows() 132 vp9_filter_block_plane_ss00(cm, &planes[plane], mi_row, lfm); in thread_loop_filter_rows()
|