vp9_spatial_svc_encoder.sh 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. #!/bin/sh
  2. ##
  3. ## Copyright (c) 2014 The WebM project authors. All Rights Reserved.
  4. ##
  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
  7. ## tree. An additional intellectual property rights grant can be found
  8. ## in the file PATENTS. All contributing project authors may
  9. ## be found in the AUTHORS file in the root of the source tree.
  10. ##
  11. ## This file tests the libvpx vp9_spatial_svc_encoder example. To add new
  12. ## tests to to this file, do the following:
  13. ## 1. Write a shell function (this is your test).
  14. ## 2. Add the function to vp9_spatial_svc_tests (on a new line).
  15. ##
  16. . $(dirname $0)/tools_common.sh
  17. # Environment check: $YUV_RAW_INPUT is required.
  18. vp9_spatial_svc_encoder_verify_environment() {
  19. if [ ! -e "${YUV_RAW_INPUT}" ]; then
  20. echo "Libvpx test data must exist in LIBVPX_TEST_DATA_PATH."
  21. return 1
  22. fi
  23. }
  24. # Runs vp9_spatial_svc_encoder. $1 is the test name.
  25. vp9_spatial_svc_encoder() {
  26. local readonly \
  27. encoder="${LIBVPX_BIN_PATH}/vp9_spatial_svc_encoder${VPX_TEST_EXE_SUFFIX}"
  28. local readonly test_name="$1"
  29. local readonly \
  30. output_file="${VPX_TEST_OUTPUT_DIR}/vp9_ssvc_encoder${test_name}.ivf"
  31. local readonly frames_to_encode=10
  32. local readonly max_kf=9999
  33. shift
  34. if [ ! -x "${encoder}" ]; then
  35. elog "${encoder} does not exist or is not executable."
  36. return 1
  37. fi
  38. eval "${VPX_TEST_PREFIX}" "${encoder}" -w "${YUV_RAW_INPUT_WIDTH}" \
  39. -h "${YUV_RAW_INPUT_HEIGHT}" -k "${max_kf}" -f "${frames_to_encode}" \
  40. "$@" "${YUV_RAW_INPUT}" "${output_file}" ${devnull}
  41. [ -e "${output_file}" ] || return 1
  42. }
  43. # Each test is run with layer count 1-$vp9_ssvc_test_layers.
  44. vp9_ssvc_test_layers=5
  45. vp9_spatial_svc() {
  46. if [ "$(vp9_encode_available)" = "yes" ]; then
  47. local readonly test_name="vp9_spatial_svc"
  48. for layers in $(seq 1 ${vp9_ssvc_test_layers}); do
  49. vp9_spatial_svc_encoder "${test_name}" -sl ${layers}
  50. done
  51. fi
  52. }
  53. readonly vp9_spatial_svc_tests="DISABLED_vp9_spatial_svc_mode_i
  54. DISABLED_vp9_spatial_svc_mode_altip
  55. DISABLED_vp9_spatial_svc_mode_ip
  56. DISABLED_vp9_spatial_svc_mode_gf
  57. vp9_spatial_svc"
  58. if [ "$(vpx_config_option_enabled CONFIG_SPATIAL_SVC)" = "yes" ]; then
  59. run_tests \
  60. vp9_spatial_svc_encoder_verify_environment \
  61. "${vp9_spatial_svc_tests}"
  62. fi