cosmetics: Reformat checkasm tests

This commit is contained in:
Luca Barbato 2015-07-17 20:07:26 +02:00
parent d37f232635
commit fc56868399
3 changed files with 59 additions and 60 deletions
tests/checkasm

@ -63,7 +63,7 @@ void checkasm_check_h264qpel(void)
ff_h264qpel_init(&h, bit_depth);
for (i = 0; i < (op ? 3 : 4); i++) {
int size = 16 >> i;
for (j = 0; j < 16; j++) {
for (j = 0; j < 16; j++)
if (check_func(tab[i][j], "%s_h264_qpel_%d_mc%d%d_%d", op_name, size, j & 3, j >> 2, bit_depth)) {
randomize_buffers();
call_ref(dst0, src0, (ptrdiff_t)size * SIZEOF_PIXEL);
@ -74,7 +74,6 @@ void checkasm_check_h264qpel(void)
}
}
}
}
report("%s_h264_qpel", op_name);
}
}