Merge "cwebp: fix jpg encodes on XP"

This commit is contained in:
pascal massimino 2012-10-09 00:04:19 -07:00 committed by Gerrit Code Review
commit cf1e90dec7

View File

@ -177,18 +177,19 @@ static HRESULT ReadPictureWithWIC(const char* filename,
IFS(IWICBitmapFrameDecode_GetPixelFormat(pFrame, &srcPixelFormat)); IFS(IWICBitmapFrameDecode_GetPixelFormat(pFrame, &srcPixelFormat));
IFS(IWICBitmapDecoder_GetContainerFormat(pDecoder, &srcContainerFormat)); IFS(IWICBitmapDecoder_GetContainerFormat(pDecoder, &srcContainerFormat));
has_alpha = keep_alpha; if (keep_alpha) {
for (i = 0; for (i = 0;
has_alpha && i < sizeof(alphaContainers)/sizeof(alphaContainers[0]); i < sizeof(alphaContainers) / sizeof(alphaContainers[0]);
++i) { ++i) {
if (IsEqualGUID(MAKE_REFGUID(srcContainerFormat), if (IsEqualGUID(MAKE_REFGUID(srcContainerFormat),
MAKE_REFGUID(*alphaContainers[i]))) { MAKE_REFGUID(*alphaContainers[i]))) {
has_alpha = has_alpha =
IsEqualGUID(MAKE_REFGUID(srcPixelFormat), IsEqualGUID(MAKE_REFGUID(srcPixelFormat),
MAKE_REFGUID(GUID_WICPixelFormat32bppRGBA_)) || MAKE_REFGUID(GUID_WICPixelFormat32bppRGBA_)) ||
IsEqualGUID(MAKE_REFGUID(srcPixelFormat), IsEqualGUID(MAKE_REFGUID(srcPixelFormat),
MAKE_REFGUID(GUID_WICPixelFormat32bppBGRA_)); MAKE_REFGUID(GUID_WICPixelFormat32bppBGRA_));
break; break;
}
} }
} }