summaryrefslogtreecommitdiff
path: root/examples/vpx_temporal_svc_encoder.c
diff options
context:
space:
mode:
authorMarco <marpan@google.com>2015-04-29 08:36:00 -0700
committerMarco <marpan@google.com>2015-04-29 08:38:14 -0700
commit03f12e142bf096c9e419145491e4ab55b37c8a4a (patch)
treeacd0fe7f00ee49f4072a67b12d5ebfcaf21c2392 /examples/vpx_temporal_svc_encoder.c
parentccc9e1da8d1ef03a471ab227e1049cd55bebd806 (diff)
downloadlibvpx-03f12e142bf096c9e419145491e4ab55b37c8a4a.tar
libvpx-03f12e142bf096c9e419145491e4ab55b37c8a4a.tar.gz
libvpx-03f12e142bf096c9e419145491e4ab55b37c8a4a.tar.bz2
libvpx-03f12e142bf096c9e419145491e4ab55b37c8a4a.zip
vpx_temporal_svc_encoder: Set static threshold to off by default.
Change-Id: I029484a5ffddcc3e518eeee609a6709b01cba146
Diffstat (limited to 'examples/vpx_temporal_svc_encoder.c')
-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 ab560932c..89d4b2e37 100644
--- a/examples/vpx_temporal_svc_encoder.c
+++ b/examples/vpx_temporal_svc_encoder.c
@@ -681,7 +681,7 @@ int main(int argc, char **argv) {
vpx_codec_control(&codec, VP9E_SET_AQ_MODE, 3);
vpx_codec_control(&codec, VP9E_SET_FRAME_PERIODIC_BOOST, 0);
vpx_codec_control(&codec, VP9E_SET_NOISE_SENSITIVITY, 0);
- vpx_codec_control(&codec, VP8E_SET_STATIC_THRESHOLD, 1);
+ vpx_codec_control(&codec, VP8E_SET_STATIC_THRESHOLD, 0);
vpx_codec_control(&codec, VP9E_SET_TILE_COLUMNS, (cfg.g_threads >> 1));
if (vpx_codec_control(&codec, VP9E_SET_SVC, layering_mode > 0 ? 1: 0)) {
die_codec(&codec, "Failed to set SVC");