HomeSort by relevance Sort by last modified time
    Searched refs:hev_thresh (Results 1 - 6 of 6) sorted by null

  /external/webp/src/dsp/
dec_mips32.c 91 int thresh, int ithresh, int hev_thresh) {
94 if (hev(p, hstride, hev_thresh)) {
106 int thresh, int ithresh, int hev_thresh) {
109 if (hev(p, hstride, hev_thresh)) {
121 int thresh, int ithresh, int hev_thresh) {
122 FilterLoop26(p, stride, 1, 16, thresh, ithresh, hev_thresh);
126 int thresh, int ithresh, int hev_thresh) {
127 FilterLoop26(p, 1, stride, 16, thresh, ithresh, hev_thresh);
132 int thresh, int ithresh, int hev_thresh) {
133 FilterLoop26(u, stride, 1, 8, thresh, ithresh, hev_thresh);
    [all...]
dec.c 581 int thresh, int ithresh, int hev_thresh) {
585 if (hev(p, hstride, hev_thresh)) {
597 int thresh, int ithresh, int hev_thresh) {
601 if (hev(p, hstride, hev_thresh)) {
613 int thresh, int ithresh, int hev_thresh) {
614 FilterLoop26(p, stride, 1, 16, thresh, ithresh, hev_thresh);
618 int thresh, int ithresh, int hev_thresh) {
619 FilterLoop26(p, 1, stride, 16, thresh, ithresh, hev_thresh);
624 int thresh, int ithresh, int hev_thresh) {
628 FilterLoop24(p, stride, 1, 16, thresh, ithresh, hev_thresh);
    [all...]
dec_sse2.c 327 int hev_thresh, __m128i* const not_hev) {
332 const __m128i h = _mm_set1_epi8(hev_thresh);
430 const __m128i* const mask, int hev_thresh) {
438 GetNotHEV(p1, p0, q0, q1, hev_thresh, &not_hev);
476 const __m128i* const mask, int hev_thresh) {
482 GetNotHEV(p1, p0, q0, q1, hev_thresh, &not_hev);
752 int thresh, int ithresh, int hev_thresh) {
766 DoFilter6(&p2, &p1, &p0, &q0, &q1, &q2, &mask, hev_thresh);
778 int thresh, int ithresh, int hev_thresh) {
790 DoFilter6(&p2, &p1, &p0, &q0, &q1, &q2, &mask, hev_thresh);
    [all...]
dec_neon.c 652 int hev_thresh) {
653 const uint8x16_t hev_thresh_v = vdupq_n_u8((uint8_t)hev_thresh);
    [all...]
  /external/webp/src/enc/
filter.c 99 const int hev_thresh = (level >= 40) ? 2 : (level >= 15) ? 1 : 0; local
100 VP8HFilter16i(y_dst, BPS, limit, ilevel, hev_thresh);
101 VP8HFilter8i(u_dst, v_dst, BPS, limit, ilevel, hev_thresh);
102 VP8VFilter16i(y_dst, BPS, limit, ilevel, hev_thresh);
103 VP8VFilter8i(u_dst, v_dst, BPS, limit, ilevel, hev_thresh);
  /external/webp/src/dec/
frame.c 62 const int hev_thresh = f_info->hev_thresh_; local
64 VP8HFilter16(y_dst, y_bps, limit + 4, ilevel, hev_thresh);
65 VP8HFilter8(u_dst, v_dst, uv_bps, limit + 4, ilevel, hev_thresh);
68 VP8HFilter16i(y_dst, y_bps, limit, ilevel, hev_thresh);
69 VP8HFilter8i(u_dst, v_dst, uv_bps, limit, ilevel, hev_thresh);
72 VP8VFilter16(y_dst, y_bps, limit + 4, ilevel, hev_thresh);
73 VP8VFilter8(u_dst, v_dst, uv_bps, limit + 4, ilevel, hev_thresh);
76 VP8VFilter16i(y_dst, y_bps, limit, ilevel, hev_thresh);
77 VP8VFilter8i(u_dst, v_dst, uv_bps, limit, ilevel, hev_thresh);

Completed in 84 milliseconds