mirror of
https://github.com/librempeg/librempeg
synced 2024-11-23 19:58:59 +00:00
Fix chroma shift when scaling from ARGB on LE and BGRA on BE
Originally committed as revision 29242 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
This commit is contained in:
parent
418f77ec6e
commit
f267119786
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user