Set the threads/tile_columns in vpx_temporal_svc_encoder.
authorMarco <marpan@google.com>
Fri, 6 Mar 2015 17:51:21 +0000 (09:51 -0800)
committerMarco <marpan@google.com>
Fri, 6 Mar 2015 17:53:55 +0000 (09:53 -0800)
Change-Id: I794e8b64f26ebe68d7f18c3a11cb7c80e1cd3110

examples/vpx_temporal_svc_encoder.c

index 7a582d2..dea29c0 100644 (file)
@@ -610,6 +610,9 @@ int main(int argc, char **argv) {
   cfg.rc_buf_optimal_sz = 600;
   cfg.rc_buf_sz = 1000;
 
+  // Use 1 thread as default.
+  cfg.g_threads = 1;
+
   // Enable error resilient mode.
   cfg.g_error_resilient = 1;
   cfg.g_lag_in_frames   = 0;
@@ -675,6 +678,7 @@ int main(int argc, char **argv) {
       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, 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");
     }