Skip to content
Snippets Groups Projects
Commit 5d105b40 authored by Jim Bankoski's avatar Jim Bankoski Committed by Yaowu Xu
Browse files

simple_encoder: make it so we can run it in tests.

Added a limit, resolving a todo and added a limit parameter so that we
can do a very simple fast encode in 1 pass.

Change-Id: I265cd912d970d560a0b00b86e6c7ec7b6fef1e7b
parent e78a964e
No related branches found
No related tags found
2 merge requests!6Rav1e 11 yushin 1,!3Rav1e 10 yushin
......@@ -35,28 +35,19 @@ simple_encoder() {
fi
eval "${AOM_TEST_PREFIX}" "${encoder}" "${codec}" "${YUV_RAW_INPUT_WIDTH}" \
"${YUV_RAW_INPUT_HEIGHT}" "${YUV_RAW_INPUT}" "${output_file}" 9999 0 100 \
"${YUV_RAW_INPUT_HEIGHT}" "${YUV_RAW_INPUT}" "${output_file}" 9999 0 5 \
${devnull}
[ -e "${output_file}" ] || return 1
}
simple_encoder_aom() {
if [ "$(aom_encode_available)" = "yes" ]; then
simple_encoder aom || return 1
fi
}
# TODO(tomfinegan): Add a frame limit param to simple_encoder and enable this
# test. AV1 is just too slow right now: This test takes 4m30s+ on a fast
# machine.
DISABLED_simple_encoder_av1() {
simple_encoder_av1() {
if [ "$(av1_encode_available)" = "yes" ]; then
simple_encoder av1 || return 1
fi
}
simple_encoder_tests="simple_encoder_aom
DISABLED_simple_encoder_av1"
simple_encoder_tests="simple_encoder_av1"
run_tests simple_encoder_verify_environment "${simple_encoder_tests}"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment