mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-04 06:08:26 +02:00
Prefer "to %s%s" over "to%s %s", slightly more readable.
Originally committed as revision 30330 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
This commit is contained in:
parent
a9e2878c48
commit
c70f1401df
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user