Home
last modified time | relevance | path

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

/external/libgav1/libgav1/src/dsp/
Dloop_filter.cc99 const int max_unsigned_val = LoopFilterFuncs_C<bitdepth, Pixel>::kMaxPixel; in Filter2_C() local
100 p[-step] = Clip3(p0 + a2, 0, max_unsigned_val); in Filter2_C()
101 p[0] = Clip3(q0 - a1, 0, max_unsigned_val); in Filter2_C()
117 const int max_unsigned_val = LoopFilterFuncs_C<bitdepth, Pixel>::kMaxPixel; in Filter4_C() local
118 p[-2 * step] = Clip3(p1 + a3, 0, max_unsigned_val); in Filter4_C()
119 p[-1 * step] = Clip3(p0 + a2, 0, max_unsigned_val); in Filter4_C()
120 p[0 * step] = Clip3(q0 - a1, 0, max_unsigned_val); in Filter4_C()
121 p[1 * step] = Clip3(q1 - a3, 0, max_unsigned_val); in Filter4_C()