| OLD | NEW |
| 1 #!/bin/sh | 1 #!/bin/sh |
| 2 ## | 2 ## |
| 3 ## Copyright (c) 2014 The WebM project authors. All Rights Reserved. | 3 ## Copyright (c) 2014 The WebM project authors. All Rights Reserved. |
| 4 ## | 4 ## |
| 5 ## Use of this source code is governed by a BSD-style license | 5 ## Use of this source code is governed by a BSD-style license |
| 6 ## that can be found in the LICENSE file in the root of the source | 6 ## that can be found in the LICENSE file in the root of the source |
| 7 ## tree. An additional intellectual property rights grant can be found | 7 ## tree. An additional intellectual property rights grant can be found |
| 8 ## in the file PATENTS. All contributing project authors may | 8 ## in the file PATENTS. All contributing project authors may |
| 9 ## be found in the AUTHORS file in the root of the source tree. | 9 ## be found in the AUTHORS file in the root of the source tree. |
| 10 ## | 10 ## |
| 11 ## This file tests vpxdec. To add new tests to this file, do the following: | 11 ## This file tests vpxdec. To add new tests to this file, do the following: |
| 12 ## 1. Write a shell function (this is your test). | 12 ## 1. Write a shell function (this is your test). |
| 13 ## 2. Add the function to vpxdec_tests (on a new line). | 13 ## 2. Add the function to vpxdec_tests (on a new line). |
| 14 ## | 14 ## |
| 15 . $(dirname $0)/tools_common.sh | 15 . $(dirname $0)/tools_common.sh |
| 16 | 16 |
| 17 # Environment check: Make sure input is available. | 17 # Environment check: Make sure input is available. |
| 18 vpxdec_verify_environment() { | 18 vpxdec_verify_environment() { |
| 19 if [ ! -e "${VP8_IVF_FILE}" ] || [ ! -e "${VP9_WEBM_FILE}" ]; then | 19 if [ ! -e "${VP8_IVF_FILE}" ] || [ ! -e "${VP9_WEBM_FILE}" ] || \ |
| 20 [ ! -e "${VP9_FPM_WEBM_FILE}" ] ; then |
| 20 elog "Libvpx test data must exist in LIBVPX_TEST_DATA_PATH." | 21 elog "Libvpx test data must exist in LIBVPX_TEST_DATA_PATH." |
| 21 return 1 | 22 return 1 |
| 22 fi | 23 fi |
| 23 if [ -z "$(vpx_tool_path vpxdec)" ]; then | 24 if [ -z "$(vpx_tool_path vpxdec)" ]; then |
| 24 elog "vpxdec not found. It must exist in LIBVPX_BIN_PATH or its parent." | 25 elog "vpxdec not found. It must exist in LIBVPX_BIN_PATH or its parent." |
| 25 return 1 | 26 return 1 |
| 26 fi | 27 fi |
| 27 } | 28 } |
| 28 | 29 |
| 29 # Wrapper function for running vpxdec with pipe input. Requires that | 30 # Wrapper function for running vpxdec with pipe input. Requires that |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 fi | 72 fi |
| 72 } | 73 } |
| 73 | 74 |
| 74 vpxdec_vp9_webm() { | 75 vpxdec_vp9_webm() { |
| 75 if [ "$(vpxdec_can_decode_vp9)" = "yes" ] && \ | 76 if [ "$(vpxdec_can_decode_vp9)" = "yes" ] && \ |
| 76 [ "$(webm_io_available)" = "yes" ]; then | 77 [ "$(webm_io_available)" = "yes" ]; then |
| 77 vpxdec "${VP9_WEBM_FILE}" --summary --noblit | 78 vpxdec "${VP9_WEBM_FILE}" --summary --noblit |
| 78 fi | 79 fi |
| 79 } | 80 } |
| 80 | 81 |
| 82 vpxdec_vp9_webm_frame_parallel() { |
| 83 if [ "$(vpxdec_can_decode_vp9)" = "yes" ] && \ |
| 84 [ "$(webm_io_available)" = "yes" ]; then |
| 85 for threads in 2 3 4 5 6 7 8; do |
| 86 vpxdec "${VP9_FPM_WEBM_FILE}" --summary --noblit --threads=$threads \ |
| 87 --frame-parallel |
| 88 done |
| 89 fi |
| 90 |
| 91 } |
| 92 |
| 81 vpxdec_tests="vpxdec_vp8_ivf | 93 vpxdec_tests="vpxdec_vp8_ivf |
| 82 vpxdec_vp8_ivf_pipe_input | 94 vpxdec_vp8_ivf_pipe_input |
| 83 vpxdec_vp9_webm" | 95 vpxdec_vp9_webm |
| 96 vpxdec_vp9_webm_frame_parallel" |
| 84 | 97 |
| 85 run_tests vpxdec_verify_environment "${vpxdec_tests}" | 98 run_tests vpxdec_verify_environment "${vpxdec_tests}" |
| OLD | NEW |