1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-03-28 12:32:17 +02:00

checkasm: vp9dsp: Benchmark the dc-only version of idct_idct separately

The dc-only mode is already checked to work correctly above, but this
allows benchmarking this mode for performance tuning, and allows making
sure that it actually is correctly hooked up.

Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
Martin Storsjö 2016-11-14 23:44:06 +02:00
parent e7ae8f7a71
commit 81d7f0bbca

View File

@ -297,6 +297,12 @@ static void check_itxfm(void)
}
bench_new(dst, sz * SIZEOF_PIXEL, coef, sz * sz);
}
if (txtp == 0 && tx != 4) {
if (check_func(dsp.itxfm_add[tx][txtp], "vp9_inv_%s_%dx%d_dc_add",
txtp_types[txtp], sz, sz)) {
bench_new(dst, sz * SIZEOF_PIXEL, coef, 1);
}
}
}
}
report("itxfm");