shithub: libvpx

Download patch

ref: c7072ae2f4f3478a2f62811979540a94b32ec431
parent: fd918cf9a33494787c198ed32a3a484bf05a15d7
author: Marco <marpan@google.com>
date: Thu Oct 6 08:11:37 EDT 2016

Fix build failure in libvpx_example_test-multi-target.

Due to change in command line to sample encoder from:
7eff8f3 Update to vpx_temporal_svc_encoder command line.

This caused the tests in vpx_temporal_svc_encoder.sh to fail.

Change-Id: Ic667da81955ad117d04610af21877fed1d4f188f

--- a/test/vpx_temporal_svc_encoder.sh
+++ b/test/vpx_temporal_svc_encoder.sh
@@ -40,6 +40,7 @@
   local timebase_den="1000"
   local speed="6"
   local frame_drop_thresh="30"
+  local threads="1"
 
   shift 2
 
@@ -51,7 +52,7 @@
   eval "${VPX_TEST_PREFIX}" "${encoder}" "${YUV_RAW_INPUT}" "${output_file}" \
       "${codec}" "${YUV_RAW_INPUT_WIDTH}" "${YUV_RAW_INPUT_HEIGHT}" \
       "${timebase_num}" "${timebase_den}" "${speed}" "${frame_drop_thresh}" \
-      "$@" \
+      "${threads}" "$@" \
       ${devnull}
 }