Searched refs:mask_4x4 (Results 1 – 2 of 2) sorted by relevance
/external/libvpx/libvpx/vp9/common/ |
D | vp9_loopfilter.c | 299 unsigned int mask_8x8, unsigned int mask_4x4, unsigned int mask_4x4_int, in filter_selectively_vert_row2() argument 309 (mask_16x16 | mask_8x8 | mask_4x4 | mask_4x4_int) & dual_mask_cutoff; in filter_selectively_vert_row2() 340 if (mask_4x4 & dual_one) { in filter_selectively_vert_row2() 341 if ((mask_4x4 & dual_one) == dual_one) { in filter_selectively_vert_row2() 346 const loop_filter_thresh *lfi = lfis[!(mask_4x4 & 1)]; in filter_selectively_vert_row2() 347 vpx_lpf_vertical_4(ss[!(mask_4x4 & 1)], pitch, lfi->mblim, lfi->lim, in filter_selectively_vert_row2() 369 mask_4x4 >>= 1; in filter_selectively_vert_row2() 377 unsigned int mask_8x8, unsigned int mask_4x4, unsigned int mask_4x4_int, in highbd_filter_selectively_vert_row2() argument 387 (mask_16x16 | mask_8x8 | mask_4x4 | mask_4x4_int) & dual_mask_cutoff; in highbd_filter_selectively_vert_row2() 418 if (mask_4x4 & dual_one) { in highbd_filter_selectively_vert_row2() [all …]
|
/external/libaom/libaom/av1/common/ |
D | loopfiltermask.c | 615 uint64_t mask_8x8, uint64_t mask_4x4, in filter_selectively_horiz() argument 624 for (mask = mask_16x16 | mask_8x8 | mask_4x4; mask; mask >>= step * count) { in filter_selectively_horiz() 675 } else if (mask_4x4 & 1) { in filter_selectively_horiz() 676 if ((mask_4x4 & two_block_mask) == two_block_mask) { in filter_selectively_horiz() 691 mask_4x4 >>= step * count; in filter_selectively_horiz() 699 uint64_t mask_8x8, uint64_t mask_4x4, const loop_filter_info_n *lfi_n, in highbd_filter_selectively_horiz() argument 707 for (mask = mask_16x16 | mask_8x8 | mask_4x4; mask; mask >>= step * count) { in highbd_filter_selectively_horiz() 756 } else if (mask_4x4 & 1) { in highbd_filter_selectively_horiz() 757 if ((mask_4x4 & two_block_mask) == two_block_mask) { in highbd_filter_selectively_horiz() 773 mask_4x4 >>= step * count; in highbd_filter_selectively_horiz() [all …]
|