diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-01-16 19:14:29 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-01-16 19:14:29 +0000 |
commit | c70f1401dfd29be1d0d7fbf5a87e532344350ae7 (patch) | |
tree | 55284eff7969c6d0d5db8efa5b151c4b49917cb7 | |
parent | a9e2878c48005eea2d7e7e285af5101608b79b43 (diff) | |
download | ffmpeg-c70f1401dfd29be1d0d7fbf5a87e532344350ae7.tar.gz |
Prefer "to %s%s" over "to%s %s", slightly more readable.
Originally committed as revision 30330 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
-rw-r--r-- | libswscale/swscale.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libswscale/swscale.c b/libswscale/swscale.c index dc97389fd0..bb274e6f57 100644 --- a/libswscale/swscale.c +++ b/libswscale/swscale.c @@ -2834,10 +2834,10 @@ SwsContext *sws_getContext(int srcW, int srcH, enum PixelFormat srcFormat, int d 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 |