Skip to content
Snippets Groups Projects
Commit 7a22d8ba authored by Tom Finegan's avatar Tom Finegan Committed by Gerrit Code Review
Browse files

Merge "Add warning to temporal SVC test when temporal denoising is disabled."

parents 1226d133 4eae56d6
No related branches found
No related tags found
No related merge requests found
......@@ -21,6 +21,10 @@ vpx_tsvc_encoder_verify_environment() {
echo "Libvpx test data must exist in LIBVPX_TEST_DATA_PATH."
return 1
fi
if [ "$(vpx_config_option_enabled CONFIG_TEMPORAL_DENOISING)" != "yes" ]; then
elog "Warning: Temporal denoising is disabled! Spatial denoising will be " \
"used instead, which is probably not what you want for this test."
fi
}
# Runs vpx_temporal_svc_encoder using the codec specified by $1 and output file
......
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