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

  /external/webp/src/enc/
filter.c 136 int thresh, int ithresh, int hev_thresh) {
139 if (hev(p, hstride, hev_thresh)) {
151 int thresh, int ithresh, int hev_thresh) {
155 FilterLoop24(p, stride, 1, 16, thresh, ithresh, hev_thresh);
160 int thresh, int ithresh, int hev_thresh) {
164 FilterLoop24(p, 1, stride, 16, thresh, ithresh, hev_thresh);
169 int thresh, int ithresh, int hev_thresh) {
170 FilterLoop24(u + 4 * stride, stride, 1, 8, thresh, ithresh, hev_thresh);
171 FilterLoop24(v + 4 * stride, stride, 1, 8, thresh, ithresh, hev_thresh);
175 int thresh, int ithresh, int hev_thresh) {
224 const int hev_thresh = (level >= 40) ? 2 : (level >= 15) ? 1 : 0; local
    [all...]
  /external/webp/src/dec/
dsp.c 591 int thresh, int ithresh, int hev_thresh) {
594 if (hev(p, hstride, hev_thresh)) {
605 int thresh, int ithresh, int hev_thresh) {
608 if (hev(p, hstride, hev_thresh)) {
620 int thresh, int ithresh, int hev_thresh) {
621 FilterLoop26(p, stride, 1, 16, thresh, ithresh, hev_thresh);
625 int thresh, int ithresh, int hev_thresh) {
626 FilterLoop26(p, 1, stride, 16, thresh, ithresh, hev_thresh);
631 int thresh, int ithresh, int hev_thresh) {
635 FilterLoop24(p, stride, 1, 16, thresh, ithresh, hev_thresh);
    [all...]
dsp_sse2.c 277 #define GET_NOTHEV(p1, p0, q0, q1, hev_thresh, not_hev) { \
282 const __m128i h = _mm_set1_epi8(hev_thresh); \
366 const __m128i* mask, int hev_thresh) {
372 GET_NOTHEV(*p1, *p0, *q0, *q1, hev_thresh, not_hev);
413 const __m128i* mask, int hev_thresh) {
418 GET_NOTHEV(*p1, *p0, *q0, *q1, hev_thresh, not_hev);
683 int thresh, int ithresh, int hev_thresh) {
697 DoFilter6(&p2, &p1, &p0, &q0, &q1, &q2, &mask, hev_thresh);
709 int thresh, int ithresh, int hev_thresh) {
721 DoFilter6(&p2, &p1, &p0, &q0, &q1, &q2, &mask, hev_thresh);
    [all...]
frame.c 158 const int hev_thresh = local
161 VP8HFilter16(y_dst, y_bps, limit + 4, ilevel, hev_thresh);
162 VP8HFilter8(u_dst, v_dst, uv_bps, limit + 4, ilevel, hev_thresh);
165 VP8HFilter16i(y_dst, y_bps, limit, ilevel, hev_thresh);
166 VP8HFilter8i(u_dst, v_dst, uv_bps, limit, ilevel, hev_thresh);
169 VP8VFilter16(y_dst, y_bps, limit + 4, ilevel, hev_thresh);
170 VP8VFilter8(u_dst, v_dst, uv_bps, limit + 4, ilevel, hev_thresh);
173 VP8VFilter16i(y_dst, y_bps, limit, ilevel, hev_thresh);
174 VP8VFilter8i(u_dst, v_dst, uv_bps, limit, ilevel, hev_thresh);

Completed in 117 milliseconds