Lines Matching +full:- +full:- +full:output
20 if [ ! -e "${YUV_RAW_INPUT}" ]; then
25 if [ ! -e "${Y4M_NOSQ_PAR_INPUT}" ]; then
31 if [ -z "$(aom_tool_path aomenc)" ]; then
66 cat "${input}" | eval "${AOM_TEST_PREFIX}" "${encoder}" - \
67 --test-decode=fatal \
79 --test-decode=fatal \
85 local output="${AV1_IVF_FILE}"
86 if [ -e "${AV1_IVF_FILE}" ]; then
87 output="${AOM_TEST_OUTPUT_DIR}/av1_test.ivf"
91 --ivf \
92 --output="${output}" || return 1
94 if [ ! -e "${output}" ]; then
95 elog "Output file does not exist."
103 local output="${AV1_IVF_FILE}"
104 if [ -e "${AV1_IVF_FILE}" ]; then
105 output="${AOM_TEST_OUTPUT_DIR}/av1_test.ivf"
109 --ivf \
110 --output="${output}" || return 1
112 if [ ! -e "${output}" ]; then
113 elog "Output file does not exist."
121 local output="${AV1_IVF_FILE}"
122 if [ -e "${AV1_IVF_FILE}" ]; then
123 output="${AOM_TEST_OUTPUT_DIR}/av1_test_16bit.ivf"
127 --ivf \
128 --use-16bit-internal \
129 --output="${output}" || return 1
131 if [ ! -e "${output}" ]; then
132 elog "Output file does not exist."
140 local output="${AV1_OBU_ANNEXB_FILE}"
141 if [ -e "${AV1_OBU_ANNEXB_FILE}" ]; then
142 output="${AOM_TEST_OUTPUT_DIR}/av1_test.annexb.obu"
146 --obu \
147 --annexb=1 \
148 --output="${output}" || return 1
150 if [ ! -e "${output}" ]; then
151 elog "Output file does not exist."
159 local output="${AV1_OBU_SEC5_FILE}"
160 if [ -e "${AV1_OBU_SEC5_FILE}" ]; then
161 output="${AOM_TEST_OUTPUT_DIR}/av1_test.section5.obu"
165 --obu \
166 --output="${output}" || return 1
168 if [ ! -e "${output}" ]; then
169 elog "Output file does not exist."
178 local output="${AV1_WEBM_FILE}"
179 if [ -e "${AV1_WEBM_FILE}" ]; then
180 output="${AOM_TEST_OUTPUT_DIR}/av1_test.webm"
184 --output="${output}" || return 1
186 if [ ! -e "${output}" ]; then
187 elog "Output file does not exist."
196 local output="${AOM_TEST_OUTPUT_DIR}/av1_test.webm"
199 --passes=1 \
200 --output="${output}" || return 1
202 if [ ! -e "${output}" ]; then
203 elog "Output file does not exist."
211 local output="${AOM_TEST_OUTPUT_DIR}/av1_lossless.ivf"
214 --ivf \
215 --output="${output}" \
216 --lossless=1 || return 1
218 if [ ! -e "${output}" ]; then
219 elog "Output file does not exist."
227 local output="${AOM_TEST_OUTPUT_DIR}/av1_lossless_minq0_maxq0.ivf"
230 --ivf \
231 --output="${output}" \
232 --min-q=0 \
233 --max-q=0 || return 1
235 if [ ! -e "${output}" ]; then
236 elog "Output file does not exist."
247 local output="${AOM_TEST_OUTPUT_DIR}/av1_lag5_frames10.webm"
250 --limit=${lag_total_frames} \
251 --lag-in-frames=${lag_frames} \
252 --output="${output}" || return 1
254 if [ ! -e "${output}" ]; then
255 elog "Output file does not exist."
265 local output="${AOM_TEST_OUTPUT_DIR}/av1_non_square_par.webm"
268 --output="${output}" || return 1
270 if [ ! -e "${output}" ]; then
271 elog "Output file does not exist."
281 local output="${AOM_TEST_OUTPUT_DIR}/cdf_mode_${mode}.webm"
284 --cdf-update-mode=${mode} \
285 --output="${output}" || return 1
287 if [ ! -e "${output}" ]; then
288 elog "Output file does not exist."