Home | History | Annotate | Download | only in dsp

Lines Matching refs:thresh

516 static WEBP_INLINE int hev(const uint8_t* p, int step, int thresh) {
518 return (VP8kabs0[p1 - p0] > thresh) || (VP8kabs0[q1 - q0] > thresh);
540 static void SimpleVFilter16(uint8_t* p, int stride, int thresh) {
542 const int thresh2 = 2 * thresh + 1;
550 static void SimpleHFilter16(uint8_t* p, int stride, int thresh) {
552 const int thresh2 = 2 * thresh + 1;
560 static void SimpleVFilter16i(uint8_t* p, int stride, int thresh) {
564 SimpleVFilter16(p, stride, thresh);
568 static void SimpleHFilter16i(uint8_t* p, int stride, int thresh) {
572 SimpleHFilter16(p, stride, thresh);
581 int thresh, int ithresh, int hev_thresh) {
582 const int thresh2 = 2 * thresh + 1;
597 int thresh, int ithresh, int hev_thresh) {
598 const int thresh2 = 2 * thresh + 1;
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);
633 int thresh, int ithresh, int hev_thresh) {
637 FilterLoop24(p, 1, stride, 16, thresh, ithresh, hev_thresh);
643 int thresh, int ithresh, int hev_thresh) {
644 FilterLoop26(u, stride, 1, 8, thresh, ithresh, hev_thresh);
645 FilterLoop26(v, stride, 1, 8, thresh, ithresh, hev_thresh);
649 int thresh, int ithresh, int hev_thresh) {
650 FilterLoop26(u, 1, stride, 8, thresh, ithresh, hev_thresh);
651 FilterLoop26(v, 1, stride, 8, thresh, ithresh, hev_thresh);
655 int thresh, int ithresh, int hev_thresh) {
656 FilterLoop24(u + 4 * stride, stride, 1, 8, thresh, ithresh, hev_thresh);
657 FilterLoop24(v + 4 * stride, stride, 1, 8, thresh, ithresh, hev_thresh);
661 int thresh, int ithresh, int hev_thresh) {
662 FilterLoop24(u + 4, 1, stride, 8, thresh, ithresh, hev_thresh);
663 FilterLoop24(v + 4, 1, stride, 8, thresh, ithresh, hev_thresh);