summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarco <marpan@google.com>2015-04-29 09:21:19 -0700
committerMarco <marpan@google.com>2015-04-29 09:26:24 -0700
commit0810a2d8bcb31db7c735053c0d9693142eec172c (patch)
treec7c1a3e6900a233f69942c94d5f4cfb6c32b7951
parent03f12e142bf096c9e419145491e4ab55b37c8a4a (diff)
downloadlibvpx-0810a2d8bcb31db7c735053c0d9693142eec172c.tar.gz
vpx_temporal_svc_encoder: Update some settings.
Set denoiser off by default: should add this option to command line. Change-Id: Iaecc94f5b5099feaacd7a5c415fc86eb68a2eea5
-rw-r--r--examples/vpx_temporal_svc_encoder.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/vpx_temporal_svc_encoder.c b/examples/vpx_temporal_svc_encoder.c
index 89d4b2e37..fbb175a4e 100644
--- a/examples/vpx_temporal_svc_encoder.c
+++ b/examples/vpx_temporal_svc_encoder.c
@@ -674,7 +674,7 @@ int main(int argc, char **argv) {
if (strncmp(encoder->name, "vp8", 3) == 0) {
vpx_codec_control(&codec, VP8E_SET_CPUUSED, -speed);
- vpx_codec_control(&codec, VP8E_SET_NOISE_SENSITIVITY, kDenoiserOnYOnly);
+ vpx_codec_control(&codec, VP8E_SET_NOISE_SENSITIVITY, kDenoiserOff);
vpx_codec_control(&codec, VP8E_SET_STATIC_THRESHOLD, 1);
} else if (strncmp(encoder->name, "vp9", 3) == 0) {
vpx_codec_control(&codec, VP8E_SET_CPUUSED, speed);