Home | History | Annotate | Download | only in enc

Lines Matching refs:hev_thresh

139                                      int thresh, int ithresh, int hev_thresh) {
142 if (hev(p, hstride, hev_thresh)) {
154 int thresh, int ithresh, int hev_thresh) {
158 FilterLoop24(p, stride, 1, 16, thresh, ithresh, hev_thresh);
163 int thresh, int ithresh, int hev_thresh) {
167 FilterLoop24(p, 1, stride, 16, thresh, ithresh, hev_thresh);
172 int thresh, int ithresh, int hev_thresh) {
173 FilterLoop24(u + 4 * stride, stride, 1, 8, thresh, ithresh, hev_thresh);
174 FilterLoop24(v + 4 * stride, stride, 1, 8, thresh, ithresh, hev_thresh);
178 int thresh, int ithresh, int hev_thresh) {
179 FilterLoop24(u + 4, 1, stride, 8, thresh, ithresh, hev_thresh);
180 FilterLoop24(v + 4, 1, stride, 8, thresh, ithresh, hev_thresh);
227 const int hev_thresh = (level >= 40) ? 2 : (level >= 15) ? 1 : 0;
228 VP8EncHFilter16i(y_dst, BPS, limit, ilevel, hev_thresh);
229 VP8EncHFilter8i(u_dst, v_dst, BPS, limit, ilevel, hev_thresh);
230 VP8EncVFilter16i(y_dst, BPS, limit, ilevel, hev_thresh);
231 VP8EncVFilter8i(u_dst, v_dst, BPS, limit, ilevel, hev_thresh);