Commit e5b4cd4c authored by Yingming Fan's avatar Yingming Fan Committed by James Almer

checkasm/hevc_idct : update test bit depth from 8 9 and 10 to 8 10 and 12

Signed-off-by: 's avatarJames Almer <jamrial@gmail.com>
parent d8ca7a7e
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment