[FFmpeg-cvslog] r29107 - trunk/libswscale/swscale-example.c

reimar subversion
Mon Mar 30 14:23:29 CEST 2009


Author: reimar
Date: Mon Mar 30 14:23:28 2009
New Revision: 29107

Log:
Use correct PRId64 instead of "lld" in printf string, fixes compiler warnings.

Modified:
   trunk/libswscale/swscale-example.c

Modified: trunk/libswscale/swscale-example.c
==============================================================================
--- trunk/libswscale/swscale-example.c	Mon Mar 30 14:11:12 2009	(r29106)
+++ trunk/libswscale/swscale-example.c	Mon Mar 30 14:23:28 2009	(r29107)
@@ -132,7 +132,7 @@ static int doTest(uint8_t *ref[4], int r
     ssdV/= w*h/4;
     ssdA/= w*h;
 
-    printf(" %s %dx%d -> %s %4dx%4d flags=%2d SSD=%5lld,%5lld,%5lld,%5lld\n",
+    printf(" %s %dx%d -> %s %4dx%4d flags=%2d SSD=%5"PRId64",%5"PRId64",%5"PRId64",%5"PRId64"\n",
            sws_format_name(srcFormat), srcW, srcH,
            sws_format_name(dstFormat), dstW, dstH,
            flags, ssdY, ssdU, ssdV, ssdA);



More information about the ffmpeg-cvslog mailing list