ref: 7a22d8ba833a285745f34e7c8fea84a0a6eb5939
parent: 1226d133df86e0bea6f89e9f0d86a77a8989999b
parent: 4eae56d6601365da03ba8a1138674941a9b7cf8a
author: Tom Finegan <tomfinegan@google.com>
date: Thu Jul 10 11:34:30 EDT 2014
Merge "Add warning to temporal SVC test when temporal denoising is disabled."
--- a/test/vpx_temporal_svc_encoder.sh
+++ b/test/vpx_temporal_svc_encoder.sh
@@ -21,6 +21,10 @@
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
--
⑨