Merge "vp9-noise estimation. Decrease frame period for estimating noise."

This commit is contained in:
Marco Paniconi 2016-05-04 22:02:53 +00:00 коммит произвёл Gerrit Code Review
Родитель 939d7d9de8 ff3866dc43
Коммит f38648742a
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -101,7 +101,7 @@ void vp9_update_noise_estimate(VP9_COMP *const cpi) {
const VP9_COMMON *const cm = &cpi->common;
NOISE_ESTIMATE *const ne = &cpi->noise_estimate;
// Estimate of noise level every frame_period frames.
int frame_period = 10;
int frame_period = 8;
int thresh_consec_zeromv = 6;
unsigned int thresh_sum_diff = 100;
unsigned int thresh_sum_spatial = (200 * 200) << 8;