mirror of https://git.ffmpeg.org/ffmpeg.git
tests/checkasm/vvc_mc: fix indentation
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
442e94e5e4
commit
b70289f354
|
@ -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");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue