diff options
author | Clément Bœsch <u@pkh.me> | 2017-04-01 11:39:09 +0200 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2017-04-01 11:54:29 +0200 |
commit | edfa7ac8ec4a3a51951b7f2c0d7589ca965556fd (patch) | |
tree | 4227aa98ac1526e4487e9ed818b52337d69aa96c | |
parent | cdcdb7d32dd245d2d34293404b988e8546279315 (diff) | |
parent | 81d7f0bbca837afda1f7e60d3ae52ab1360ab44b (diff) | |
download | ffmpeg-edfa7ac8ec4a3a51951b7f2c0d7589ca965556fd.tar.gz |
Merge commit '81d7f0bbca837afda1f7e60d3ae52ab1360ab44b'
* commit '81d7f0bbca837afda1f7e60d3ae52ab1360ab44b':
checkasm: vp9dsp: Benchmark the dc-only version of idct_idct separately
Merged-by: Clément Bœsch <u@pkh.me>
-rw-r--r-- | tests/checkasm/vp9dsp.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/checkasm/vp9dsp.c b/tests/checkasm/vp9dsp.c index a91577b94e..337ab218d5 100644 --- a/tests/checkasm/vp9dsp.c +++ b/tests/checkasm/vp9dsp.c @@ -368,6 +368,12 @@ static void check_itxfm(void) bench_new(dst, sz * SIZEOF_PIXEL, coef, eob); } } + if (txtp == 0 && tx != 4) { + if (check_func(dsp.itxfm_add[tx][txtp], "vp9_inv_%s_%dx%d_dc_add_%d", + txtp_types[txtp], sz, sz, bit_depth)) { + bench_new(dst, sz * SIZEOF_PIXEL, coef, 1); + } + } } } } |