tests/checkasm/vvc_mc: fix indentation

Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer 2024-05-29 11:02:38 -03:00 committed by Nuo Mi
parent 442e94e5e4
commit b70289f354
1 changed files with 4 additions and 3 deletions

View File

@ -341,8 +341,10 @@ static void check_vvc_sad(void)
for (int w = 8; w <= 16; w *= 2) {
for(int offy = 0; offy <= 4; offy++) {
for(int offx = 0; offx <= 4; offx++) {
if(w * h >= 128) {
if(check_func(c.inter.sad, "sad_%dx%d", w, h)) {
if (w * h < 128)
continue;
if (check_func(c.inter.sad, "sad_%dx%d", w, h)) {
int result0;
int result1;
@ -358,7 +360,6 @@ static void check_vvc_sad(void)
}
}
}
}
report("sad");
}