blob: 2b202aac7b2fc2911297621d7cf768cdf6172071 [file] [log] [blame]
Tom Fineganf04e9c42014-05-08 12:05:30 -07001#!/bin/sh
Yaowu Xu2ab7ff02016-09-02 12:04:54 -07002## Copyright (c) 2016, Alliance for Open Media. All rights reserved
Tom Fineganf04e9c42014-05-08 12:05:30 -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 Fineganf04e9c42014-05-08 12:05:30 -070010##
Yaowu Xu2ab7ff02016-09-02 12:04:54 -070011## This file tests the libaom twopass_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 twopass_encoder_tests (on a new line).
Tom Fineganf04e9c42014-05-08 12:05:30 -070015##
16. $(dirname $0)/tools_common.sh
17
18# Environment check: $YUV_RAW_INPUT is required.
19twopass_encoder_verify_environment() {
20 if [ ! -e "${YUV_RAW_INPUT}" ]; then
Yaowu Xuf883b422016-08-30 14:01:10 -070021 echo "Libaom test data must exist in LIBVPX_TEST_DATA_PATH."
Tom Fineganf04e9c42014-05-08 12:05:30 -070022 return 1
23 fi
24}
25
Tom Finegan9d473412016-05-11 14:50:03 -070026# Runs twopass_encoder using the codec specified by $1 with a frame limit of
27# 100.
Tom Fineganf04e9c42014-05-08 12:05:30 -070028twopass_encoder() {
Yaowu Xuf883b422016-08-30 14:01:10 -070029 local encoder="${LIBAOM_BIN_PATH}/twopass_encoder${AOM_TEST_EXE_SUFFIX}"
Tom Fineganf04e9c42014-05-08 12:05:30 -070030 local codec="$1"
Yaowu Xuf883b422016-08-30 14:01:10 -070031 local output_file="${AOM_TEST_OUTPUT_DIR}/twopass_encoder_${codec}.ivf"
Tom Fineganf04e9c42014-05-08 12:05:30 -070032
Tom Finegan12672c22014-06-16 10:57:00 -070033 if [ ! -x "${encoder}" ]; then
34 elog "${encoder} does not exist or is not executable."
35 return 1
36 fi
Tom Fineganf04e9c42014-05-08 12:05:30 -070037
Yaowu Xuf883b422016-08-30 14:01:10 -070038 eval "${AOM_TEST_PREFIX}" "${encoder}" "${codec}" "${YUV_RAW_INPUT_WIDTH}" \
Tom Finegan9d473412016-05-11 14:50:03 -070039 "${YUV_RAW_INPUT_HEIGHT}" "${YUV_RAW_INPUT}" "${output_file}" 100 \
Tom Fineganf04e9c42014-05-08 12:05:30 -070040 ${devnull}
41
42 [ -e "${output_file}" ] || return 1
43}
44
Yaowu Xuf883b422016-08-30 14:01:10 -070045twopass_encoder_aom() {
46 if [ "$(aom_encode_available)" = "yes" ]; then
47 twopass_encoder aom || return 1
Tom Fineganf04e9c42014-05-08 12:05:30 -070048 fi
49}
50
Yaowu Xuf883b422016-08-30 14:01:10 -070051# TODO(tomfinegan): Add a frame limit param to twopass_encoder and enable this
52# test. AV1 is just too slow right now: This test takes 31m16s+ on a fast
53# machine.
54DISABLED_twopass_encoder_av1() {
55 if [ "$(av1_encode_available)" = "yes" ]; then
56 twopass_encoder av1 || return 1
Tom Fineganf04e9c42014-05-08 12:05:30 -070057 fi
58}
59
Yaowu Xuf883b422016-08-30 14:01:10 -070060twopass_encoder_tests="twopass_encoder_aom
61 DISABLED_twopass_encoder_av1"
Tom Fineganf04e9c42014-05-08 12:05:30 -070062
63run_tests twopass_encoder_verify_environment "${twopass_encoder_tests}"