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 the libvpx vp9_spatial_svc_encoder example. To add new | 11 ## This file tests the libvpx vp9_spatial_svc_encoder example. To add new |
12 ## tests to to this file, do the following: | 12 ## tests to to this file, do the following: |
13 ## 1. Write a shell function (this is your test). | 13 ## 1. Write a shell function (this is your test). |
14 ## 2. Add the function to vp9_spatial_svc_tests (on a new line). | 14 ## 2. Add the function to vp9_spatial_svc_tests (on a new line). |
15 ## | 15 ## |
16 . $(dirname $0)/tools_common.sh | 16 . $(dirname $0)/tools_common.sh |
17 | 17 |
18 # Environment check: $YUV_RAW_INPUT is required. | 18 # Environment check: $YUV_RAW_INPUT is required. |
19 vp9_spatial_svc_encoder_verify_environment() { | 19 vp9_spatial_svc_encoder_verify_environment() { |
20 if [ ! -e "${YUV_RAW_INPUT}" ]; then | 20 if [ ! -e "${YUV_RAW_INPUT}" ]; then |
21 echo "Libvpx test data must exist in LIBVPX_TEST_DATA_PATH." | 21 echo "Libvpx test data must exist in LIBVPX_TEST_DATA_PATH." |
22 return 1 | 22 return 1 |
23 fi | 23 fi |
24 } | 24 } |
25 | 25 |
26 # Runs vp9_spatial_svc_encoder. $1 is the test name. | 26 # Runs vp9_spatial_svc_encoder. $1 is the test name. |
27 vp9_spatial_svc_encoder() { | 27 vp9_spatial_svc_encoder() { |
28 local encoder="${LIBVPX_BIN_PATH}/vp9_spatial_svc_encoder" | 28 local readonly \ |
29 encoder="${encoder}${VPX_TEST_EXE_SUFFIX}" | 29 encoder="${LIBVPX_BIN_PATH}/vp9_spatial_svc_encoder${VPX_TEST_EXE_SUFFIX}" |
30 local test_name="$1" | 30 local readonly test_name="$1" |
31 local output_file="${VPX_TEST_OUTPUT_DIR}/vp9_ssvc_encoder${test_name}.ivf" | 31 local readonly \ |
32 local frames_to_encode="10" | 32 output_file="${VPX_TEST_OUTPUT_DIR}/vp9_ssvc_encoder${test_name}.ivf" |
33 local max_kf="9999" | 33 local readonly frames_to_encode=10 |
| 34 local readonly max_kf=9999 |
34 | 35 |
35 shift | 36 shift |
36 | 37 |
37 if [ ! -x "${encoder}" ]; then | 38 if [ ! -x "${encoder}" ]; then |
38 elog "${encoder} does not exist or is not executable." | 39 elog "${encoder} does not exist or is not executable." |
39 return 1 | 40 return 1 |
40 fi | 41 fi |
41 | 42 |
42 eval "${VPX_TEST_PREFIX}" "${encoder}" -w "${YUV_RAW_INPUT_WIDTH}" \ | 43 eval "${VPX_TEST_PREFIX}" "${encoder}" -w "${YUV_RAW_INPUT_WIDTH}" \ |
43 -h "${YUV_RAW_INPUT_HEIGHT}" -k "${max_kf}" -f "${frames_to_encode}" \ | 44 -h "${YUV_RAW_INPUT_HEIGHT}" -k "${max_kf}" -f "${frames_to_encode}" \ |
44 "$@" "${YUV_RAW_INPUT}" "${output_file}" ${devnull} | 45 "$@" "${YUV_RAW_INPUT}" "${output_file}" ${devnull} |
45 | 46 |
46 [ -e "${output_file}" ] || return 1 | 47 [ -e "${output_file}" ] || return 1 |
47 } | 48 } |
48 | 49 |
49 # Each mode is run with layer count 1-$vp9_ssvc_test_layers. | 50 # Each test is run with layer count 1-$vp9_ssvc_test_layers. |
50 vp9_ssvc_test_layers=5 | 51 vp9_ssvc_test_layers=5 |
51 | 52 |
52 vp9_spatial_svc_mode_i() { | 53 vp9_spatial_svc() { |
53 if [ "$(vp9_encode_available)" = "yes" ]; then | 54 if [ "$(vp9_encode_available)" = "yes" ]; then |
54 local test_name="${FUNCNAME}" | 55 local readonly test_name="vp9_spatial_svc" |
55 for layers in $(seq 1 ${vp9_ssvc_test_layers}); do | 56 for layers in $(seq 1 ${vp9_ssvc_test_layers}); do |
56 vp9_spatial_svc_encoder "${test_name}" -m i -l ${layers} | 57 vp9_spatial_svc_encoder "${test_name}" -l ${layers} |
57 done | 58 done |
58 fi | 59 fi |
59 } | 60 } |
60 | 61 |
61 vp9_spatial_svc_mode_altip() { | 62 readonly vp9_spatial_svc_tests="DISABLED_vp9_spatial_svc_mode_i |
62 if [ "$(vp9_encode_available)" = "yes" ]; then | 63 DISABLED_vp9_spatial_svc_mode_altip |
63 local test_name="${FUNCNAME}" | 64 DISABLED_vp9_spatial_svc_mode_ip |
64 for layers in $(seq 1 ${vp9_ssvc_test_layers}); do | 65 DISABLED_vp9_spatial_svc_mode_gf |
65 vp9_spatial_svc_encoder "${test_name}" -m "alt-ip" -l ${layers} | 66 vp9_spatial_svc" |
66 done | |
67 fi | |
68 } | |
69 | 67 |
70 vp9_spatial_svc_mode_ip() { | 68 if [ "$(vpx_config_option_enabled CONFIG_SPATIAL_SVC)" = "yes" ]; then |
71 if [ "$(vp9_encode_available)" = "yes" ]; then | 69 run_tests \ |
72 local test_name="${FUNCNAME}" | 70 vp9_spatial_svc_encoder_verify_environment \ |
73 vp9_spatial_svc_encoder "${test_name}" -m ip -l 1 | 71 "${vp9_spatial_svc_tests}" |
74 fi | 72 fi |
75 } | |
76 | |
77 vp9_spatial_svc_mode_gf() { | |
78 if [ "$(vp9_encode_available)" = "yes" ]; then | |
79 local test_name="${FUNCNAME}" | |
80 for layers in $(seq 1 ${vp9_ssvc_test_layers}); do | |
81 vp9_spatial_svc_encoder "${test_name}" -m gf -l ${layers} | |
82 done | |
83 fi | |
84 } | |
85 | |
86 vp9_spatial_svc_tests="vp9_spatial_svc_mode_i | |
87 vp9_spatial_svc_mode_altip | |
88 vp9_spatial_svc_mode_ip | |
89 vp9_spatial_svc_mode_gf" | |
90 | |
91 run_tests vp9_spatial_svc_encoder_verify_environment "${vp9_spatial_svc_tests}" | |
OLD | NEW |