]> granicus.if.org Git - libvpx/commitdiff
vpx_temporal_svc_encoder: Update some settings.
authorMarco <marpan@google.com>
Wed, 29 Apr 2015 16:21:19 +0000 (09:21 -0700)
committerMarco <marpan@google.com>
Wed, 29 Apr 2015 16:26:24 +0000 (09:26 -0700)
Set denoiser off by default: should add this option to command line.

Change-Id: Iaecc94f5b5099feaacd7a5c415fc86eb68a2eea5

examples/vpx_temporal_svc_encoder.c

index 89d4b2e373ecb78c6fcd656c8607a42e0377cf4d..fbb175a4e0b169a58e65764d762edf1dfc6dcbbc 100644 (file)
@@ -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);