summaryrefslogtreecommitdiff
path: root/tests/checkasm
diff options
context:
space:
mode:
authorYingming Fan <yingmingfan@gmail.com>2018-03-08 15:56:56 +0800
committerJames Almer <jamrial@gmail.com>2018-03-19 00:56:01 -0300
commite5b4cd4c4a9c98787b94ce33e268a61df9cf1587 (patch)
treead22cfbc20e3df750fdadd9561c402d81ddabe9f /tests/checkasm
parentd8ca7a7e700bc3b092bd9564d9dea73b5f0899cf (diff)
checkasm/hevc_idct : update test bit depth from 8 9 and 10 to 8 10 and 12
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'tests/checkasm')
-rw-r--r--tests/checkasm/hevc_idct.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/checkasm/hevc_idct.c b/tests/checkasm/hevc_idct.c
index eea712101d..c20111c2df 100644
--- a/tests/checkasm/hevc_idct.c
+++ b/tests/checkasm/hevc_idct.c
@@ -87,7 +87,7 @@ void checkasm_check_hevc_idct(void)
{
int bit_depth;
- for (bit_depth = 8; bit_depth <= 10; bit_depth++) {
+ for (bit_depth = 8; bit_depth <= 12; bit_depth += 2) {
HEVCDSPContext h;
ff_hevc_dsp_init(&h, bit_depth);
@@ -95,7 +95,7 @@ void checkasm_check_hevc_idct(void)
}
report("idct_dc");
- for (bit_depth = 8; bit_depth <= 10; bit_depth++) {
+ for (bit_depth = 8; bit_depth <= 12; bit_depth += 2) {
HEVCDSPContext h;
ff_hevc_dsp_init(&h, bit_depth);