/external/webp/src/enc/ |
D | filter.c | 136 int thresh, int ithresh, int hev_thresh) { in FilterLoop24() argument 139 if (hev(p, hstride, hev_thresh)) { in FilterLoop24() 151 int thresh, int ithresh, int hev_thresh) { in VFilter16i() argument 155 FilterLoop24(p, stride, 1, 16, thresh, ithresh, hev_thresh); in VFilter16i() 160 int thresh, int ithresh, int hev_thresh) { in HFilter16i() argument 164 FilterLoop24(p, 1, stride, 16, thresh, ithresh, hev_thresh); in HFilter16i() 169 int thresh, int ithresh, int hev_thresh) { in VFilter8i() argument 170 FilterLoop24(u + 4 * stride, stride, 1, 8, thresh, ithresh, hev_thresh); in VFilter8i() 171 FilterLoop24(v + 4 * stride, stride, 1, 8, thresh, ithresh, hev_thresh); in VFilter8i() 175 int thresh, int ithresh, int hev_thresh) { in HFilter8i() argument [all …]
|
/external/webp/src/dec/ |
D | dsp.c | 591 int thresh, int ithresh, int hev_thresh) { in FilterLoop26() argument 594 if (hev(p, hstride, hev_thresh)) { in FilterLoop26() 605 int thresh, int ithresh, int hev_thresh) { in FilterLoop24() argument 608 if (hev(p, hstride, hev_thresh)) { in FilterLoop24() 620 int thresh, int ithresh, int hev_thresh) { in VFilter16() argument 621 FilterLoop26(p, stride, 1, 16, thresh, ithresh, hev_thresh); in VFilter16() 625 int thresh, int ithresh, int hev_thresh) { in HFilter16() argument 626 FilterLoop26(p, 1, stride, 16, thresh, ithresh, hev_thresh); in HFilter16() 631 int thresh, int ithresh, int hev_thresh) { in VFilter16i() argument 635 FilterLoop24(p, stride, 1, 16, thresh, ithresh, hev_thresh); in VFilter16i() [all …]
|
D | dsp_sse2.c | 277 #define GET_NOTHEV(p1, p0, q0, q1, hev_thresh, not_hev) { \ argument 282 const __m128i h = _mm_set1_epi8(hev_thresh); \ 366 const __m128i* mask, int hev_thresh) { in DoFilter4() argument 372 GET_NOTHEV(*p1, *p0, *q0, *q1, hev_thresh, not_hev); in DoFilter4() 413 const __m128i* mask, int hev_thresh) { in DoFilter6() argument 418 GET_NOTHEV(*p1, *p0, *q0, *q1, hev_thresh, not_hev); in DoFilter6() 683 int thresh, int ithresh, int hev_thresh) { in VFilter16SSE2() argument 697 DoFilter6(&p2, &p1, &p0, &q0, &q1, &q2, &mask, hev_thresh); in VFilter16SSE2() 709 int thresh, int ithresh, int hev_thresh) { in HFilter16SSE2() argument 721 DoFilter6(&p2, &p1, &p0, &q0, &q1, &q2, &mask, hev_thresh); in HFilter16SSE2() [all …]
|
D | frame.c | 158 const int hev_thresh = in DoFilter() local 161 VP8HFilter16(y_dst, y_bps, limit + 4, ilevel, hev_thresh); in DoFilter() 162 VP8HFilter8(u_dst, v_dst, uv_bps, limit + 4, ilevel, hev_thresh); in DoFilter() 165 VP8HFilter16i(y_dst, y_bps, limit, ilevel, hev_thresh); in DoFilter() 166 VP8HFilter8i(u_dst, v_dst, uv_bps, limit, ilevel, hev_thresh); in DoFilter() 169 VP8VFilter16(y_dst, y_bps, limit + 4, ilevel, hev_thresh); in DoFilter() 170 VP8VFilter8(u_dst, v_dst, uv_bps, limit + 4, ilevel, hev_thresh); in DoFilter() 173 VP8VFilter16i(y_dst, y_bps, limit, ilevel, hev_thresh); in DoFilter() 174 VP8VFilter8i(u_dst, v_dst, uv_bps, limit, ilevel, hev_thresh); in DoFilter()
|