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
60 cat "${input}" | eval "${AOM_TEST_PREFIX}" "${encoder}" - \
61 --test-decode=fatal \
73 --test-decode=fatal \
79 local output="${AV1_IVF_FILE}"
80 if [ -e "${AV1_IVF_FILE}" ]; then
81 output="${AOM_TEST_OUTPUT_DIR}/av1_test.ivf"
85 --ivf \
86 --output="${output}" || return 1
88 if [ ! -e "${output}" ]; then
89 elog "Output file does not exist."
97 local output="${AV1_IVF_FILE}"
98 if [ -e "${AV1_IVF_FILE}" ]; then
99 output="${AOM_TEST_OUTPUT_DIR}/av1_test.ivf"
103 --ivf \
104 --output="${output}" || return 1
106 if [ ! -e "${output}" ]; then
107 elog "Output file does not exist."
115 local output="${AV1_IVF_FILE}"
116 if [ -e "${AV1_IVF_FILE}" ]; then
117 output="${AOM_TEST_OUTPUT_DIR}/av1_test_16bit.ivf"
121 --ivf \
122 --use-16bit-internal \
123 --output="${output}" || return 1
125 if [ ! -e "${output}" ]; then
126 elog "Output file does not exist."
134 local output="${AV1_OBU_ANNEXB_FILE}"
135 if [ -e "${AV1_OBU_ANNEXB_FILE}" ]; then
136 output="${AOM_TEST_OUTPUT_DIR}/av1_test.annexb.obu"
140 --obu \
141 --annexb=1 \
142 --output="${output}" || return 1
144 if [ ! -e "${output}" ]; then
145 elog "Output file does not exist."
153 local output="${AV1_OBU_SEC5_FILE}"
154 if [ -e "${AV1_OBU_SEC5_FILE}" ]; then
155 output="${AOM_TEST_OUTPUT_DIR}/av1_test.section5.obu"
159 --obu \
160 --output="${output}" || return 1
162 if [ ! -e "${output}" ]; then
163 elog "Output file does not exist."
172 local output="${AV1_WEBM_FILE}"
173 if [ -e "${AV1_WEBM_FILE}" ]; then
174 output="${AOM_TEST_OUTPUT_DIR}/av1_test.webm"
178 --output="${output}" || return 1
180 if [ ! -e "${output}" ]; then
181 elog "Output file does not exist."
190 local output="${AOM_TEST_OUTPUT_DIR}/av1_test.webm"
193 --passes=1 \
194 --output="${output}" || return 1
196 if [ ! -e "${output}" ]; then
197 elog "Output file does not exist."
205 local output="${AOM_TEST_OUTPUT_DIR}/av1_lossless.ivf"
208 --ivf \
209 --output="${output}" \
210 --lossless=1 || return 1
212 if [ ! -e "${output}" ]; then
213 elog "Output file does not exist."
221 local output="${AOM_TEST_OUTPUT_DIR}/av1_lossless_minq0_maxq0.ivf"
224 --ivf \
225 --output="${output}" \
226 --min-q=0 \
227 --max-q=0 || return 1
229 if [ ! -e "${output}" ]; then
230 elog "Output file does not exist."
241 local output="${AOM_TEST_OUTPUT_DIR}/av1_lag5_frames10.webm"
244 --limit=${lag_total_frames} \
245 --lag-in-frames=${lag_frames} \
246 --output="${output}" || return 1
248 if [ ! -e "${output}" ]; then
249 elog "Output file does not exist."
259 local output="${AOM_TEST_OUTPUT_DIR}/av1_non_square_par.webm"
262 --output="${output}" || return 1
264 if [ ! -e "${output}" ]; then
265 elog "Output file does not exist."
275 local output="${AOM_TEST_OUTPUT_DIR}/cdf_mode_${mode}.webm"
278 --cdf-update-mode=${mode} \
279 --output="${output}" || return 1
281 if [ ! -e "${output}" ]; then
282 elog "Output file does not exist."