Tom Finegan | cee7b94 | 2014-04-24 14:28:45 -0700 | [diff] [blame] | 1 | #!/bin/sh |
Yaowu Xu | 2ab7ff0 | 2016-09-02 12:04:54 -0700 | [diff] [blame] | 2 | ## Copyright (c) 2016, Alliance for Open Media. All rights reserved |
Tom Finegan | cee7b94 | 2014-04-24 14:28:45 -0700 | [diff] [blame] | 3 | ## |
Yaowu Xu | 2ab7ff0 | 2016-09-02 12:04:54 -0700 | [diff] [blame] | 4 | ## This source code is subject to the terms of the BSD 2 Clause License and |
| 5 | ## the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License |
| 6 | ## was not distributed with this source code in the LICENSE file, you can |
| 7 | ## obtain it at www.aomedia.org/license/software. If the Alliance for Open |
| 8 | ## Media Patent License 1.0 was not distributed with this source code in the |
| 9 | ## PATENTS file, you can obtain it at www.aomedia.org/license/patent. |
Tom Finegan | cee7b94 | 2014-04-24 14:28:45 -0700 | [diff] [blame] | 10 | ## |
Yaowu Xu | 2ab7ff0 | 2016-09-02 12:04:54 -0700 | [diff] [blame] | 11 | ## This file tests the libaom 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). |
Tom Finegan | cee7b94 | 2014-04-24 14:28:45 -0700 | [diff] [blame] | 15 | ## |
| 16 | . $(dirname $0)/tools_common.sh |
| 17 | |
| 18 | # Environment check: Make sure input is available: |
Tom Finegan | 8ab4414 | 2018-04-27 14:57:52 -0700 | [diff] [blame] | 19 | # $AV1_IVF_FILE is required. |
Tom Finegan | cee7b94 | 2014-04-24 14:28:45 -0700 | [diff] [blame] | 20 | decode_to_md5_verify_environment() { |
Jim Bankoski | 0d730f9 | 2016-06-13 07:16:38 -0700 | [diff] [blame] | 21 | if [ "$(av1_encode_available)" != "yes" ] && [ ! -e "${AV1_IVF_FILE}" ]; then |
Tom Finegan | cee7b94 | 2014-04-24 14:28:45 -0700 | [diff] [blame] | 22 | return 1 |
| 23 | fi |
| 24 | } |
| 25 | |
Tom Finegan | 1d29ce5 | 2014-04-30 11:03:15 -0700 | [diff] [blame] | 26 | # Runs decode_to_md5 on $1 and captures the md5 sum for the final frame. $2 is |
| 27 | # interpreted as codec name and used solely to name the output file. $3 is the |
| 28 | # expected md5 sum: It must match that of the final frame. |
Tom Finegan | cee7b94 | 2014-04-24 14:28:45 -0700 | [diff] [blame] | 29 | decode_to_md5() { |
Tom Finegan | 8ab4414 | 2018-04-27 14:57:52 -0700 | [diff] [blame] | 30 | local decoder="$(aom_tool_path decode_to_md5)" |
Tom Finegan | cee7b94 | 2014-04-24 14:28:45 -0700 | [diff] [blame] | 31 | local input_file="$1" |
| 32 | local codec="$2" |
Tom Finegan | 1d29ce5 | 2014-04-30 11:03:15 -0700 | [diff] [blame] | 33 | local expected_md5="$3" |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 34 | local output_file="${AOM_TEST_OUTPUT_DIR}/decode_to_md5_${codec}" |
Tom Finegan | cee7b94 | 2014-04-24 14:28:45 -0700 | [diff] [blame] | 35 | |
Tom Finegan | 12672c2 | 2014-06-16 10:57:00 -0700 | [diff] [blame] | 36 | if [ ! -x "${decoder}" ]; then |
| 37 | elog "${decoder} does not exist or is not executable." |
| 38 | return 1 |
| 39 | fi |
Tom Finegan | cee7b94 | 2014-04-24 14:28:45 -0700 | [diff] [blame] | 40 | |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 41 | eval "${AOM_TEST_PREFIX}" "${decoder}" "${input_file}" "${output_file}" \ |
James Zern | bb98789 | 2020-04-28 18:33:02 -0700 | [diff] [blame] | 42 | ${devnull} || return 1 |
Tom Finegan | cee7b94 | 2014-04-24 14:28:45 -0700 | [diff] [blame] | 43 | |
| 44 | [ -e "${output_file}" ] || return 1 |
| 45 | |
James Zern | c034821 | 2014-07-30 10:50:01 -0700 | [diff] [blame] | 46 | local md5_last_frame="$(tail -n1 "${output_file}" | awk '{print $1}')" |
| 47 | local actual_md5="$(echo "${md5_last_frame}" | awk '{print $1}')" |
Urvang Joshi | 4f91a13 | 2018-02-06 13:00:03 -0800 | [diff] [blame] | 48 | if [ "${actual_md5}" = "${expected_md5}" ]; then |
| 49 | return 0 |
| 50 | else |
| 51 | elog "MD5 mismatch:" |
| 52 | elog "Expected: ${expected_md5}" |
| 53 | elog "Actual: ${actual_md5}" |
| 54 | return 1 |
| 55 | fi |
Tom Finegan | cee7b94 | 2014-04-24 14:28:45 -0700 | [diff] [blame] | 56 | } |
| 57 | |
Tom Finegan | 8ab4414 | 2018-04-27 14:57:52 -0700 | [diff] [blame] | 58 | DISABLED_decode_to_md5_av1() { |
Tom Finegan | cee7b94 | 2014-04-24 14:28:45 -0700 | [diff] [blame] | 59 | # expected MD5 sum for the last frame. |
Sebastien Alaiwan | cb29f64 | 2018-03-05 12:50:21 +0100 | [diff] [blame] | 60 | local expected_md5="567dd6d4b7a7170edddbf58bbcc3aff1" |
Jim Bankoski | 0d730f9 | 2016-06-13 07:16:38 -0700 | [diff] [blame] | 61 | local file="${AV1_IVF_FILE}" |
Tom Finegan | cee7b94 | 2014-04-24 14:28:45 -0700 | [diff] [blame] | 62 | |
Urvang Joshi | 774c8da | 2018-02-16 17:02:52 -0800 | [diff] [blame] | 63 | # TODO(urvang): Check in the encoded file (like libvpx does) to avoid |
| 64 | # encoding every time. |
Yaowu Xu | f883b42 | 2016-08-30 14:01:10 -0700 | [diff] [blame] | 65 | if [ "$(av1_decode_available)" = "yes" ]; then |
Jim Bankoski | 0d730f9 | 2016-06-13 07:16:38 -0700 | [diff] [blame] | 66 | if [ ! -e "${AV1_IVF_FILE}" ]; then |
| 67 | file="${AOM_TEST_OUTPUT_DIR}/test_encode.ivf" |
James Zern | bb98789 | 2020-04-28 18:33:02 -0700 | [diff] [blame] | 68 | encode_yuv_raw_input_av1 "${file}" --ivf || return 1 |
Jim Bankoski | 0d730f9 | 2016-06-13 07:16:38 -0700 | [diff] [blame] | 69 | fi |
| 70 | decode_to_md5 "${file}" "av1" "${expected_md5}" |
Tom Finegan | cee7b94 | 2014-04-24 14:28:45 -0700 | [diff] [blame] | 71 | fi |
| 72 | } |
| 73 | |
Tom Finegan | 8ab4414 | 2018-04-27 14:57:52 -0700 | [diff] [blame] | 74 | # TODO(tomfinegan): Enable when the bitstream stabilizes. |
| 75 | decode_to_md5_tests="DISABLED_decode_to_md5_av1" |
Tom Finegan | cee7b94 | 2014-04-24 14:28:45 -0700 | [diff] [blame] | 76 | |
| 77 | run_tests decode_to_md5_verify_environment "${decode_to_md5_tests}" |