Lines Matching full:ilevel
209 const int ilevel = f_info->f_ilevel_;
234 VP8HFilter16(y_dst, y_bps, limit + 4, ilevel, hev_thresh);
235 VP8HFilter8(u_dst, v_dst, uv_bps, limit + 4, ilevel, hev_thresh);
238 VP8HFilter16i(y_dst, y_bps, limit, ilevel, hev_thresh);
239 VP8HFilter8i(u_dst, v_dst, uv_bps, limit, ilevel, hev_thresh);
242 VP8VFilter16(y_dst, y_bps, limit + 4, ilevel, hev_thresh);
243 VP8VFilter8(u_dst, v_dst, uv_bps, limit + 4, ilevel, hev_thresh);
246 VP8VFilter16i(y_dst, y_bps, limit, ilevel, hev_thresh);
247 VP8VFilter8i(u_dst, v_dst, uv_bps, limit, ilevel, hev_thresh);
292 int ilevel = level;
295 ilevel >>= 2;
297 ilevel >>= 1;
299 if (ilevel > 9 - hdr->sharpness_) {
300 ilevel = 9 - hdr->sharpness_;
303 if (ilevel < 1) ilevel = 1;
304 info->f_ilevel_ = ilevel;
305 info->f_limit_ = 2 * level + ilevel;