]> git.sesse.net Git - fjl/blobdiff - idct_test.c
Correct a presentation error.
[fjl] / idct_test.c
index b4cec384353703be6fb547b4db84114a1bb11eeb..e35a17b1b760edbe8ea104ea239abef5160ab7d4 100644 (file)
@@ -109,7 +109,7 @@ void test_performance(idct_func_t* idct)
        gettimeofday(&now, NULL);
 
        double diff = timediff(&start, &now);
-       printf("%u runs in %.2f seconds = %.2f DCTs/sec\n",
+       printf("%u runs in %.2f seconds = %.2f IDCTs/sec\n",
                num_runs, diff, num_runs / diff);
 }
 
@@ -130,6 +130,9 @@ int main(void)
        printf("idct_reference:\n");
        test_all_idct(idct_reference);
 
+       printf("idct_float:\n");
+       test_all_idct(idct_float);
+
        printf("All tests pass.\n");
        return 0;
 }