blob: dfb1a1b5469e85a7605b7ce428fb37e110675414 [file] [log] [blame]
Tom Fineganfe477682014-04-24 16:18:55 -07001#!/bin/sh
Yaowu Xu2ab7ff02016-09-02 12:04:54 -07002## Copyright (c) 2016, Alliance for Open Media. All rights reserved
Tom Fineganfe477682014-04-24 16:18:55 -07003##
Yaowu Xu2ab7ff02016-09-02 12:04:54 -07004## 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 Fineganfe477682014-04-24 16:18:55 -070010##
Yaowu Xu2ab7ff02016-09-02 12:04:54 -070011## This file tests the libaom simple_encoder 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 simple_encoder_tests (on a new line).
Tom Fineganfe477682014-04-24 16:18:55 -070015##
16. $(dirname $0)/tools_common.sh
17
18# Environment check: $YUV_RAW_INPUT is required.
19simple_encoder_verify_environment() {
20 if [ ! -e "${YUV_RAW_INPUT}" ]; then
Yaowu Xu97aa09f2016-10-12 08:25:39 -070021 echo "Libaom test data must exist in LIBAOM_TEST_DATA_PATH."
Tom Fineganfe477682014-04-24 16:18:55 -070022 return 1
23 fi
24}
25
Tom Finegan7d6edc32016-05-09 15:00:44 -070026# Runs simple_encoder using the codec specified by $1 with a frame limit of 100.
Tom Fineganfe477682014-04-24 16:18:55 -070027simple_encoder() {
Yaowu Xuf883b422016-08-30 14:01:10 -070028 local encoder="${LIBAOM_BIN_PATH}/simple_encoder${AOM_TEST_EXE_SUFFIX}"
Tom Fineganfe477682014-04-24 16:18:55 -070029 local codec="$1"
Yaowu Xuf883b422016-08-30 14:01:10 -070030 local output_file="${AOM_TEST_OUTPUT_DIR}/simple_encoder_${codec}.ivf"
Tom Fineganfe477682014-04-24 16:18:55 -070031
Tom Finegan12672c22014-06-16 10:57:00 -070032 if [ ! -x "${encoder}" ]; then
33 elog "${encoder} does not exist or is not executable."
34 return 1
35 fi
Tom Fineganfe477682014-04-24 16:18:55 -070036
Yaowu Xuf883b422016-08-30 14:01:10 -070037 eval "${AOM_TEST_PREFIX}" "${encoder}" "${codec}" "${YUV_RAW_INPUT_WIDTH}" \
Jim Bankoski5d105b42016-05-23 13:59:35 -070038 "${YUV_RAW_INPUT_HEIGHT}" "${YUV_RAW_INPUT}" "${output_file}" 9999 0 5 \
James Zernbb987892020-04-28 18:33:02 -070039 ${devnull} || return 1
Tom Fineganfe477682014-04-24 16:18:55 -070040
41 [ -e "${output_file}" ] || return 1
42}
43
Tom Fineganfe477682014-04-24 16:18:55 -070044
Jim Bankoski5d105b42016-05-23 13:59:35 -070045simple_encoder_av1() {
Yaowu Xuf883b422016-08-30 14:01:10 -070046 if [ "$(av1_encode_available)" = "yes" ]; then
47 simple_encoder av1 || return 1
Tom Fineganfe477682014-04-24 16:18:55 -070048 fi
49}
50
Jim Bankoski5d105b42016-05-23 13:59:35 -070051simple_encoder_tests="simple_encoder_av1"
Tom Fineganfe477682014-04-24 16:18:55 -070052
53run_tests simple_encoder_verify_environment "${simple_encoder_tests}"