Commit f1105108 authored by sdrik's avatar sdrik

Fix chroma shift when scaling from ARGB on LE and BGRA on BE

git-svn-id: file:///var/local/repositories/mplayer/trunk/libswscale@29242 b3059339-0415-0410-9bf9-f77b7e298cf2
parent 01f5fe77
......@@ -2533,7 +2533,7 @@ inline static void RENAME(hcscale)(SwsContext *c, uint16_t *dst, long dstWidth,
if (isGray(srcFormat) || srcFormat==PIX_FMT_MONOBLACK || srcFormat==PIX_FMT_MONOWHITE)
return;
if (srcFormat==PIX_FMT_RGB32_1) {
if (srcFormat==PIX_FMT_RGB32_1 || srcFormat==PIX_FMT_BGR32_1) {
src1 += ALT32_CORR;
src2 += ALT32_CORR;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment