av1_convolve_ x,y _avx2() -- use 256 bit load/store
[aom.git] / test / decode_to_md5.sh
blob44c9f5f05282ff67a3b7fb6a034259f82930cdd6
1 #!/bin/sh
2 ## Copyright (c) 2016, Alliance for Open Media. All rights reserved
3 ##
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.
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).
16 . $(dirname $0)/tools_common.sh
18 # Environment check: Make sure input is available:
19 # $AOM_IVF_FILE and $AV1_IVF_FILE are required.
20 decode_to_md5_verify_environment() {
21 if [ "$(av1_encode_available)" != "yes" ] && [ ! -e "${AV1_IVF_FILE}" ]; then
22 return 1
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.
29 decode_to_md5() {
30 local decoder="${LIBAOM_BIN_PATH}/decode_to_md5${AOM_TEST_EXE_SUFFIX}"
31 local input_file="$1"
32 local codec="$2"
33 local expected_md5="$3"
34 local output_file="${AOM_TEST_OUTPUT_DIR}/decode_to_md5_${codec}"
36 if [ ! -x "${decoder}" ]; then
37 elog "${decoder} does not exist or is not executable."
38 return 1
41 eval "${AOM_TEST_PREFIX}" "${decoder}" "${input_file}" "${output_file}" \
42 ${devnull}
44 [ -e "${output_file}" ] || return 1
46 local md5_last_frame="$(tail -n1 "${output_file}" | awk '{print $1}')"
47 local actual_md5="$(echo "${md5_last_frame}" | awk '{print $1}')"
48 [ "${actual_md5}" = "${expected_md5}" ] || return 1
51 decode_to_md5_av1() {
52 # expected MD5 sum for the last frame.
53 local expected_md5="26d3ef1d60754a1f6acb603c3763efbe"
54 local file="${AV1_IVF_FILE}"
56 if [ "$(av1_decode_available)" = "yes" ]; then
57 if [ ! -e "${AV1_IVF_FILE}" ]; then
58 file="${AOM_TEST_OUTPUT_DIR}/test_encode.ivf"
59 encode_yuv_raw_input_av1 "${file}" --ivf
61 decode_to_md5 "${file}" "av1" "${expected_md5}"
65 decode_to_md5_tests="decode_to_md5_av1"
67 run_tests decode_to_md5_verify_environment "${decode_to_md5_tests}"