blob: b957a6b7948bea62a259d4b5e6cbde7adc5a531e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
#!/bin/sh
## Copyright (c) 2018, Alliance for Open Media. All rights reserved
##
## This source code is subject to the terms of the BSD 2 Clause License and
## the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
## was not distributed with this source code in the LICENSE file, you can
## obtain it at www.aomedia.org/license/software. 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 www.aomedia.org/license/patent.
##
## This file tests the lightfield example.
##
. $(dirname $0)/tools_common.sh
# Environment check: $infile is required.
lightfield_test_verify_environment() {
local infile="${LIBAOM_TEST_DATA_PATH}/vase10x10.yuv"
if [ ! -e "${infile}" ]; then
echo "Libaom test data must exist in LIBAOM_TEST_DATA_PATH."
return 1
fi
}
# Run the lightfield example
lightfield_test() {
local img_width=1024
local img_height=1024
local lf_width=10
local lf_height=10
local lf_blocksize=5
local num_references=4
local num_tile_lists=2
# Encode the lightfield.
local encoder="${LIBAOM_BIN_PATH}/lightfield_encoder${AOM_TEST_EXE_SUFFIX}"
local yuv_file="${LIBAOM_TEST_DATA_PATH}/vase10x10.yuv"
local lf_file="${AOM_TEST_OUTPUT_DIR}/vase10x10.ivf"
if [ ! -x "${encoder}" ]; then
elog "${encoder} does not exist or is not executable."
return 1
fi
eval "${AOM_TEST_PREFIX}" "${encoder}" "${img_width}" "${img_height}" \
"${yuv_file}" "${lf_file}" "${lf_width}" \
"${lf_height}" "${lf_blocksize}" ${devnull}
[ -e "${lf_file}" ] || return 1
# Parse lightfield bitstream to construct and output a new bitstream that can
# be decoded by an AV1 decoder.
local bs_decoder="${LIBAOM_BIN_PATH}/lightfield_bitstream_parsing${AOM_TEST_EXE_SUFFIX}"
local tl_file="${AOM_TEST_OUTPUT_DIR}/vase_tile_list.ivf"
if [ ! -x "${bs_decoder}" ]; then
elog "${bs_decoder} does not exist or is not executable."
return 1
fi
eval "${AOM_TEST_PREFIX}" "${bs_decoder}" "${lf_file}" "${tl_file}" \
"${num_references}" ${devnull}
[ -e "${tl_file}" ] || return 1
# Run lightfield tile list decoder
local tl_decoder="${LIBAOM_BIN_PATH}/lightfield_tile_list_decoder${AOM_TEST_EXE_SUFFIX}"
local tl_outfile="${AOM_TEST_OUTPUT_DIR}/vase_tile_list.yuv"
if [ ! -x "${tl_decoder}" ]; then
elog "${tl_decoder} does not exist or is not executable."
return 1
fi
eval "${AOM_TEST_PREFIX}" "${tl_decoder}" "${tl_file}" "${tl_outfile}" \
"${num_references}" "${num_tile_lists}" ${devnull}
[ -e "${tl_outfile}" ] || return 1
# Run reference lightfield decoder
local ref_decoder="${LIBAOM_BIN_PATH}/lightfield_decoder${AOM_TEST_EXE_SUFFIX}"
local tl_reffile="${AOM_TEST_OUTPUT_DIR}/vase_reference.yuv"
if [ ! -x "${ref_decoder}" ]; then
elog "${ref_decoder} does not exist or is not executable."
return 1
fi
eval "${AOM_TEST_PREFIX}" "${ref_decoder}" "${lf_file}" "${tl_reffile}" \
"${num_references}" ${devnull}
[ -e "${tl_reffile}" ] || return 1
# Check if tl_outfile and tl_reffile are identical. If not identical, this test fails.
diff ${tl_outfile} ${tl_reffile} > /dev/null
if [ $? -eq 1 ]; then
return 1
fi
}
lightfield_test_tests="lightfield_test"
run_tests lightfield_test_verify_environment "${lightfield_test_tests}"
|