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>
pull/258/head
Clément Bœsch 8 years ago
commit edfa7ac8ec
  1. 6
      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);
}
}
}
}
}

Loading…
Cancel
Save