changeset 31705:41638ecd6025

swscale-test: use only 3 characters to print width/height since they're always smaller than 1000
author ramiro
date Thu, 22 Jul 2010 19:05:10 +0000
parents 3b0a05188b16
children 8e44769b4b4b
files libswscale/swscale-test.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libswscale/swscale-test.c	Thu Jul 22 19:02:49 2010 +0000
+++ b/libswscale/swscale-test.c	Thu Jul 22 19:05:10 2010 +0000
@@ -149,7 +149,7 @@
 //    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);