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

  /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 316 milliseconds