You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

510 lines
14KB

  1. /*
  2. * (c) 2001 Fabrice Bellard
  3. * 2007 Marc Hoffman <marc.hoffman@analog.com>
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * Libav is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with Libav; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. /**
  22. * @file
  23. * DCT test (c) 2001 Fabrice Bellard
  24. * Started from sample code by Juan J. Sierralta P.
  25. */
  26. #include "config.h"
  27. #include <stdlib.h>
  28. #include <stdio.h>
  29. #include <string.h>
  30. #if HAVE_UNISTD_H
  31. #include <unistd.h>
  32. #endif
  33. #include <math.h>
  34. #include "libavutil/cpu.h"
  35. #include "libavutil/common.h"
  36. #include "libavutil/lfg.h"
  37. #include "libavutil/time.h"
  38. #include "dct.h"
  39. #include "idctdsp.h"
  40. #include "simple_idct.h"
  41. #include "aandcttab.h"
  42. #include "faandct.h"
  43. #include "faanidct.h"
  44. #include "x86/idct_xvid.h"
  45. #include "dctref.h"
  46. // ALTIVEC
  47. void ff_fdct_altivec(int16_t *block);
  48. // ARM
  49. void ff_j_rev_dct_arm(int16_t *data);
  50. void ff_simple_idct_arm(int16_t *data);
  51. void ff_simple_idct_armv5te(int16_t *data);
  52. void ff_simple_idct_armv6(int16_t *data);
  53. void ff_simple_idct_neon(int16_t *data);
  54. struct algo {
  55. const char *name;
  56. void (*func)(int16_t *block);
  57. enum idct_permutation_type perm_type;
  58. int cpu_flag;
  59. int nonspec;
  60. };
  61. static const struct algo fdct_tab[] = {
  62. { "REF-DBL", ff_ref_fdct, FF_IDCT_PERM_NONE },
  63. { "FAAN", ff_faandct, FF_IDCT_PERM_NONE },
  64. { "IJG-AAN-INT", ff_fdct_ifast, FF_IDCT_PERM_NONE },
  65. { "IJG-LLM-INT", ff_jpeg_fdct_islow_8, FF_IDCT_PERM_NONE },
  66. #if HAVE_MMX_INLINE
  67. { "MMX", ff_fdct_mmx, FF_IDCT_PERM_NONE, AV_CPU_FLAG_MMX },
  68. #endif
  69. #if HAVE_MMXEXT_INLINE
  70. { "MMXEXT", ff_fdct_mmxext, FF_IDCT_PERM_NONE, AV_CPU_FLAG_MMXEXT },
  71. #endif
  72. #if HAVE_SSE2_INLINE
  73. { "SSE2", ff_fdct_sse2, FF_IDCT_PERM_NONE, AV_CPU_FLAG_SSE2 },
  74. #endif
  75. #if HAVE_ALTIVEC
  76. { "altivecfdct", ff_fdct_altivec, FF_IDCT_PERM_NONE, AV_CPU_FLAG_ALTIVEC },
  77. #endif
  78. { 0 }
  79. };
  80. static const struct algo idct_tab[] = {
  81. { "FAANI", ff_faanidct, FF_IDCT_PERM_NONE },
  82. { "REF-DBL", ff_ref_idct, FF_IDCT_PERM_NONE },
  83. { "INT", ff_j_rev_dct, FF_IDCT_PERM_LIBMPEG2 },
  84. { "SIMPLE-C", ff_simple_idct_8, FF_IDCT_PERM_NONE },
  85. #if HAVE_MMX_INLINE
  86. { "SIMPLE-MMX", ff_simple_idct_mmx, FF_IDCT_PERM_SIMPLE, AV_CPU_FLAG_MMX },
  87. { "XVID-MMX", ff_idct_xvid_mmx, FF_IDCT_PERM_NONE, AV_CPU_FLAG_MMX, 1 },
  88. #endif
  89. #if HAVE_MMXEXT_INLINE
  90. { "XVID-MMXEXT", ff_idct_xvid_mmxext, FF_IDCT_PERM_NONE, AV_CPU_FLAG_MMXEXT, 1 },
  91. #endif
  92. #if HAVE_SSE2_INLINE
  93. { "XVID-SSE2", ff_idct_xvid_sse2, FF_IDCT_PERM_SSE2, AV_CPU_FLAG_SSE2, 1 },
  94. #endif
  95. #if ARCH_ARM
  96. { "SIMPLE-ARM", ff_simple_idct_arm, FF_IDCT_PERM_NONE },
  97. { "INT-ARM", ff_j_rev_dct_arm, FF_IDCT_PERM_LIBMPEG2 },
  98. #endif
  99. #if HAVE_ARMV5TE
  100. { "SIMPLE-ARMV5TE", ff_simple_idct_armv5te, FF_IDCT_PERM_NONE, AV_CPU_FLAG_ARMV5TE },
  101. #endif
  102. #if HAVE_ARMV6
  103. { "SIMPLE-ARMV6", ff_simple_idct_armv6, FF_IDCT_PERM_LIBMPEG2, AV_CPU_FLAG_ARMV6 },
  104. #endif
  105. #if HAVE_NEON && ARCH_ARM
  106. { "SIMPLE-NEON", ff_simple_idct_neon, FF_IDCT_PERM_PARTTRANS, AV_CPU_FLAG_NEON },
  107. #endif
  108. { 0 }
  109. };
  110. #define AANSCALE_BITS 12
  111. #define NB_ITS 20000
  112. #define NB_ITS_SPEED 50000
  113. static short idct_simple_mmx_perm[64] = {
  114. 0x00, 0x08, 0x04, 0x09, 0x01, 0x0C, 0x05, 0x0D,
  115. 0x10, 0x18, 0x14, 0x19, 0x11, 0x1C, 0x15, 0x1D,
  116. 0x20, 0x28, 0x24, 0x29, 0x21, 0x2C, 0x25, 0x2D,
  117. 0x12, 0x1A, 0x16, 0x1B, 0x13, 0x1E, 0x17, 0x1F,
  118. 0x02, 0x0A, 0x06, 0x0B, 0x03, 0x0E, 0x07, 0x0F,
  119. 0x30, 0x38, 0x34, 0x39, 0x31, 0x3C, 0x35, 0x3D,
  120. 0x22, 0x2A, 0x26, 0x2B, 0x23, 0x2E, 0x27, 0x2F,
  121. 0x32, 0x3A, 0x36, 0x3B, 0x33, 0x3E, 0x37, 0x3F,
  122. };
  123. static const uint8_t idct_sse2_row_perm[8] = { 0, 4, 1, 5, 2, 6, 3, 7 };
  124. DECLARE_ALIGNED(16, static int16_t, block)[64];
  125. DECLARE_ALIGNED(8, static int16_t, block1)[64];
  126. static void init_block(int16_t block[64], int test, int is_idct, AVLFG *prng)
  127. {
  128. int i, j;
  129. memset(block, 0, 64 * sizeof(*block));
  130. switch (test) {
  131. case 0:
  132. for (i = 0; i < 64; i++)
  133. block[i] = (av_lfg_get(prng) % 512) - 256;
  134. if (is_idct) {
  135. ff_ref_fdct(block);
  136. for (i = 0; i < 64; i++)
  137. block[i] >>= 3;
  138. }
  139. break;
  140. case 1:
  141. j = av_lfg_get(prng) % 10 + 1;
  142. for (i = 0; i < j; i++)
  143. block[av_lfg_get(prng) % 64] = av_lfg_get(prng) % 512 - 256;
  144. break;
  145. case 2:
  146. block[ 0] = av_lfg_get(prng) % 4096 - 2048;
  147. block[63] = (block[0] & 1) ^ 1;
  148. break;
  149. }
  150. }
  151. static void permute(int16_t dst[64], const int16_t src[64],
  152. enum idct_permutation_type perm_type)
  153. {
  154. int i;
  155. switch (perm_type) {
  156. case FF_IDCT_PERM_LIBMPEG2:
  157. for (i = 0; i < 64; i++)
  158. dst[(i & 0x38) | ((i & 6) >> 1) | ((i & 1) << 2)] = src[i];
  159. break;
  160. case FF_IDCT_PERM_SIMPLE:
  161. for (i = 0; i < 64; i++)
  162. dst[idct_simple_mmx_perm[i]] = src[i];
  163. break;
  164. case FF_IDCT_PERM_SSE2:
  165. for (i = 0; i < 64; i++)
  166. dst[(i & 0x38) | idct_sse2_row_perm[i & 7]] = src[i];
  167. break;
  168. case FF_IDCT_PERM_PARTTRANS:
  169. for (i = 0; i < 64; i++)
  170. dst[(i & 0x24) | ((i & 3) << 3) | ((i >> 3) & 3)] = src[i];
  171. break;
  172. default:
  173. for (i = 0; i < 64; i++)
  174. dst[i] = src[i];
  175. break;
  176. }
  177. }
  178. static int dct_error(const struct algo *dct, int test, int is_idct, int speed)
  179. {
  180. void (*ref)(int16_t *block) = is_idct ? ff_ref_idct : ff_ref_fdct;
  181. int it, i, scale;
  182. int err_inf, v;
  183. int64_t err2, ti, ti1, it1, err_sum = 0;
  184. int64_t sysErr[64], sysErrMax = 0;
  185. int maxout = 0;
  186. int blockSumErrMax = 0, blockSumErr;
  187. AVLFG prng;
  188. double omse, ome;
  189. int spec_err;
  190. av_lfg_init(&prng, 1);
  191. err_inf = 0;
  192. err2 = 0;
  193. for (i = 0; i < 64; i++)
  194. sysErr[i] = 0;
  195. for (it = 0; it < NB_ITS; it++) {
  196. init_block(block1, test, is_idct, &prng);
  197. permute(block, block1, dct->perm_type);
  198. dct->func(block);
  199. emms_c();
  200. if (!strcmp(dct->name, "IJG-AAN-INT")) {
  201. for (i = 0; i < 64; i++) {
  202. scale = 8 * (1 << (AANSCALE_BITS + 11)) / ff_aanscales[i];
  203. block[i] = (block[i] * scale) >> AANSCALE_BITS;
  204. }
  205. }
  206. ref(block1);
  207. blockSumErr = 0;
  208. for (i = 0; i < 64; i++) {
  209. int err = block[i] - block1[i];
  210. err_sum += err;
  211. v = abs(err);
  212. if (v > err_inf)
  213. err_inf = v;
  214. err2 += v * v;
  215. sysErr[i] += block[i] - block1[i];
  216. blockSumErr += v;
  217. if (abs(block[i]) > maxout)
  218. maxout = abs(block[i]);
  219. }
  220. if (blockSumErrMax < blockSumErr)
  221. blockSumErrMax = blockSumErr;
  222. }
  223. for (i = 0; i < 64; i++)
  224. sysErrMax = FFMAX(sysErrMax, FFABS(sysErr[i]));
  225. for (i = 0; i < 64; i++) {
  226. if (i % 8 == 0)
  227. printf("\n");
  228. printf("%7d ", (int) sysErr[i]);
  229. }
  230. printf("\n");
  231. omse = (double) err2 / NB_ITS / 64;
  232. ome = (double) err_sum / NB_ITS / 64;
  233. spec_err = is_idct && (err_inf > 1 || omse > 0.02 || fabs(ome) > 0.0015);
  234. printf("%s %s: ppe=%d omse=%0.8f ome=%0.8f syserr=%0.8f maxout=%d blockSumErr=%d\n",
  235. is_idct ? "IDCT" : "DCT", dct->name, err_inf,
  236. omse, ome, (double) sysErrMax / NB_ITS,
  237. maxout, blockSumErrMax);
  238. if (spec_err && !dct->nonspec)
  239. return 1;
  240. if (!speed)
  241. return 0;
  242. /* speed test */
  243. init_block(block, test, is_idct, &prng);
  244. permute(block1, block, dct->perm_type);
  245. ti = av_gettime();
  246. it1 = 0;
  247. do {
  248. for (it = 0; it < NB_ITS_SPEED; it++) {
  249. memcpy(block, block1, sizeof(block));
  250. dct->func(block);
  251. }
  252. it1 += NB_ITS_SPEED;
  253. ti1 = av_gettime() - ti;
  254. } while (ti1 < 1000000);
  255. emms_c();
  256. printf("%s %s: %0.1f kdct/s\n", is_idct ? "IDCT" : "DCT", dct->name,
  257. (double) it1 * 1000.0 / (double) ti1);
  258. return 0;
  259. }
  260. DECLARE_ALIGNED(8, static uint8_t, img_dest)[64];
  261. DECLARE_ALIGNED(8, static uint8_t, img_dest1)[64];
  262. static void idct248_ref(uint8_t *dest, int linesize, int16_t *block)
  263. {
  264. static int init;
  265. static double c8[8][8];
  266. static double c4[4][4];
  267. double block1[64], block2[64], block3[64];
  268. double s, sum, v;
  269. int i, j, k;
  270. if (!init) {
  271. init = 1;
  272. for (i = 0; i < 8; i++) {
  273. sum = 0;
  274. for (j = 0; j < 8; j++) {
  275. s = (i == 0) ? sqrt(1.0 / 8.0) : sqrt(1.0 / 4.0);
  276. c8[i][j] = s * cos(M_PI * i * (j + 0.5) / 8.0);
  277. sum += c8[i][j] * c8[i][j];
  278. }
  279. }
  280. for (i = 0; i < 4; i++) {
  281. sum = 0;
  282. for (j = 0; j < 4; j++) {
  283. s = (i == 0) ? sqrt(1.0 / 4.0) : sqrt(1.0 / 2.0);
  284. c4[i][j] = s * cos(M_PI * i * (j + 0.5) / 4.0);
  285. sum += c4[i][j] * c4[i][j];
  286. }
  287. }
  288. }
  289. /* butterfly */
  290. s = 0.5 * sqrt(2.0);
  291. for (i = 0; i < 4; i++) {
  292. for (j = 0; j < 8; j++) {
  293. block1[8 * (2 * i) + j] =
  294. (block[8 * (2 * i) + j] + block[8 * (2 * i + 1) + j]) * s;
  295. block1[8 * (2 * i + 1) + j] =
  296. (block[8 * (2 * i) + j] - block[8 * (2 * i + 1) + j]) * s;
  297. }
  298. }
  299. /* idct8 on lines */
  300. for (i = 0; i < 8; i++) {
  301. for (j = 0; j < 8; j++) {
  302. sum = 0;
  303. for (k = 0; k < 8; k++)
  304. sum += c8[k][j] * block1[8 * i + k];
  305. block2[8 * i + j] = sum;
  306. }
  307. }
  308. /* idct4 */
  309. for (i = 0; i < 8; i++) {
  310. for (j = 0; j < 4; j++) {
  311. /* top */
  312. sum = 0;
  313. for (k = 0; k < 4; k++)
  314. sum += c4[k][j] * block2[8 * (2 * k) + i];
  315. block3[8 * (2 * j) + i] = sum;
  316. /* bottom */
  317. sum = 0;
  318. for (k = 0; k < 4; k++)
  319. sum += c4[k][j] * block2[8 * (2 * k + 1) + i];
  320. block3[8 * (2 * j + 1) + i] = sum;
  321. }
  322. }
  323. /* clamp and store the result */
  324. for (i = 0; i < 8; i++) {
  325. for (j = 0; j < 8; j++) {
  326. v = block3[8 * i + j];
  327. if (v < 0) v = 0;
  328. else if (v > 255) v = 255;
  329. dest[i * linesize + j] = (int) rint(v);
  330. }
  331. }
  332. }
  333. static void idct248_error(const char *name,
  334. void (*idct248_put)(uint8_t *dest, int line_size,
  335. int16_t *block),
  336. int speed)
  337. {
  338. int it, i, it1, ti, ti1, err_max, v;
  339. AVLFG prng;
  340. av_lfg_init(&prng, 1);
  341. /* just one test to see if code is correct (precision is less
  342. important here) */
  343. err_max = 0;
  344. for (it = 0; it < NB_ITS; it++) {
  345. /* XXX: use forward transform to generate values */
  346. for (i = 0; i < 64; i++)
  347. block1[i] = av_lfg_get(&prng) % 256 - 128;
  348. block1[0] += 1024;
  349. for (i = 0; i < 64; i++)
  350. block[i] = block1[i];
  351. idct248_ref(img_dest1, 8, block);
  352. for (i = 0; i < 64; i++)
  353. block[i] = block1[i];
  354. idct248_put(img_dest, 8, block);
  355. for (i = 0; i < 64; i++) {
  356. v = abs((int) img_dest[i] - (int) img_dest1[i]);
  357. if (v == 255)
  358. printf("%d %d\n", img_dest[i], img_dest1[i]);
  359. if (v > err_max)
  360. err_max = v;
  361. }
  362. }
  363. printf("%s %s: err_inf=%d\n", 1 ? "IDCT248" : "DCT248", name, err_max);
  364. if (!speed)
  365. return;
  366. ti = av_gettime();
  367. it1 = 0;
  368. do {
  369. for (it = 0; it < NB_ITS_SPEED; it++) {
  370. for (i = 0; i < 64; i++)
  371. block[i] = block1[i];
  372. idct248_put(img_dest, 8, block);
  373. }
  374. it1 += NB_ITS_SPEED;
  375. ti1 = av_gettime() - ti;
  376. } while (ti1 < 1000000);
  377. emms_c();
  378. printf("%s %s: %0.1f kdct/s\n", 1 ? "IDCT248" : "DCT248", name,
  379. (double) it1 * 1000.0 / (double) ti1);
  380. }
  381. static void help(void)
  382. {
  383. printf("dct-test [-i] [<test-number>]\n"
  384. "test-number 0 -> test with random matrixes\n"
  385. " 1 -> test with random sparse matrixes\n"
  386. " 2 -> do 3. test from mpeg4 std\n"
  387. "-i test IDCT implementations\n"
  388. "-4 test IDCT248 implementations\n"
  389. "-t speed test\n");
  390. }
  391. #if !HAVE_GETOPT
  392. #include "compat/getopt.c"
  393. #endif
  394. int main(int argc, char **argv)
  395. {
  396. int test_idct = 0, test_248_dct = 0;
  397. int c, i;
  398. int test = 1;
  399. int speed = 0;
  400. int err = 0;
  401. ff_ref_dct_init();
  402. for (;;) {
  403. c = getopt(argc, argv, "ih4t");
  404. if (c == -1)
  405. break;
  406. switch (c) {
  407. case 'i':
  408. test_idct = 1;
  409. break;
  410. case '4':
  411. test_248_dct = 1;
  412. break;
  413. case 't':
  414. speed = 1;
  415. break;
  416. default:
  417. case 'h':
  418. help();
  419. return 0;
  420. }
  421. }
  422. if (optind < argc)
  423. test = atoi(argv[optind]);
  424. printf("Libav DCT/IDCT test\n");
  425. if (test_248_dct) {
  426. idct248_error("SIMPLE-C", ff_simple_idct248_put, speed);
  427. } else {
  428. const int cpu_flags = av_get_cpu_flags();
  429. const struct algo *algos = test_idct ? idct_tab : fdct_tab;
  430. for (i = 0; algos[i].name; i++)
  431. if (!(~cpu_flags & algos[i].cpu_flag)) {
  432. err |= dct_error(&algos[i], test, test_idct, speed);
  433. }
  434. }
  435. if (err)
  436. printf("Error: %d.\n", err);
  437. return !!err;
  438. }