[FFmpeg-cvslog] r30330 - trunk/libswscale/swscale.c

stefano subversion
Sat Jan 16 20:14:29 CET 2010


Author: stefano
Date: Sat Jan 16 20:14:29 2010
New Revision: 30330

Log:
Prefer "to %s%s" over "to%s %s", slightly more readable.

Modified:
   trunk/libswscale/swscale.c

Modified: trunk/libswscale/swscale.c
==============================================================================
--- trunk/libswscale/swscale.c	Sat Jan 16 20:11:03 2010	(r30329)
+++ trunk/libswscale/swscale.c	Sat Jan 16 20:14:29 2010	(r30330)
@@ -2834,10 +2834,10 @@ SwsContext *sws_getContext(int srcW, int
         else
             av_log(c, AV_LOG_INFO, "ehh flags invalid?! ");
 
-        av_log(c, AV_LOG_INFO, "from %s to%s %s ",
+        av_log(c, AV_LOG_INFO, "from %s to %s%s ",
                sws_format_name(srcFormat),
 #ifdef DITHER1XBPP
-               dstFormat == PIX_FMT_BGR555 || dstFormat == PIX_FMT_BGR565 ? " dithered" : "",
+               dstFormat == PIX_FMT_BGR555 || dstFormat == PIX_FMT_BGR565 ? "dithered " : "",
 #else
                "",
 #endif



More information about the ffmpeg-cvslog mailing list