diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-05-26 01:40:56 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-05-28 11:09:30 +0200 |
commit | 11f2eae2aeb3c5b8a1f59efb9ccd9144b3aa074f (patch) | |
tree | 3c972d55f5594d5f51126cb3debd5335b29ff9d0 /libswscale/swscale-test.c | |
parent | 5501afa6ee857693bf4fe745792ab7b79477f731 (diff) | |
download | ffmpeg-11f2eae2aeb3c5b8a1f59efb9ccd9144b3aa074f.tar.gz |
swscale: Remove commented-out printf cruft.
Diffstat (limited to 'libswscale/swscale-test.c')
-rw-r--r-- | libswscale/swscale-test.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/libswscale/swscale-test.c b/libswscale/swscale-test.c index 7f171ea725..888cbab26a 100644 --- a/libswscale/swscale-test.c +++ b/libswscale/swscale-test.c @@ -58,15 +58,11 @@ static uint64_t getSSD(uint8_t *src1, uint8_t *src2, int stride1, int stride2, i int x,y; uint64_t ssd=0; -//printf("%d %d\n", w, h); - for (y=0; y<h; y++) { for (x=0; x<w; x++) { int d= src1[x + y*stride1] - src2[x + y*stride2]; ssd+= d*d; -//printf("%d", abs(src1[x + y*stride1] - src2[x + y*stride2])/26 ); } -//printf("\n"); } return ssd; } @@ -162,8 +158,6 @@ static int doTest(uint8_t *ref[4], int refStride[4], int w, int h, goto end; } -// printf("test %X %X %X -> %X %X %X\n", (int)ref[0], (int)ref[1], (int)ref[2], -// (int)src[0], (int)src[1], (int)src[2]); printf(" %s %dx%d -> %s %3dx%3d flags=%2d", av_pix_fmt_descriptors[srcFormat].name, srcW, srcH, |