1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-13 21:28:01 +02:00

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>
This commit is contained in:
Clément Bœsch 2017-04-01 11:39:09 +02:00
commit edfa7ac8ec

View File

@ -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);
}
}
}
}
}