Skip to content
Snippets Groups Projects
Commit edfa7ac8 authored by Clément Bœsch's avatar Clément Bœsch
Browse files

Merge commit '81d7f0bb'


* commit '81d7f0bb':
  checkasm: vp9dsp: Benchmark the dc-only version of idct_idct separately

Merged-by: default avatarClément Bœsch <u@pkh.me>
parents cdcdb7d3 81d7f0bb
No related branches found
No related tags found
No related merge requests found
......@@ -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);
}
}
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment