diff options
author | Ramiro Polla <ramiro.polla@gmail.com> | 2010-07-22 19:05:10 +0000 |
---|---|---|
committer | Ramiro Polla <ramiro.polla@gmail.com> | 2010-07-22 19:05:10 +0000 |
commit | 9bb9875eb746d10ec69f5c63fce80c11e594bce2 (patch) | |
tree | 11b846e29d9562851e27d4a11adeecc773cac6ac /libswscale | |
parent | b6f1e7ec44dfaa7c8a49c14221b977d4052adb4d (diff) | |
download | ffmpeg-9bb9875eb746d10ec69f5c63fce80c11e594bce2.tar.gz |
swscale-test: use only 3 characters to print width/height since they're always
smaller than 1000
Originally committed as revision 31771 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale')
-rw-r--r-- | libswscale/swscale-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/swscale-test.c b/libswscale/swscale-test.c index aaf0280940..c1dca198a4 100644 --- a/libswscale/swscale-test.c +++ b/libswscale/swscale-test.c @@ -149,7 +149,7 @@ static int doTest(uint8_t *ref[4], int refStride[4], int w, int h, // 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 %4dx%4d flags=%2d", + printf(" %s %dx%d -> %s %3dx%3d flags=%2d", av_pix_fmt_descriptors[srcFormat].name, srcW, srcH, av_pix_fmt_descriptors[dstFormat].name, dstW, dstH, flags); |