HomeSort by relevance Sort by last modified time
    Searched defs:lfm (Results 1 - 3 of 3) sorted by null

  /external/libvpx/libvpx/vp9/common/
vp9_loopfilter.h 88 LOOP_FILTER_MASK *lfm; member in struct:loopfilter
101 const int mode_info_stride, LOOP_FILTER_MASK *lfm);
105 int mi_row, LOOP_FILTER_MASK *lfm);
109 int mi_row, LOOP_FILTER_MASK *lfm);
126 // Get the superblock lfm for a given mi_row, mi_col.
129 return &lf->lfm[(mi_col >> 3) + ((mi_row >> 3) * lf->lfm_stride)];
135 const int mi_col, LOOP_FILTER_MASK *lfm);
vp9_thread_common.c 108 LOOP_FILTER_MASK *lfm = get_lfm(&cm->lf, mi_row, 0); local
110 for (mi_col = 0; mi_col < cm->mi_cols; mi_col += MI_BLOCK_SIZE, ++lfm) {
119 vp9_adjust_mask(cm, mi_row, mi_col, lfm);
121 vp9_filter_block_plane_ss00(cm, &planes[0], mi_row, lfm);
125 vp9_filter_block_plane_ss11(cm, &planes[plane], mi_row, lfm);
128 vp9_filter_block_plane_ss00(cm, &planes[plane], mi_row, lfm);
vp9_loopfilter.c 646 // This function ors into the current lfm structure, where to do loop
654 const int shift_uv, LOOP_FILTER_MASK *lfm) {
659 uint64_t *const left_y = &lfm->left_y[tx_size_y];
660 uint64_t *const above_y = &lfm->above_y[tx_size_y];
661 uint64_t *const int_4x4_y = &lfm->int_4x4_y;
662 uint16_t *const left_uv = &lfm->left_uv[tx_size_uv];
663 uint16_t *const above_uv = &lfm->above_uv[tx_size_uv];
664 uint16_t *const int_4x4_uv = &lfm->int_4x4_uv;
675 memset(&lfm->lfl_y[index], filter_level, w);
731 LOOP_FILTER_MASK *lfm) {
1434 LOOP_FILTER_MASK *lfm = get_lfm(&cm->lf, mi_row, 0); local
1527 LOOP_FILTER_MASK *const lfm = get_lfm(&cm->lf, mi_row, mi_col); local
    [all...]

Completed in 2085 milliseconds