Merge "make low bitrates a lot less blocky"

This commit is contained in:
Jim Bankoski 2015-02-03 13:25:06 -08:00 committed by Gerrit Code Review
commit d7783cae95
2 changed files with 1 additions and 2 deletions

View File

@ -632,7 +632,7 @@ static void swap_mi_and_prev_mi(VP9_COMMON *cm) {
int vp9_post_proc_frame(struct VP9Common *cm,
YV12_BUFFER_CONFIG *dest, vp9_ppflags_t *ppflags) {
const int q = MIN(63, cm->lf.filter_level * 10 / 6);
const int q = MIN(105, cm->lf.filter_level * 2);
const int flags = ppflags->post_proc_flag;
YV12_BUFFER_CONFIG *const ppbuf = &cm->post_proc_buffer;
struct postproc_state *const ppstate = &cm->postproc_state;

View File

@ -337,7 +337,6 @@ static void set_rt_speed_feature(VP9_COMP *cpi, SPEED_FEATURES *sf,
sf->adaptive_rd_thresh = 3;
sf->mv.search_method = FAST_DIAMOND;
sf->mv.fullpel_search_step_param = 10;
sf->lpf_pick = LPF_PICK_MINIMAL_LPF;
}
if (speed >= 8) {
sf->adaptive_rd_thresh = 4;