summaryrefslogtreecommitdiff
path: root/libavcodec/dct-test.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2011-04-29 19:05:40 +0200
committerDiego Biurrun <diego@biurrun.de>2011-04-29 20:00:53 +0200
commit2e15305b7088c9dfe1c8d29c248a9b49bcf0b0a3 (patch)
tree975487aadba34a6b14eea20ca282c60847fd7222 /libavcodec/dct-test.c
parent09cbf60f8eec65cc53c5931234476a9956cc27fd (diff)
Remove some disabled printf debug cruft.
Diffstat (limited to 'libavcodec/dct-test.c')
-rw-r--r--libavcodec/dct-test.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/libavcodec/dct-test.c b/libavcodec/dct-test.c
index c3c376e79f..d0fe34e1d7 100644
--- a/libavcodec/dct-test.c
+++ b/libavcodec/dct-test.c
@@ -493,25 +493,6 @@ static void idct248_error(const char *name,
if (v > err_max)
err_max = v;
}
-#if 0
- printf("ref=\n");
- for(i=0;i<8;i++) {
- int j;
- for(j=0;j<8;j++) {
- printf(" %3d", img_dest1[i*8+j]);
- }
- printf("\n");
- }
-
- printf("out=\n");
- for(i=0;i<8;i++) {
- int j;
- for(j=0;j<8;j++) {
- printf(" %3d", img_dest[i*8+j]);
- }
- printf("\n");
- }
-#endif
}
printf("%s %s: err_inf=%d\n",
1 ? "IDCT248" : "DCT248",