/external/webp/src/dsp/ |
dec.c | 589 int thresh, int ithresh, int hev_thresh) { 592 if (hev(p, hstride, hev_thresh)) { 604 int thresh, int ithresh, int hev_thresh) { 607 if (hev(p, hstride, hev_thresh)) { 619 int thresh, int ithresh, int hev_thresh) { 620 FilterLoop26(p, stride, 1, 16, thresh, ithresh, hev_thresh); 624 int thresh, int ithresh, int hev_thresh) { 625 FilterLoop26(p, 1, stride, 16, thresh, ithresh, hev_thresh); 630 int thresh, int ithresh, int hev_thresh) { 634 FilterLoop24(p, stride, 1, 16, thresh, ithresh, hev_thresh); [all...] |
dec_sse2.c | 279 #define GET_NOTHEV(p1, p0, q0, q1, hev_thresh, not_hev) { \ 284 const __m128i h = _mm_set1_epi8(hev_thresh); \ 369 const __m128i* mask, int hev_thresh) { 375 GET_NOTHEV(*p1, *p0, *q0, *q1, hev_thresh, not_hev); 416 const __m128i* mask, int hev_thresh) { 421 GET_NOTHEV(*p1, *p0, *q0, *q1, hev_thresh, not_hev); 688 int thresh, int ithresh, int hev_thresh) { 702 DoFilter6(&p2, &p1, &p0, &q0, &q1, &q2, &mask, hev_thresh); 714 int thresh, int ithresh, int hev_thresh) { 726 DoFilter6(&p2, &p1, &p0, &q0, &q1, &q2, &mask, hev_thresh); [all...] |
/external/webp/src/enc/ |
filter.c | 137 int thresh, int ithresh, int hev_thresh) { 140 if (hev(p, hstride, hev_thresh)) { 152 int thresh, int ithresh, int hev_thresh) { 156 FilterLoop24(p, stride, 1, 16, thresh, ithresh, hev_thresh); 161 int thresh, int ithresh, int hev_thresh) { 165 FilterLoop24(p, 1, stride, 16, thresh, ithresh, hev_thresh); 170 int thresh, int ithresh, int hev_thresh) { 171 FilterLoop24(u + 4 * stride, stride, 1, 8, thresh, ithresh, hev_thresh); 172 FilterLoop24(v + 4 * stride, stride, 1, 8, thresh, ithresh, hev_thresh); 176 int thresh, int ithresh, int hev_thresh) { 225 const int hev_thresh = (level >= 40) ? 2 : (level >= 15) ? 1 : 0; local [all...] |
/external/webp/src/dec/ |
frame.c | 68 const int hev_thresh = local 71 VP8HFilter16(y_dst, y_bps, limit + 4, ilevel, hev_thresh); 72 VP8HFilter8(u_dst, v_dst, uv_bps, limit + 4, ilevel, hev_thresh); 75 VP8HFilter16i(y_dst, y_bps, limit, ilevel, hev_thresh); 76 VP8HFilter8i(u_dst, v_dst, uv_bps, limit, ilevel, hev_thresh); 79 VP8VFilter16(y_dst, y_bps, limit + 4, ilevel, hev_thresh); 80 VP8VFilter8(u_dst, v_dst, uv_bps, limit + 4, ilevel, hev_thresh); 83 VP8VFilter16i(y_dst, y_bps, limit, ilevel, hev_thresh); 84 VP8VFilter8i(u_dst, v_dst, uv_bps, limit, ilevel, hev_thresh);
|