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

  /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/dsp/
dec.c 594 int thresh, int ithresh, int hev_thresh) {
597 if (hev(p, hstride, hev_thresh)) {
609 int thresh, int ithresh, int hev_thresh) {
612 if (hev(p, hstride, hev_thresh)) {
624 int thresh, int ithresh, int hev_thresh) {
625 FilterLoop26(p, stride, 1, 16, thresh, ithresh, hev_thresh);
629 int thresh, int ithresh, int hev_thresh) {
630 FilterLoop26(p, 1, stride, 16, thresh, ithresh, hev_thresh);
635 int thresh, int ithresh, int hev_thresh) {
639 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/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);

Completed in 106 milliseconds