Home
last modified time | relevance | path

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

/external/webp/src/dsp/
Ddec_mips32.c94 int thresh, int ithresh, int hev_thresh) { in FilterLoop26() argument
98 if (hev(p, hstride, hev_thresh)) { in FilterLoop26()
110 int thresh, int ithresh, int hev_thresh) { in FilterLoop24() argument
114 if (hev(p, hstride, hev_thresh)) { in FilterLoop24()
126 int thresh, int ithresh, int hev_thresh) { in VFilter16() argument
127 FilterLoop26(p, stride, 1, 16, thresh, ithresh, hev_thresh); in VFilter16()
131 int thresh, int ithresh, int hev_thresh) { in HFilter16() argument
132 FilterLoop26(p, 1, stride, 16, thresh, ithresh, hev_thresh); in HFilter16()
137 int thresh, int ithresh, int hev_thresh) { in VFilter8() argument
138 FilterLoop26(u, stride, 1, 8, thresh, ithresh, hev_thresh); in VFilter8()
[all …]
Ddec_mips_dsp_r2.c162 int thresh, int ithresh, int hev_thresh) { in FilterLoop26() argument
292 [ithresh]"r"(ithresh),[vstride]"r"(vstride), [hev_thresh]"r"(hev_thresh), in FilterLoop26()
300 int thresh, int ithresh, int hev_thresh) { in FilterLoop24() argument
421 [hev_thresh]"r"(hev_thresh), [hstride]"r"(hstride), in FilterLoop24()
429 int thresh, int ithresh, int hev_thresh) { in VFilter16() argument
430 FilterLoop26(p, stride, 1, 16, thresh, ithresh, hev_thresh); in VFilter16()
434 int thresh, int ithresh, int hev_thresh) { in HFilter16() argument
435 FilterLoop26(p, 1, stride, 16, thresh, ithresh, hev_thresh); in HFilter16()
440 int thresh, int ithresh, int hev_thresh) { in VFilter8() argument
441 FilterLoop26(u, stride, 1, 8, thresh, ithresh, hev_thresh); in VFilter8()
[all …]
Ddec.c597 int hev_thresh) { in FilterLoop26_C() argument
601 if (Hev(p, hstride, hev_thresh)) { in FilterLoop26_C()
614 int hev_thresh) { in FilterLoop24_C() argument
618 if (Hev(p, hstride, hev_thresh)) { in FilterLoop24_C()
632 int thresh, int ithresh, int hev_thresh) { in VFilter16_C() argument
633 FilterLoop26_C(p, stride, 1, 16, thresh, ithresh, hev_thresh); in VFilter16_C()
637 int thresh, int ithresh, int hev_thresh) { in HFilter16_C() argument
638 FilterLoop26_C(p, 1, stride, 16, thresh, ithresh, hev_thresh); in HFilter16_C()
643 int thresh, int ithresh, int hev_thresh) { in VFilter16i_C() argument
647 FilterLoop24_C(p, stride, 1, 16, thresh, ithresh, hev_thresh); in VFilter16i_C()
[all …]
Ddec_sse2.c277 int hev_thresh, __m128i* const not_hev) { in GetNotHEV_SSE2() argument
282 const __m128i h = _mm_set1_epi8(hev_thresh); in GetNotHEV_SSE2()
381 int hev_thresh) { in DoFilter4_SSE2() argument
391 GetNotHEV_SSE2(p1, p0, q0, q1, hev_thresh, &not_hev); in DoFilter4_SSE2()
428 int hev_thresh) { in DoFilter6_SSE2() argument
434 GetNotHEV_SSE2(p1, p0, q0, q1, hev_thresh, &not_hev); in DoFilter6_SSE2()
690 int thresh, int ithresh, int hev_thresh) { in VFilter16_SSE2() argument
704 DoFilter6_SSE2(&p2, &p1, &p0, &q0, &q1, &q2, &mask, hev_thresh); in VFilter16_SSE2()
716 int thresh, int ithresh, int hev_thresh) { in HFilter16_SSE2() argument
728 DoFilter6_SSE2(&p2, &p1, &p0, &q0, &q1, &q2, &mask, hev_thresh); in HFilter16_SSE2()
[all …]
Ddec_neon.c677 int hev_thresh) { in NeedsHev_NEON() argument
678 const uint8x16_t hev_thresh_v = vdupq_n_u8((uint8_t)hev_thresh); in NeedsHev_NEON()
838 int thresh, int ithresh, int hev_thresh) { in VFilter16_NEON() argument
844 const uint8x16_t hev_mask = NeedsHev_NEON(p1, p0, q0, q1, hev_thresh); in VFilter16_NEON()
855 int thresh, int ithresh, int hev_thresh) { in HFilter16_NEON() argument
861 const uint8x16_t hev_mask = NeedsHev_NEON(p1, p0, q0, q1, hev_thresh); in HFilter16_NEON()
873 int thresh, int ithresh, int hev_thresh) { in VFilter16i_NEON() argument
884 const uint8x16_t hev_mask = NeedsHev_NEON(p1, p0, q0, q1, hev_thresh); in VFilter16i_NEON()
897 int thresh, int ithresh, int hev_thresh) { in HFilter16i_NEON() argument
908 const uint8x16_t hev_mask = NeedsHev_NEON(p1, p0, q0, q1, hev_thresh); in HFilter16i_NEON()
[all …]
/external/webp/src/enc/
Dfilter_enc.c101 const int hev_thresh = (level >= 40) ? 2 : (level >= 15) ? 1 : 0; in DoFilter() local
102 VP8HFilter16i(y_dst, BPS, limit, ilevel, hev_thresh); in DoFilter()
103 VP8HFilter8i(u_dst, v_dst, BPS, limit, ilevel, hev_thresh); in DoFilter()
104 VP8VFilter16i(y_dst, BPS, limit, ilevel, hev_thresh); in DoFilter()
105 VP8VFilter8i(u_dst, v_dst, BPS, limit, ilevel, hev_thresh); in DoFilter()
/external/webp/src/dec/
Dframe_dec.c232 const int hev_thresh = f_info->hev_thresh_; in DoFilter() local
234 VP8HFilter16(y_dst, y_bps, limit + 4, ilevel, hev_thresh); in DoFilter()
235 VP8HFilter8(u_dst, v_dst, uv_bps, limit + 4, ilevel, hev_thresh); in DoFilter()
238 VP8HFilter16i(y_dst, y_bps, limit, ilevel, hev_thresh); in DoFilter()
239 VP8HFilter8i(u_dst, v_dst, uv_bps, limit, ilevel, hev_thresh); in DoFilter()
242 VP8VFilter16(y_dst, y_bps, limit + 4, ilevel, hev_thresh); in DoFilter()
243 VP8VFilter8(u_dst, v_dst, uv_bps, limit + 4, ilevel, hev_thresh); in DoFilter()
246 VP8VFilter16i(y_dst, y_bps, limit, ilevel, hev_thresh); in DoFilter()
247 VP8VFilter8i(u_dst, v_dst, uv_bps, limit, ilevel, hev_thresh); in DoFilter()