Commit edfa7ac8 authored by Clément Bœsch's avatar Clément Bœsch

Merge commit '81d7f0bb'

* commit '81d7f0bb':
  checkasm: vp9dsp: Benchmark the dc-only version of idct_idct separately
Merged-by: 's avatarClément Bœsch <u@pkh.me>
parents cdcdb7d3 81d7f0bb
...@@ -368,6 +368,12 @@ static void check_itxfm(void) ...@@ -368,6 +368,12 @@ static void check_itxfm(void)
bench_new(dst, sz * SIZEOF_PIXEL, coef, eob); 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);
}
}
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment