Lines Matching defs:dct
45 #include "libavcodec/dct.h"
100 #include "aarch64/dct.c"
102 #include "arm/dct.c"
104 #include "ppc/dct.c"
106 #include "x86/dct.c"
180 static int dct_error(const struct algo *dct, int test, int is_idct, int speed, const int bits)
203 permute(block, block1, dct->perm_type);
205 dct->func(block);
208 if (!strcmp(dct->name, "IJG-AAN-INT")) {
216 if (!strcmp(dct->name, "PR-SSE2"))
257 is_idct ? "IDCT" : "DCT", dct->name, err_inf,
261 if (spec_err && !dct->nonspec) {
272 permute(block1, block, dct->perm_type);
279 dct->func(block);
286 printf("%s %s: %0.1f kdct/s\n", is_idct ? "IDCT" : "DCT", dct->name,
454 printf("dct-test [-i] [<test-number>] [<bits>]\n"