summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorMarco <marpan@google.com>2016-08-10 16:20:46 -0700
committerMarco <marpan@google.com>2016-08-10 16:22:08 -0700
commitf1e12c1bf3b24e67c8c1542c87c0cd84f85b88fc (patch)
tree8f2f66cbbde57d21e930a2addcebbe3637158693 /examples
parent343b6b09a121f5106281ac3fe9052b2f2c670491 (diff)
downloadlibvpx-f1e12c1bf3b24e67c8c1542c87c0cd84f85b88fc.tar.gz
libvpx-f1e12c1bf3b24e67c8c1542c87c0cd84f85b88fc.tar.bz2
libvpx-f1e12c1bf3b24e67c8c1542c87c0cd84f85b88fc.zip
vp8: Fix denoiser setting in multi-res sample encoder.
Change-Id: I9222f3b252e5ed883659f1a14cd705944ee9da07
Diffstat (limited to 'examples')
-rw-r--r--examples/vp8_multi_resolution_encoder.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/vp8_multi_resolution_encoder.c b/examples/vp8_multi_resolution_encoder.c
index 0e70ca1c2..a89ec89e3 100644
--- a/examples/vp8_multi_resolution_encoder.c
+++ b/examples/vp8_multi_resolution_encoder.c
@@ -508,7 +508,7 @@ int main(int argc, char **argv) {
/* Set NOISE_SENSITIVITY to do TEMPORAL_DENOISING */
/* Enable denoising for the highest-resolution encoder. */
- if (vpx_codec_control(&codec[0], VP8E_SET_NOISE_SENSITIVITY, 1))
+ if (vpx_codec_control(&codec[0], VP8E_SET_NOISE_SENSITIVITY, 4))
die_codec(&codec[0], "Failed to set noise_sensitivity");
for (i = 1; i < NUM_ENCODERS; i++) {
if (vpx_codec_control(&codec[i], VP8E_SET_NOISE_SENSITIVITY, 0))