summaryrefslogtreecommitdiff
path: root/vp9/encoder/vp9_noise_estimate.c
diff options
context:
space:
mode:
authorMarco Paniconi <marpan@google.com>2016-05-04 22:02:53 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2016-05-04 22:02:53 +0000
commitf38648742af0c82a8594255c4de4d3e9050276db (patch)
tree22e1a3bdfa2277e2b7608c3dc8e2884023b5423d /vp9/encoder/vp9_noise_estimate.c
parent939d7d9de8ff4d9e7ec7abdb035d84dd912b48de (diff)
parentff3866dc43ee334eb098618b257b166eb5aaca0e (diff)
downloadlibvpx-f38648742af0c82a8594255c4de4d3e9050276db.tar
libvpx-f38648742af0c82a8594255c4de4d3e9050276db.tar.gz
libvpx-f38648742af0c82a8594255c4de4d3e9050276db.tar.bz2
libvpx-f38648742af0c82a8594255c4de4d3e9050276db.zip
Merge "vp9-noise estimation. Decrease frame period for estimating noise."
Diffstat (limited to 'vp9/encoder/vp9_noise_estimate.c')
-rw-r--r--vp9/encoder/vp9_noise_estimate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vp9/encoder/vp9_noise_estimate.c b/vp9/encoder/vp9_noise_estimate.c
index c3351afe0..5945f0e57 100644
--- a/vp9/encoder/vp9_noise_estimate.c
+++ b/vp9/encoder/vp9_noise_estimate.c
@@ -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;