diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2008-10-23 19:20:14 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2008-10-23 19:20:14 +0000 |
commit | 76e9fd01dde9764b66b8021f627149ed43a2de8a (patch) | |
tree | 8982f6d129c641b56b2ca1e709e73994c72988c2 | |
parent | 522ce9578699c78782e6e6d8fc25808c48577b39 (diff) | |
download | ffmpeg-76e9fd01dde9764b66b8021f627149ed43a2de8a.tar.gz |
Cosmetics: alignment
Originally committed as revision 27818 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
-rw-r--r-- | libswscale/swscale.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libswscale/swscale.c b/libswscale/swscale.c index 1ad488c57f..a926bade05 100644 --- a/libswscale/swscale.c +++ b/libswscale/swscale.c @@ -2344,10 +2344,10 @@ SwsContext *sws_getContext(int srcW, int srcH, enum PixelFormat srcFormat, int d c->swScale= rgb2rgbWrapper; if ((usePal(srcFormat) && ( - dstFormat == PIX_FMT_RGB32 || + dstFormat == PIX_FMT_RGB32 || dstFormat == PIX_FMT_RGB32_1 || - dstFormat == PIX_FMT_RGB24 || - dstFormat == PIX_FMT_BGR32 || + dstFormat == PIX_FMT_RGB24 || + dstFormat == PIX_FMT_BGR32 || dstFormat == PIX_FMT_BGR32_1 || dstFormat == PIX_FMT_BGR24))) c->swScale= pal2rgbWrapper; |