decode_to_md5.sh 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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 decode_to_md5 example. To add new tests to this
  12. ## file, do the following:
  13. ## 1. Write a shell function (this is your test).
  14. ## 2. Add the function to decode_to_md5_tests (on a new line).
  15. ##
  16. . $(dirname $0)/tools_common.sh
  17. # Environment check: Make sure input is available:
  18. # $VP8_IVF_FILE and $VP9_IVF_FILE are required.
  19. decode_to_md5_verify_environment() {
  20. if [ ! -e "${VP8_IVF_FILE}" ] || [ ! -e "${VP9_IVF_FILE}" ]; then
  21. echo "Libvpx test data must exist in LIBVPX_TEST_DATA_PATH."
  22. return 1
  23. fi
  24. }
  25. # Runs decode_to_md5 on $1 and captures the md5 sum for the final frame. $2 is
  26. # interpreted as codec name and used solely to name the output file. $3 is the
  27. # expected md5 sum: It must match that of the final frame.
  28. decode_to_md5() {
  29. local decoder="${LIBVPX_BIN_PATH}/decode_to_md5${VPX_TEST_EXE_SUFFIX}"
  30. local input_file="$1"
  31. local codec="$2"
  32. local expected_md5="$3"
  33. local output_file="${VPX_TEST_OUTPUT_DIR}/decode_to_md5_${codec}"
  34. if [ ! -x "${decoder}" ]; then
  35. elog "${decoder} does not exist or is not executable."
  36. return 1
  37. fi
  38. eval "${VPX_TEST_PREFIX}" "${decoder}" "${input_file}" "${output_file}" \
  39. ${devnull}
  40. [ -e "${output_file}" ] || return 1
  41. local md5_last_frame="$(tail -n1 "${output_file}" | awk '{print $1}')"
  42. local actual_md5="$(echo "${md5_last_frame}" | awk '{print $1}')"
  43. [ "${actual_md5}" = "${expected_md5}" ] || return 1
  44. }
  45. decode_to_md5_vp8() {
  46. # expected MD5 sum for the last frame.
  47. local expected_md5="56794d911b02190212bca92f88ad60c6"
  48. if [ "$(vp8_decode_available)" = "yes" ]; then
  49. decode_to_md5 "${VP8_IVF_FILE}" "vp8" "${expected_md5}"
  50. fi
  51. }
  52. decode_to_md5_vp9() {
  53. # expected MD5 sum for the last frame.
  54. local expected_md5="2952c0eae93f3dadd1aa84c50d3fd6d2"
  55. if [ "$(vp9_decode_available)" = "yes" ]; then
  56. decode_to_md5 "${VP9_IVF_FILE}" "vp9" "${expected_md5}"
  57. fi
  58. }
  59. decode_to_md5_tests="decode_to_md5_vp8
  60. decode_to_md5_vp9"
  61. run_tests decode_to_md5_verify_environment "${decode_to_md5_tests}"