1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-11-21 10:55:51 +02:00

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

This reverts commit 81d7f0bbca.

Instead of just benchmarking dc separately, test all relevant subparts
(in the next commit).

Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
Martin Storsjö 2016-11-18 10:09:12 +02:00
parent 12ab667e21
commit effc1430b2

View File

@ -297,12 +297,6 @@ 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");