blob: ebb768e97b6c376737244449d76b51c523545249 [file] [log] [blame]
#!/bin/sh
## Copyright (c) 2021, Alliance for Open Media. All rights reserved
##
## This source code is subject to the terms of the BSD 3-Clause Clear License and the
## Alliance for Open Media Patent License 1.0. If the BSD 3-Clause Clear License was
## not distributed with this source code in the LICENSE file, you can obtain it
## at aomedia.org/license/software-license/bsd-3-c-c/. If the Alliance for Open Media Patent
## License 1.0 was not distributed with this source code in the PATENTS file, you
## can obtain it at aomedia.org/license/patent-license/.
##
## This file tests avmenc using hantro_collage_w352h288.yuv as input. To add
## new tests to this file, do the following:
## 1. Write a shell function (this is your test).
## 2. Add the function to avmenc_tests (on a new line).
##
. $(dirname $0)/tools_common.sh
# Environment check: Make sure input is available.
avmenc_verify_environment() {
if [ ! -e "${YUV_RAW_INPUT}" ]; then
elog "The file ${YUV_RAW_INPUT##*/} must exist in LIBAVM_TEST_DATA_PATH."
return 1
fi
if [ "$(avmenc_can_encode_av2)" = "yes" ]; then
if [ ! -e "${Y4M_NOSQ_PAR_INPUT}" ]; then
elog "The file ${Y4M_NOSQ_PAR_INPUT##*/} must exist in"
elog "LIBAVM_TEST_DATA_PATH."
return 1
fi
fi
if [ -z "$(avm_tool_path avmenc)" ]; then
elog "avmenc not found. It must exist in LIBAVM_BIN_PATH or its parent."
return 1
fi
}
avmenc_can_encode_av2() {
if [ "$(av2_encode_available)" = "yes" ]; then
echo yes
fi
}
avmenc_can_encode_av2() {
if [ "$(av2_encode_available)" = "yes" ]; then
echo yes
fi
}
# Utilities that echo avmenc input file parameters.
y4m_input_non_square_par() {
echo ""${Y4M_NOSQ_PAR_INPUT}""
}
y4m_input_720p() {
echo ""${Y4M_720P_INPUT}""
}
# Wrapper function for running avmenc with pipe input. Requires that
# LIBAVM_BIN_PATH points to the directory containing avmenc. $1 is used as the
# input file path and shifted away. All remaining parameters are passed through
# to avmenc.
avmenc_pipe() {
local encoder="$(avm_tool_path avmenc)"
local input="$1"
shift
cat "${input}" | eval "${AVM_TEST_PREFIX}" "${encoder}" - \
--test-decode=fatal \
"$@" ${devnull}
}
# Wrapper function for running avmenc. Requires that LIBAVM_BIN_PATH points to
# the directory containing avmenc. $1 one is used as the input file path and
# shifted away. All remaining parameters are passed through to avmenc.
avmenc() {
local encoder="$(avm_tool_path avmenc)"
local input="$1"
shift
eval "${AVM_TEST_PREFIX}" "${encoder}" "${input}" \
--test-decode=fatal \
"$@" ${devnull}
}
avmenc_av2_ivf() {
if [ "$(avmenc_can_encode_av2)" = "yes" ]; then
local output="${AV2_IVF_FILE}"
if [ -e "${AV2_IVF_FILE}" ]; then
output="${AVM_TEST_OUTPUT_DIR}/av2_test.ivf"
fi
avmenc $(yuv_raw_input) \
$(avmenc_encode_test_fast_params) \
--ivf \
--output="${output}" || return 1
if [ ! -e "${output}" ]; then
elog "Output file does not exist."
return 1
fi
fi
}
avmenc_av2_obu() {
if [ "$(avmenc_can_encode_av2)" = "yes" ]; then
local output="${AV2_OBU_FILE}"
if [ -e "${AV2_OBU_FILE}" ]; then
output="${AVM_TEST_OUTPUT_DIR}/av2_test.obu"
fi
avmenc $(yuv_raw_input) \
$(avmenc_encode_test_fast_params) \
--obu \
--output="${output}" || return 1
if [ ! -e "${output}" ]; then
elog "Output file does not exist."
return 1
fi
fi
}
avmenc_av2_obu_lcr_ops_atlas() {
if [ "$(avmenc_can_encode_av2)" = "yes" ]; then
local output="${AV2_OBU_LCR_OPS_ATLAS_FILE}"
if [ -e "${AV2_OBU_LCR_OPS_ATLAS_FILE}" ]; then
output="${AVM_TEST_OUTPUT_DIR}/av2_test.lcr_ops_atlas.obu"
fi
avmenc $(yuv_raw_input) \
$(avmenc_encode_test_fast_params) \
--obu \
--enable-lcr=1 \
--enable-operating-point-sets=1 \
--enable-atlas=1 \
--cpu-used=5 \
--output="${output}" || return 1
if [ ! -e "${output}" ]; then
elog "Output file does not exist."
return 1
fi
fi
}
avmenc_av2_webm() {
if [ "$(avmenc_can_encode_av2)" = "yes" ] && \
[ "$(webm_io_available)" = "yes" ]; then
local output="${AV2_WEBM_FILE}"
if [ -e "${AV2_WEBM_FILE}" ]; then
output="${AVM_TEST_OUTPUT_DIR}/av2_test.webm"
fi
avmenc $(yuv_raw_input) \
$(avmenc_encode_test_fast_params) \
--output="${output}" || return 1
if [ ! -e "${output}" ]; then
elog "Output file does not exist."
return 1
fi
fi
}
avmenc_av2_webm_1pass() {
if [ "$(avmenc_can_encode_av2)" = "yes" ] && \
[ "$(webm_io_available)" = "yes" ]; then
local output="${AVM_TEST_OUTPUT_DIR}/av2_test.webm"
avmenc $(yuv_raw_input) \
$(avmenc_encode_test_fast_params) \
--passes=1 \
--output="${output}" || return 1
if [ ! -e "${output}" ]; then
elog "Output file does not exist."
return 1
fi
fi
}
avmenc_av2_ivf_lossless() {
if [ "$(avmenc_can_encode_av2)" = "yes" ]; then
local output="${AVM_TEST_OUTPUT_DIR}/av2_lossless.ivf"
avmenc $(yuv_raw_input) \
$(avmenc_encode_test_fast_params) \
--ivf \
--output="${output}" \
--lossless=1 || return 1
if [ ! -e "${output}" ]; then
elog "Output file does not exist."
return 1
fi
fi
}
avmenc_av2_ivf_minq0_maxq0() {
if [ "$(avmenc_can_encode_av2)" = "yes" ]; then
local output="${AVM_TEST_OUTPUT_DIR}/av2_lossless_minq0_maxq0.ivf"
avmenc $(yuv_raw_input) \
$(avmenc_encode_test_fast_params) \
--ivf \
--output="${output}" \
--disable-warning-prompt \
--min-qp=0 \
--max-qp=0 || return 1
if [ ! -e "${output}" ]; then
elog "Output file does not exist."
return 1
fi
fi
}
avmenc_av2_webm_lag5_frames10() {
if [ "$(avmenc_can_encode_av2)" = "yes" ] && \
[ "$(webm_io_available)" = "yes" ]; then
local lag_total_frames=10
local lag_frames=5
local output="${AVM_TEST_OUTPUT_DIR}/av2_lag5_frames10.webm"
avmenc $(yuv_raw_input) \
$(avmenc_encode_test_fast_params) \
--limit=${lag_total_frames} \
--lag-in-frames=${lag_frames} \
--output="${output}" || return 1
if [ ! -e "${output}" ]; then
elog "Output file does not exist."
return 1
fi
fi
}
# TODO(fgalligan): Test that DisplayWidth is different than video width.
avmenc_av2_webm_non_square_par() {
if [ "$(avmenc_can_encode_av2)" = "yes" ] && \
[ "$(webm_io_available)" = "yes" ]; then
local output="${AVM_TEST_OUTPUT_DIR}/av2_non_square_par.webm"
avmenc $(y4m_input_non_square_par) \
$(avmenc_encode_test_fast_params) \
--output="${output}" || return 1
if [ ! -e "${output}" ]; then
elog "Output file does not exist."
return 1
fi
fi
}
avmenc_av2_webm_cdf_update_mode() {
if [ "$(avmenc_can_encode_av2)" = "yes" ] && \
[ "$(webm_io_available)" = "yes" ]; then
for mode in 0 1 2; do
local output="${AVM_TEST_OUTPUT_DIR}/cdf_mode_${mode}.webm"
avmenc $(yuv_raw_input) \
$(avmenc_encode_test_fast_params) \
--cdf-update-mode=${mode} \
--output="${output}" || return 1
if [ ! -e "${output}" ]; then
elog "Output file does not exist."
return 1
fi
done
fi
}
avmenc_av2_obu_temporal_delimiter() {
if [ "$(avmenc_can_encode_av2)" = "yes" ]; then
local output1="${AVM_TEST_OUTPUT_DIR}/av2_test_td0.obu"
local output2="${AVM_TEST_OUTPUT_DIR}/av2_test_td1.obu"
avmenc $(yuv_raw_input) \
$(avmenc_encode_test_fast_params) \
--use-temporal-delimiter=0 \
--obu \
--output="${output1}" || return 1
if [ ! -e "${output1}" ]; then
elog "Output file 1 does not exist."
return 1
fi
avmenc $(yuv_raw_input) \
$(avmenc_encode_test_fast_params) \
--use-temporal-delimiter=1 \
--obu \
--output="${output2}" || return 1
if [ ! -e "${output2}" ]; then
elog "Output file 2 does not exist."
return 1
fi
local decoder="$(avm_tool_path avmdec)"
if [ -z "${decoder}" ]; then
elog "avmdec not found."
return 1
fi
local decoded1="${AVM_TEST_OUTPUT_DIR}/av2_test_td0.yuv"
local decoded2="${AVM_TEST_OUTPUT_DIR}/av2_test_td1.yuv"
eval "${AVM_TEST_PREFIX}" "${decoder}" "${output1}" -o "${decoded1}" ${devnull} || return 1
eval "${AVM_TEST_PREFIX}" "${decoder}" "${output2}" -o "${decoded2}" ${devnull} || return 1
if [ ! -e "${decoded1}" ] || [ ! -e "${decoded2}" ]; then
elog "Decoded files do not exist."
return 1
fi
cmp "${decoded1}" "${decoded2}" || return 1
local expected_diff=$(( 2 * ${AV2_ENCODE_TEST_FRAME_LIMIT} ))
local size1=$(wc -c < "${output1}")
local size2=$(wc -c < "${output2}")
if [ $(( size2 - size1 )) -ne ${expected_diff} ]; then
elog "Output sizes do not differ by ${expected_diff} bytes. size1=${size1}, size2=${size2}"
return 1
fi
local dump_obu_bin="$(avm_tool_path dump_obu)"
if [ -n "${dump_obu_bin}" ]; then
local td_count1=$(eval "${AVM_TEST_PREFIX}" "${dump_obu_bin}" "${output1}" 2>&1 | grep -c "OBU_TEMPORAL_DELIMITER" || true)
local td_count2=$(eval "${AVM_TEST_PREFIX}" "${dump_obu_bin}" "${output2}" 2>&1 | grep -c "OBU_TEMPORAL_DELIMITER" || true)
if [ "${td_count1}" -ne 0 ]; then
elog "Expected 0 temporal delimiters in ${output1}, found ${td_count1}"
return 1
fi
local expected_td_count=${AV2_ENCODE_TEST_FRAME_LIMIT}
if [ "${td_count2}" -ne "${expected_td_count}" ]; then
elog "Expected ${expected_td_count} temporal delimiters in ${output2}, found ${td_count2}"
return 1
fi
else
elog "dump_obu not found. Skipping temporal delimiter count check."
fi
fi
}
avmenc_av2_obu_temporal_delimiter_lag() {
if [ "$(avmenc_can_encode_av2)" = "yes" ]; then
local output1="${AVM_TEST_OUTPUT_DIR}/av2_test_td0_lag.obu"
local output2="${AVM_TEST_OUTPUT_DIR}/av2_test_td1_lag.obu"
avmenc $(yuv_raw_input) \
$(avmenc_encode_test_fast_params_lag) \
--use-temporal-delimiter=0 \
--obu \
--output="${output1}" || return 1
if [ ! -e "${output1}" ]; then
elog "Output file 1 does not exist."
return 1
fi
avmenc $(yuv_raw_input) \
$(avmenc_encode_test_fast_params_lag) \
--use-temporal-delimiter=1 \
--obu \
--output="${output2}" || return 1
if [ ! -e "${output2}" ]; then
elog "Output file 2 does not exist."
return 1
fi
local decoder="$(avm_tool_path avmdec)"
if [ -z "${decoder}" ]; then
elog "avmdec not found."
return 1
fi
local decoded1="${AVM_TEST_OUTPUT_DIR}/av2_test_td0_lag.yuv"
local decoded2="${AVM_TEST_OUTPUT_DIR}/av2_test_td1_lag.yuv"
eval "${AVM_TEST_PREFIX}" "${decoder}" "${output1}" -o "${decoded1}" ${devnull} || return 1
eval "${AVM_TEST_PREFIX}" "${decoder}" "${output2}" -o "${decoded2}" ${devnull} || return 1
if [ ! -e "${decoded1}" ] || [ ! -e "${decoded2}" ]; then
elog "Decoded files do not exist."
return 1
fi
cmp "${decoded1}" "${decoded2}" || return 1
local expected_diff=$(( 2 * ${AV2_ENCODE_TEST_FRAME_LIMIT} ))
local size1=$(wc -c < "${output1}")
local size2=$(wc -c < "${output2}")
if [ $(( size2 - size1 )) -ne ${expected_diff} ]; then
elog "Output sizes do not differ by ${expected_diff} bytes. size1=${size1}, size2=${size2}"
return 1
fi
local dump_obu_bin="$(avm_tool_path dump_obu)"
if [ -n "${dump_obu_bin}" ]; then
local td_count1=$(eval "${AVM_TEST_PREFIX}" "${dump_obu_bin}" "${output1}" 2>&1 | grep -c "OBU_TEMPORAL_DELIMITER" || true)
local td_count2=$(eval "${AVM_TEST_PREFIX}" "${dump_obu_bin}" "${output2}" 2>&1 | grep -c "OBU_TEMPORAL_DELIMITER" || true)
if [ "${td_count1}" -ne 0 ]; then
elog "Expected 0 temporal delimiters in ${output1}, found ${td_count1}"
return 1
fi
local expected_td_count=${AV2_ENCODE_TEST_FRAME_LIMIT}
if [ "${td_count2}" -ne "${expected_td_count}" ]; then
elog "Expected ${expected_td_count} temporal delimiters in ${output2}, found ${td_count2}"
return 1
fi
else
elog "dump_obu not found. Skipping temporal delimiter count check."
fi
fi
}
avmenc_tests="avmenc_av2_ivf
avmenc_av2_obu
avmenc_av2_obu_lcr_ops_atlas
avmenc_av2_webm
avmenc_av2_webm_1pass
avmenc_av2_ivf_lossless
avmenc_av2_ivf_minq0_maxq0
avmenc_av2_webm_lag5_frames10
avmenc_av2_webm_non_square_par
avmenc_av2_webm_cdf_update_mode
avmenc_av2_obu_temporal_delimiter
avmenc_av2_obu_temporal_delimiter_lag"
run_tests avmenc_verify_environment "${avmenc_tests}"