mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2024-11-21 16:46:54 -08:00
Added patch to improve compatibility of IMILBitmapSource interface.
This commit is contained in:
parent
f98cec7cf6
commit
22ca9a3c6a
@ -345,6 +345,7 @@ patch_enable_all ()
|
||||
enable_wbemdisp_ISWbemSecurity="$1"
|
||||
enable_widl_SLTG_Typelib_Support="$1"
|
||||
enable_windowscodecs_32bppGrayFloat="$1"
|
||||
enable_windowscodecs_IMILBitmapSource="$1"
|
||||
enable_windowscodecs_WICCreateBitmapFromSection="$1"
|
||||
enable_wine_inf_Dummy_CA_Certificate="$1"
|
||||
enable_wine_inf_Performance="$1"
|
||||
@ -1208,6 +1209,9 @@ patch_enable ()
|
||||
windowscodecs-32bppGrayFloat)
|
||||
enable_windowscodecs_32bppGrayFloat="$2"
|
||||
;;
|
||||
windowscodecs-IMILBitmapSource)
|
||||
enable_windowscodecs_IMILBitmapSource="$2"
|
||||
;;
|
||||
windowscodecs-WICCreateBitmapFromSection)
|
||||
enable_windowscodecs_WICCreateBitmapFromSection="$2"
|
||||
;;
|
||||
@ -6955,6 +6959,23 @@ if test "$enable_windowscodecs_32bppGrayFloat" -eq 1; then
|
||||
) >> "$patchlist"
|
||||
fi
|
||||
|
||||
# Patchset windowscodecs-IMILBitmapSource
|
||||
# |
|
||||
# | This patchset fixes the following Wine bugs:
|
||||
# | * [#34764] Improve compatibility of IMILBitmapSource interface
|
||||
# |
|
||||
# | Modified files:
|
||||
# | * dlls/windowscodecs/bitmap.c, dlls/windowscodecs/scaler.c, dlls/windowscodecs/wincodecs_private.h
|
||||
# |
|
||||
if test "$enable_windowscodecs_IMILBitmapSource" -eq 1; then
|
||||
patch_apply windowscodecs-IMILBitmapSource/0001-windowscodecs-Improve-compatibility-of-IMILBitmapSou.patch
|
||||
patch_apply windowscodecs-IMILBitmapSource/0002-windowscodecs-Add-support-for-IMILBitmapScaler-inter.patch
|
||||
(
|
||||
echo '+ { "Dmitry Timoshkov", "windowscodecs: Improve compatibility of IMILBitmapSource interface.", 1 },';
|
||||
echo '+ { "Dmitry Timoshkov", "windowscodecs: Add support for IMILBitmapScaler interface.", 1 },';
|
||||
) >> "$patchlist"
|
||||
fi
|
||||
|
||||
# Patchset windowscodecs-WICCreateBitmapFromSection
|
||||
# |
|
||||
# | This patchset fixes the following Wine bugs:
|
||||
|
@ -0,0 +1,422 @@
|
||||
From 9660ba7e1e5e23b1fa2a3e7b434802bfdb8e187b Mon Sep 17 00:00:00 2001
|
||||
From: Dmitry Timoshkov <dmitry@baikal.ru>
|
||||
Date: Tue, 22 Mar 2016 23:46:30 +0800
|
||||
Subject: windowscodecs: Improve compatibility of IMILBitmapSource interface.
|
||||
|
||||
Based on Focht's investigation. This makes the test application attached
|
||||
to the bug 34764 work.
|
||||
---
|
||||
dlls/windowscodecs/bitmap.c | 181 ++++++++++++++++++++++++++-------
|
||||
dlls/windowscodecs/wincodecs_private.h | 58 +++++++++--
|
||||
2 files changed, 195 insertions(+), 44 deletions(-)
|
||||
|
||||
diff --git a/dlls/windowscodecs/bitmap.c b/dlls/windowscodecs/bitmap.c
|
||||
index 6adaab0..640e146 100644
|
||||
--- a/dlls/windowscodecs/bitmap.c
|
||||
+++ b/dlls/windowscodecs/bitmap.c
|
||||
@@ -135,6 +135,7 @@ static HRESULT WINAPI BitmapLockImpl_QueryInterface(IWICBitmapLock *iface, REFII
|
||||
}
|
||||
else
|
||||
{
|
||||
+ FIXME("unknown interface %s\n", debugstr_guid(iid));
|
||||
*ppv = NULL;
|
||||
return E_NOINTERFACE;
|
||||
}
|
||||
@@ -248,12 +249,14 @@ static HRESULT WINAPI BitmapImpl_QueryInterface(IWICBitmap *iface, REFIID iid,
|
||||
{
|
||||
*ppv = &This->IWICBitmap_iface;
|
||||
}
|
||||
- else if (IsEqualIID(&IID_IMILBitmapSource, iid))
|
||||
+ else if (IsEqualIID(&IID_IMILBitmap, iid) ||
|
||||
+ IsEqualIID(&IID_IMILBitmapSource, iid))
|
||||
{
|
||||
*ppv = &This->IMILBitmapSource_iface;
|
||||
}
|
||||
else
|
||||
{
|
||||
+ FIXME("unknown interface %s\n", debugstr_guid(iid));
|
||||
*ppv = NULL;
|
||||
return E_NOINTERFACE;
|
||||
}
|
||||
@@ -479,13 +482,22 @@ static HRESULT WINAPI IMILBitmapImpl_QueryInterface(IMILBitmapSource *iface, REF
|
||||
if (!ppv) return E_INVALIDARG;
|
||||
|
||||
if (IsEqualIID(&IID_IUnknown, iid) ||
|
||||
+ IsEqualIID(&IID_IMILBitmap, iid) ||
|
||||
IsEqualIID(&IID_IMILBitmapSource, iid))
|
||||
{
|
||||
IUnknown_AddRef(&This->IMILBitmapSource_iface);
|
||||
*ppv = &This->IMILBitmapSource_iface;
|
||||
return S_OK;
|
||||
}
|
||||
+ else if (IsEqualIID(&IID_IWICBitmap, iid) ||
|
||||
+ IsEqualIID(&IID_IWICBitmapSource, iid))
|
||||
+ {
|
||||
+ IUnknown_AddRef(&This->IWICBitmap_iface);
|
||||
+ *ppv = &This->IWICBitmap_iface;
|
||||
+ return S_OK;
|
||||
+ }
|
||||
|
||||
+ FIXME("unknown interface %s\n", debugstr_guid(iid));
|
||||
*ppv = NULL;
|
||||
return E_NOINTERFACE;
|
||||
}
|
||||
@@ -506,6 +518,7 @@ static HRESULT WINAPI IMILBitmapImpl_GetSize(IMILBitmapSource *iface,
|
||||
UINT *width, UINT *height)
|
||||
{
|
||||
BitmapImpl *This = impl_from_IMILBitmapSource(iface);
|
||||
+ TRACE("(%p,%p,%p)\n", iface, width, height);
|
||||
return IWICBitmap_GetSize(&This->IWICBitmap_iface, width, height);
|
||||
}
|
||||
|
||||
@@ -559,6 +572,7 @@ static HRESULT WINAPI IMILBitmapImpl_GetPixelFormat(IMILBitmapSource *iface,
|
||||
}
|
||||
}
|
||||
|
||||
+ TRACE("=> %u\n", *format);
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
@@ -566,6 +580,7 @@ static HRESULT WINAPI IMILBitmapImpl_GetResolution(IMILBitmapSource *iface,
|
||||
double *dpix, double *dpiy)
|
||||
{
|
||||
BitmapImpl *This = impl_from_IMILBitmapSource(iface);
|
||||
+ TRACE("(%p,%p,%p)\n", iface, dpix, dpiy);
|
||||
return IWICBitmap_GetResolution(&This->IWICBitmap_iface, dpix, dpiy);
|
||||
}
|
||||
|
||||
@@ -573,6 +588,7 @@ static HRESULT WINAPI IMILBitmapImpl_CopyPalette(IMILBitmapSource *iface,
|
||||
IWICPalette *palette)
|
||||
{
|
||||
BitmapImpl *This = impl_from_IMILBitmapSource(iface);
|
||||
+ TRACE("(%p,%p)\n", iface, palette);
|
||||
return IWICBitmap_CopyPalette(&This->IWICBitmap_iface, palette);
|
||||
}
|
||||
|
||||
@@ -580,10 +596,11 @@ static HRESULT WINAPI IMILBitmapImpl_CopyPixels(IMILBitmapSource *iface,
|
||||
const WICRect *rc, UINT stride, UINT size, BYTE *buffer)
|
||||
{
|
||||
BitmapImpl *This = impl_from_IMILBitmapSource(iface);
|
||||
+ TRACE("(%p,%p,%u,%u,%p)\n", iface, rc, stride, size, buffer);
|
||||
return IWICBitmap_CopyPixels(&This->IWICBitmap_iface, rc, stride, size, buffer);
|
||||
}
|
||||
|
||||
-static HRESULT WINAPI IMILBitmapImpl_UnknownMethod1(IMILBitmapSource *iface, void **ppv)
|
||||
+static HRESULT WINAPI IMILBitmapImpl_unknown1(IMILBitmapSource *iface, void **ppv)
|
||||
{
|
||||
BitmapImpl *This = impl_from_IMILBitmapSource(iface);
|
||||
|
||||
@@ -597,6 +614,40 @@ static HRESULT WINAPI IMILBitmapImpl_UnknownMethod1(IMILBitmapSource *iface, voi
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
+static HRESULT WINAPI IMILBitmapImpl_Lock(IMILBitmapSource *iface, const WICRect *rc, DWORD flags, IWICBitmapLock **lock)
|
||||
+{
|
||||
+ BitmapImpl *This = impl_from_IMILBitmapSource(iface);
|
||||
+ TRACE("(%p,%p,%08x,%p)\n", iface, rc, flags, lock);
|
||||
+ return IWICBitmap_Lock(&This->IWICBitmap_iface, rc, flags, lock);
|
||||
+}
|
||||
+
|
||||
+static HRESULT WINAPI IMILBitmapImpl_Unlock(IMILBitmapSource *iface, IWICBitmapLock *lock)
|
||||
+{
|
||||
+ TRACE("(%p,%p)\n", iface, lock);
|
||||
+ IWICBitmapLock_Release(lock);
|
||||
+ return S_OK;
|
||||
+}
|
||||
+
|
||||
+static HRESULT WINAPI IMILBitmapImpl_SetPalette(IMILBitmapSource *iface, IWICPalette *palette)
|
||||
+{
|
||||
+ BitmapImpl *This = impl_from_IMILBitmapSource(iface);
|
||||
+ TRACE("(%p,%p)\n", iface, palette);
|
||||
+ return IWICBitmap_SetPalette(&This->IWICBitmap_iface, palette);
|
||||
+}
|
||||
+
|
||||
+static HRESULT WINAPI IMILBitmapImpl_SetResolution(IMILBitmapSource *iface, double dpix, double dpiy)
|
||||
+{
|
||||
+ BitmapImpl *This = impl_from_IMILBitmapSource(iface);
|
||||
+ TRACE("(%p,%f,%f)\n", iface, dpix, dpiy);
|
||||
+ return IWICBitmap_SetResolution(&This->IWICBitmap_iface, dpix, dpiy);
|
||||
+}
|
||||
+
|
||||
+static HRESULT WINAPI IMILBitmapImpl_AddDirtyRect(IMILBitmapSource *iface, const WICRect *rc)
|
||||
+{
|
||||
+ FIXME("(%p,%p): stub\n", iface, rc);
|
||||
+ return E_NOTIMPL;
|
||||
+}
|
||||
+
|
||||
static const IMILBitmapSourceVtbl IMILBitmapImpl_Vtbl =
|
||||
{
|
||||
IMILBitmapImpl_QueryInterface,
|
||||
@@ -607,26 +658,20 @@ static const IMILBitmapSourceVtbl IMILBitmapImpl_Vtbl =
|
||||
IMILBitmapImpl_GetResolution,
|
||||
IMILBitmapImpl_CopyPalette,
|
||||
IMILBitmapImpl_CopyPixels,
|
||||
- IMILBitmapImpl_UnknownMethod1,
|
||||
+ IMILBitmapImpl_unknown1,
|
||||
+ IMILBitmapImpl_Lock,
|
||||
+ IMILBitmapImpl_Unlock,
|
||||
+ IMILBitmapImpl_SetPalette,
|
||||
+ IMILBitmapImpl_SetResolution,
|
||||
+ IMILBitmapImpl_AddDirtyRect
|
||||
};
|
||||
|
||||
static HRESULT WINAPI IMILUnknown1Impl_QueryInterface(IMILUnknown1 *iface, REFIID iid,
|
||||
void **ppv)
|
||||
{
|
||||
- BitmapImpl *This = impl_from_IMILUnknown1(iface);
|
||||
-
|
||||
- TRACE("(%p,%s,%p)\n", iface, debugstr_guid(iid), ppv);
|
||||
-
|
||||
- if (!ppv) return E_INVALIDARG;
|
||||
-
|
||||
- if (IsEqualIID(&IID_IUnknown, iid))
|
||||
- {
|
||||
- IUnknown_AddRef(&This->IMILUnknown1_iface);
|
||||
- *ppv = iface;
|
||||
- return S_OK;
|
||||
- }
|
||||
-
|
||||
- return IWICBitmap_QueryInterface(&This->IWICBitmap_iface, iid, ppv);
|
||||
+ FIXME("(%p,%s,%p): stub\n", iface, debugstr_guid(iid), ppv);
|
||||
+ *ppv = NULL;
|
||||
+ return E_NOINTERFACE;
|
||||
}
|
||||
|
||||
static ULONG WINAPI IMILUnknown1Impl_AddRef(IMILUnknown1 *iface)
|
||||
@@ -641,56 +686,118 @@ static ULONG WINAPI IMILUnknown1Impl_Release(IMILUnknown1 *iface)
|
||||
return IWICBitmap_Release(&This->IWICBitmap_iface);
|
||||
}
|
||||
|
||||
+DECLSPEC_HIDDEN void WINAPI IMILUnknown1Impl_unknown1(IMILUnknown1 *iface, void *arg)
|
||||
+{
|
||||
+ FIXME("(%p,%p): stub\n", iface, arg);
|
||||
+}
|
||||
+
|
||||
+static HRESULT WINAPI IMILUnknown1Impl_unknown2(IMILUnknown1 *iface, void *arg1, void *arg2)
|
||||
+{
|
||||
+ FIXME("(%p,%p,%p): stub\n", iface, arg1, arg2);
|
||||
+ return E_NOTIMPL;
|
||||
+}
|
||||
+
|
||||
+DECLSPEC_HIDDEN HRESULT WINAPI IMILUnknown1Impl_unknown3(IMILUnknown1 *iface, void *arg)
|
||||
+{
|
||||
+ FIXME("(%p,%p): stub\n", iface, arg);
|
||||
+ return E_NOTIMPL;
|
||||
+}
|
||||
+
|
||||
+static HRESULT WINAPI IMILUnknown1Impl_unknown4(IMILUnknown1 *iface, void *arg)
|
||||
+{
|
||||
+ FIXME("(%p,%p): stub\n", iface, arg);
|
||||
+ return E_NOTIMPL;
|
||||
+}
|
||||
+
|
||||
+static HRESULT WINAPI IMILUnknown1Impl_unknown5(IMILUnknown1 *iface, void *arg)
|
||||
+{
|
||||
+ FIXME("(%p,%p): stub\n", iface, arg);
|
||||
+ return E_NOTIMPL;
|
||||
+}
|
||||
+
|
||||
+static HRESULT WINAPI IMILUnknown1Impl_unknown6(IMILUnknown1 *iface, DWORD64 arg)
|
||||
+{
|
||||
+ FIXME("(%p,%s): stub\n", iface, wine_dbgstr_longlong(arg));
|
||||
+ return E_NOTIMPL;
|
||||
+}
|
||||
+
|
||||
+static HRESULT WINAPI IMILUnknown1Impl_unknown7(IMILUnknown1 *iface, void *arg)
|
||||
+{
|
||||
+ FIXME("(%p,%p): stub\n", iface, arg);
|
||||
+ return E_NOTIMPL;
|
||||
+}
|
||||
+
|
||||
+DECLSPEC_HIDDEN HRESULT WINAPI IMILUnknown1Impl_unknown8(IMILUnknown1 *iface)
|
||||
+{
|
||||
+ FIXME("(%p): stub\n", iface);
|
||||
+ return E_NOTIMPL;
|
||||
+}
|
||||
+
|
||||
+DEFINE_THISCALL_WRAPPER(IMILUnknown1Impl_unknown1, 8)
|
||||
+DEFINE_THISCALL_WRAPPER(IMILUnknown1Impl_unknown3, 8)
|
||||
+DEFINE_THISCALL_WRAPPER(IMILUnknown1Impl_unknown8, 4)
|
||||
+
|
||||
static const IMILUnknown1Vtbl IMILUnknown1Impl_Vtbl =
|
||||
{
|
||||
IMILUnknown1Impl_QueryInterface,
|
||||
IMILUnknown1Impl_AddRef,
|
||||
IMILUnknown1Impl_Release,
|
||||
+ THISCALL(IMILUnknown1Impl_unknown1),
|
||||
+ IMILUnknown1Impl_unknown2,
|
||||
+ THISCALL(IMILUnknown1Impl_unknown3),
|
||||
+ IMILUnknown1Impl_unknown4,
|
||||
+ IMILUnknown1Impl_unknown5,
|
||||
+ IMILUnknown1Impl_unknown6,
|
||||
+ IMILUnknown1Impl_unknown7,
|
||||
+ THISCALL(IMILUnknown1Impl_unknown8)
|
||||
};
|
||||
|
||||
static HRESULT WINAPI IMILUnknown2Impl_QueryInterface(IMILUnknown2 *iface, REFIID iid,
|
||||
void **ppv)
|
||||
{
|
||||
- BitmapImpl *This = impl_from_IMILUnknown2(iface);
|
||||
-
|
||||
- TRACE("(%p,%s,%p)\n", iface, debugstr_guid(iid), ppv);
|
||||
-
|
||||
- if (!ppv) return E_INVALIDARG;
|
||||
-
|
||||
- if (IsEqualIID(&IID_IUnknown, iid))
|
||||
- {
|
||||
- IUnknown_AddRef(&This->IMILUnknown2_iface);
|
||||
- *ppv = iface;
|
||||
- return S_OK;
|
||||
- }
|
||||
-
|
||||
- return IWICBitmap_QueryInterface(&This->IWICBitmap_iface, iid, ppv);
|
||||
+ FIXME("(%p,%s,%p): stub\n", iface, debugstr_guid(iid), ppv);
|
||||
+ *ppv = NULL;
|
||||
+ return E_NOINTERFACE;
|
||||
}
|
||||
|
||||
static ULONG WINAPI IMILUnknown2Impl_AddRef(IMILUnknown2 *iface)
|
||||
{
|
||||
- BitmapImpl *This = impl_from_IMILUnknown2(iface);
|
||||
- return IWICBitmap_AddRef(&This->IWICBitmap_iface);
|
||||
+ FIXME("(%p): stub\n", iface);
|
||||
+ return 0;
|
||||
}
|
||||
|
||||
static ULONG WINAPI IMILUnknown2Impl_Release(IMILUnknown2 *iface)
|
||||
{
|
||||
- BitmapImpl *This = impl_from_IMILUnknown2(iface);
|
||||
- return IWICBitmap_Release(&This->IWICBitmap_iface);
|
||||
+ FIXME("(%p): stub\n", iface);
|
||||
+ return 0;
|
||||
}
|
||||
|
||||
-static HRESULT WINAPI IMILUnknown2Impl_UnknownMethod1(IMILUnknown2 *iface, void *arg1, void *arg2)
|
||||
+static HRESULT WINAPI IMILUnknown2Impl_unknown1(IMILUnknown2 *iface, void *arg1, void *arg2)
|
||||
{
|
||||
FIXME("(%p,%p,%p): stub\n", iface, arg1, arg2);
|
||||
return E_NOTIMPL;
|
||||
}
|
||||
|
||||
+static HRESULT WINAPI IMILUnknown2Impl_unknown2(IMILUnknown2 *iface)
|
||||
+{
|
||||
+ FIXME("(%p): stub\n", iface);
|
||||
+ return E_NOTIMPL;
|
||||
+}
|
||||
+
|
||||
+static HRESULT WINAPI IMILUnknown2Impl_unknown3(IMILUnknown2 *iface, void *arg1)
|
||||
+{
|
||||
+ FIXME("(%p,%p): stub\n", iface, arg1);
|
||||
+ return E_NOTIMPL;
|
||||
+}
|
||||
+
|
||||
static const IMILUnknown2Vtbl IMILUnknown2Impl_Vtbl =
|
||||
{
|
||||
IMILUnknown2Impl_QueryInterface,
|
||||
IMILUnknown2Impl_AddRef,
|
||||
IMILUnknown2Impl_Release,
|
||||
- IMILUnknown2Impl_UnknownMethod1,
|
||||
+ IMILUnknown2Impl_unknown1,
|
||||
+ IMILUnknown2Impl_unknown2,
|
||||
+ IMILUnknown2Impl_unknown3
|
||||
};
|
||||
|
||||
HRESULT BitmapImpl_Create(UINT uiWidth, UINT uiHeight,
|
||||
diff --git a/dlls/windowscodecs/wincodecs_private.h b/dlls/windowscodecs/wincodecs_private.h
|
||||
index f54403c..2bd109e 100644
|
||||
--- a/dlls/windowscodecs/wincodecs_private.h
|
||||
+++ b/dlls/windowscodecs/wincodecs_private.h
|
||||
@@ -30,7 +30,13 @@ DEFINE_GUID(GUID_WineContainerFormatTga, 0x0c44fda1,0xa5c5,0x4298,0x96,0x85,0x47
|
||||
|
||||
DEFINE_GUID(GUID_VendorWine, 0xddf46da1,0x7dc1,0x404e,0x98,0xf2,0xef,0xa4,0x8d,0xfc,0x95,0x0a);
|
||||
|
||||
+DEFINE_GUID(IID_IMILBitmap,0xb1784d3f,0x8115,0x4763,0x13,0xaa,0x32,0xed,0xdb,0x68,0x29,0x4a);
|
||||
DEFINE_GUID(IID_IMILBitmapSource,0x7543696a,0xbc8d,0x46b0,0x5f,0x81,0x8d,0x95,0x72,0x89,0x72,0xbe);
|
||||
+DEFINE_GUID(IID_IMILBitmapLock,0xa67b2b53,0x8fa1,0x4155,0x8f,0x64,0x0c,0x24,0x7a,0x8f,0x84,0xcd);
|
||||
+DEFINE_GUID(IID_IMILBitmapScaler,0xa767b0f0,0x1c8c,0x4aef,0x56,0x8f,0xad,0xf9,0x6d,0xcf,0xd5,0xcb);
|
||||
+DEFINE_GUID(IID_IMILFormatConverter,0x7e2a746f,0x25c5,0x4851,0xb3,0xaf,0x44,0x3b,0x79,0x63,0x9e,0xc0);
|
||||
+DEFINE_GUID(IID_IMILPalette,0xca8e206f,0xf22c,0x4af7,0x6f,0xba,0x7b,0xed,0x5e,0xb1,0xc9,0x2f);
|
||||
+
|
||||
#define INTERFACE IMILBitmapSource
|
||||
DECLARE_INTERFACE_(IMILBitmapSource,IUnknown)
|
||||
{
|
||||
@@ -38,16 +44,39 @@ DECLARE_INTERFACE_(IMILBitmapSource,IUnknown)
|
||||
STDMETHOD_(HRESULT,QueryInterface)(THIS_ REFIID,void **) PURE;
|
||||
STDMETHOD_(ULONG,AddRef)(THIS) PURE;
|
||||
STDMETHOD_(ULONG,Release)(THIS) PURE;
|
||||
+ /*** IWICBitmapSource methods ***/
|
||||
+ STDMETHOD_(HRESULT,GetSize)(THIS_ UINT *,UINT *) PURE;
|
||||
+ STDMETHOD_(HRESULT,GetPixelFormat)(THIS_ int *) PURE;
|
||||
+ STDMETHOD_(HRESULT,GetResolution)(THIS_ double *,double *) PURE;
|
||||
+ STDMETHOD_(HRESULT,CopyPalette)(THIS_ IWICPalette *) PURE;
|
||||
+ STDMETHOD_(HRESULT,CopyPixels)(THIS_ const WICRect *,UINT,UINT,BYTE *) PURE;
|
||||
/*** IMILBitmapSource methods ***/
|
||||
- STDMETHOD_(HRESULT,GetSize)(THIS_ UINT *,UINT *);
|
||||
- STDMETHOD_(HRESULT,GetPixelFormat)(THIS_ int *);
|
||||
- STDMETHOD_(HRESULT,GetResolution)(THIS_ double *,double *);
|
||||
- STDMETHOD_(HRESULT,CopyPalette)(THIS_ IWICPalette *);
|
||||
- STDMETHOD_(HRESULT,CopyPixels)(THIS_ const WICRect *,UINT,UINT,BYTE *);
|
||||
- STDMETHOD_(HRESULT,UnknownMethod1)(THIS_ void **);
|
||||
+ STDMETHOD_(HRESULT,unknown1)(THIS_ void **) PURE;
|
||||
+ STDMETHOD_(HRESULT,Lock)(THIS_ const WICRect *,DWORD,IWICBitmapLock **) PURE;
|
||||
+ STDMETHOD_(HRESULT,Unlock)(THIS_ IWICBitmapLock *) PURE;
|
||||
+ STDMETHOD_(HRESULT,SetPalette)(THIS_ IWICPalette *) PURE;
|
||||
+ STDMETHOD_(HRESULT,SetResolution)(THIS_ double,double) PURE;
|
||||
+ STDMETHOD_(HRESULT,AddDirtyRect)(THIS_ const WICRect *) PURE;
|
||||
};
|
||||
#undef INTERFACE
|
||||
|
||||
+#ifdef __i386__ /* thiscall functions are i386-specific */
|
||||
+
|
||||
+#define THISCALL(func) __thiscall_ ## func
|
||||
+#define DEFINE_THISCALL_WRAPPER(func,args) \
|
||||
+ extern typeof(func) THISCALL(func); \
|
||||
+ __ASM_STDCALL_FUNC(__thiscall_ ## func, args, \
|
||||
+ "popl %eax\n\t" \
|
||||
+ "pushl %ecx\n\t" \
|
||||
+ "pushl %eax\n\t" \
|
||||
+ "jmp " __ASM_NAME(#func) __ASM_STDCALL(args) )
|
||||
+#else /* __i386__ */
|
||||
+
|
||||
+#define THISCALL(func) func
|
||||
+#define DEFINE_THISCALL_WRAPPER(func,args) /* nothing */
|
||||
+
|
||||
+#endif /* __i386__ */
|
||||
+
|
||||
#define INTERFACE IMILUnknown1
|
||||
DECLARE_INTERFACE_(IMILUnknown1,IUnknown)
|
||||
{
|
||||
@@ -55,6 +84,19 @@ DECLARE_INTERFACE_(IMILUnknown1,IUnknown)
|
||||
STDMETHOD_(HRESULT,QueryInterface)(THIS_ REFIID,void **) PURE;
|
||||
STDMETHOD_(ULONG,AddRef)(THIS) PURE;
|
||||
STDMETHOD_(ULONG,Release)(THIS) PURE;
|
||||
+ /*** thiscall method ***/
|
||||
+ STDMETHOD_(void,unknown1)(THIS_ void*) PURE;
|
||||
+ /*** stdcall ***/
|
||||
+ STDMETHOD_(HRESULT,unknown2)(THIS_ void*, void*) PURE;
|
||||
+ /*** thiscall method ***/
|
||||
+ STDMETHOD_(HRESULT,unknown3)(THIS_ void*) PURE;
|
||||
+ /*** stdcall ***/
|
||||
+ STDMETHOD_(HRESULT,unknown4)(THIS_ void*) PURE;
|
||||
+ STDMETHOD_(HRESULT,unknown5)(THIS_ void*) PURE;
|
||||
+ STDMETHOD_(HRESULT,unknown6)(THIS_ DWORD64) PURE;
|
||||
+ STDMETHOD_(HRESULT,unknown7)(THIS_ void*) PURE;
|
||||
+ /*** thiscall method ***/
|
||||
+ STDMETHOD_(HRESULT,unknown8)(THIS) PURE;
|
||||
};
|
||||
#undef INTERFACE
|
||||
|
||||
@@ -66,7 +108,9 @@ DECLARE_INTERFACE_(IMILUnknown2,IUnknown)
|
||||
STDMETHOD_(ULONG,AddRef)(THIS) PURE;
|
||||
STDMETHOD_(ULONG,Release)(THIS) PURE;
|
||||
/*** unknown methods ***/
|
||||
- STDMETHOD_(HRESULT,UnknownMethod1)(THIS_ void *, void *) PURE;
|
||||
+ STDMETHOD_(HRESULT,unknown1)(THIS_ void *,void *) PURE;
|
||||
+ STDMETHOD_(HRESULT,unknown2)(THIS) PURE;
|
||||
+ STDMETHOD_(HRESULT,unknown3)(THIS_ void *) PURE;
|
||||
};
|
||||
#undef INTERFACE
|
||||
|
||||
--
|
||||
2.7.1
|
||||
|
@ -0,0 +1,242 @@
|
||||
From 952d0942370202498e2a93f96ead1733ce6fdff8 Mon Sep 17 00:00:00 2001
|
||||
From: Dmitry Timoshkov <dmitry@baikal.ru>
|
||||
Date: Tue, 22 Mar 2016 23:49:42 +0800
|
||||
Subject: windowscodecs: Add support for IMILBitmapScaler interface.
|
||||
|
||||
This patch makes the GOG downloader work.
|
||||
---
|
||||
dlls/windowscodecs/scaler.c | 157 +++++++++++++++++++++++++++++++++
|
||||
dlls/windowscodecs/wincodecs_private.h | 19 ++++
|
||||
2 files changed, 176 insertions(+)
|
||||
|
||||
diff --git a/dlls/windowscodecs/scaler.c b/dlls/windowscodecs/scaler.c
|
||||
index ebcc790..b4d6f75 100644
|
||||
--- a/dlls/windowscodecs/scaler.c
|
||||
+++ b/dlls/windowscodecs/scaler.c
|
||||
@@ -35,6 +35,7 @@ WINE_DEFAULT_DEBUG_CHANNEL(wincodecs);
|
||||
typedef struct BitmapScaler {
|
||||
IWICBitmapScaler IWICBitmapScaler_iface;
|
||||
LONG ref;
|
||||
+ IMILBitmapScaler IMILBitmapScaler_iface;
|
||||
IWICBitmapSource *source;
|
||||
UINT width, height;
|
||||
UINT src_width, src_height;
|
||||
@@ -50,6 +51,11 @@ static inline BitmapScaler *impl_from_IWICBitmapScaler(IWICBitmapScaler *iface)
|
||||
return CONTAINING_RECORD(iface, BitmapScaler, IWICBitmapScaler_iface);
|
||||
}
|
||||
|
||||
+static inline BitmapScaler *impl_from_IMILBitmapScaler(IMILBitmapScaler *iface)
|
||||
+{
|
||||
+ return CONTAINING_RECORD(iface, BitmapScaler, IMILBitmapScaler_iface);
|
||||
+}
|
||||
+
|
||||
static HRESULT WINAPI BitmapScaler_QueryInterface(IWICBitmapScaler *iface, REFIID iid,
|
||||
void **ppv)
|
||||
{
|
||||
@@ -64,8 +70,13 @@ static HRESULT WINAPI BitmapScaler_QueryInterface(IWICBitmapScaler *iface, REFII
|
||||
{
|
||||
*ppv = &This->IWICBitmapScaler_iface;
|
||||
}
|
||||
+ else if (IsEqualIID(&IID_IMILBitmapScaler, iid))
|
||||
+ {
|
||||
+ *ppv = &This->IMILBitmapScaler_iface;
|
||||
+ }
|
||||
else
|
||||
{
|
||||
+ FIXME("unknown interface %s\n", debugstr_guid(iid));
|
||||
*ppv = NULL;
|
||||
return E_NOINTERFACE;
|
||||
}
|
||||
@@ -374,6 +385,151 @@ static const IWICBitmapScalerVtbl BitmapScaler_Vtbl = {
|
||||
BitmapScaler_Initialize
|
||||
};
|
||||
|
||||
+static HRESULT WINAPI IMILBitmapScaler_QueryInterface(IMILBitmapScaler *iface, REFIID iid,
|
||||
+ void **ppv)
|
||||
+{
|
||||
+ BitmapScaler *This = impl_from_IMILBitmapScaler(iface);
|
||||
+
|
||||
+ TRACE("(%p,%s,%p)\n", iface, debugstr_guid(iid), ppv);
|
||||
+
|
||||
+ if (!ppv) return E_INVALIDARG;
|
||||
+
|
||||
+ if (IsEqualIID(&IID_IUnknown, iid) ||
|
||||
+ IsEqualIID(&IID_IMILBitmapScaler, iid))
|
||||
+ {
|
||||
+ IUnknown_AddRef(&This->IMILBitmapScaler_iface);
|
||||
+ *ppv = &This->IMILBitmapScaler_iface;
|
||||
+ return S_OK;
|
||||
+ }
|
||||
+
|
||||
+ FIXME("unknown interface %s\n", debugstr_guid(iid));
|
||||
+ *ppv = NULL;
|
||||
+ return E_NOINTERFACE;
|
||||
+}
|
||||
+
|
||||
+static ULONG WINAPI IMILBitmapScaler_AddRef(IMILBitmapScaler *iface)
|
||||
+{
|
||||
+ BitmapScaler *This = impl_from_IMILBitmapScaler(iface);
|
||||
+ return IWICBitmapScaler_AddRef(&This->IWICBitmapScaler_iface);
|
||||
+}
|
||||
+
|
||||
+static ULONG WINAPI IMILBitmapScaler_Release(IMILBitmapScaler *iface)
|
||||
+{
|
||||
+ BitmapScaler *This = impl_from_IMILBitmapScaler(iface);
|
||||
+ return IWICBitmapScaler_Release(&This->IWICBitmapScaler_iface);
|
||||
+}
|
||||
+
|
||||
+static HRESULT WINAPI IMILBitmapScaler_GetSize(IMILBitmapScaler *iface,
|
||||
+ UINT *width, UINT *height)
|
||||
+{
|
||||
+ BitmapScaler *This = impl_from_IMILBitmapScaler(iface);
|
||||
+ TRACE("(%p,%p,%p)\n", iface, width, height);
|
||||
+ return IWICBitmapScaler_GetSize(&This->IWICBitmapScaler_iface, width, height);
|
||||
+}
|
||||
+
|
||||
+static HRESULT WINAPI IMILBitmapScaler_GetPixelFormat(IMILBitmapScaler *iface,
|
||||
+ int *format)
|
||||
+{
|
||||
+ BitmapScaler *This = impl_from_IMILBitmapScaler(iface);
|
||||
+ IMILBitmapSource *source;
|
||||
+ HRESULT hr;
|
||||
+
|
||||
+ TRACE("(%p,%p)\n", iface, format);
|
||||
+
|
||||
+ if (!format) return E_INVALIDARG;
|
||||
+
|
||||
+ if (!This->source)
|
||||
+ return WINCODEC_ERR_WRONGSTATE;
|
||||
+
|
||||
+ hr = IWICBitmapSource_QueryInterface(This->source, &IID_IMILBitmapSource, (void **)&source);
|
||||
+ if (hr == S_OK)
|
||||
+ {
|
||||
+ hr = source->lpVtbl->GetPixelFormat(source, format);
|
||||
+ source->lpVtbl->Release(source);
|
||||
+ }
|
||||
+ return hr;
|
||||
+}
|
||||
+
|
||||
+static HRESULT WINAPI IMILBitmapScaler_GetResolution(IMILBitmapScaler *iface,
|
||||
+ double *dpix, double *dpiy)
|
||||
+{
|
||||
+ BitmapScaler *This = impl_from_IMILBitmapScaler(iface);
|
||||
+ TRACE("(%p,%p,%p)\n", iface, dpix, dpiy);
|
||||
+ return IWICBitmapScaler_GetResolution(&This->IWICBitmapScaler_iface, dpix, dpiy);
|
||||
+}
|
||||
+
|
||||
+static HRESULT WINAPI IMILBitmapScaler_CopyPalette(IMILBitmapScaler *iface,
|
||||
+ IWICPalette *palette)
|
||||
+{
|
||||
+ BitmapScaler *This = impl_from_IMILBitmapScaler(iface);
|
||||
+ TRACE("(%p,%p)\n", iface, palette);
|
||||
+ return IWICBitmapScaler_CopyPalette(&This->IWICBitmapScaler_iface, palette);
|
||||
+}
|
||||
+
|
||||
+static HRESULT WINAPI IMILBitmapScaler_CopyPixels(IMILBitmapScaler *iface,
|
||||
+ const WICRect *rc, UINT stride, UINT size, BYTE *buffer)
|
||||
+{
|
||||
+ BitmapScaler *This = impl_from_IMILBitmapScaler(iface);
|
||||
+ TRACE("(%p,%p,%u,%u,%p)\n", iface, rc, stride, size, buffer);
|
||||
+ return IWICBitmapScaler_CopyPixels(&This->IWICBitmapScaler_iface, rc, stride, size, buffer);
|
||||
+}
|
||||
+
|
||||
+static HRESULT WINAPI IMILBitmapScaler_unknown1(IMILBitmapScaler *iface, void **ppv)
|
||||
+{
|
||||
+ BitmapScaler *This = impl_from_IMILBitmapScaler(iface);
|
||||
+ IMILBitmapSource *source;
|
||||
+ HRESULT hr;
|
||||
+
|
||||
+ TRACE("(%p,%p)\n", iface, ppv);
|
||||
+
|
||||
+ if (!ppv) return E_INVALIDARG;
|
||||
+
|
||||
+ if (!This->source)
|
||||
+ return WINCODEC_ERR_WRONGSTATE;
|
||||
+
|
||||
+ hr = IWICBitmapSource_QueryInterface(This->source, &IID_IMILBitmapSource, (void **)&source);
|
||||
+ if (hr == S_OK)
|
||||
+ {
|
||||
+ hr = source->lpVtbl->unknown1(source, ppv);
|
||||
+ source->lpVtbl->Release(source);
|
||||
+ }
|
||||
+ return hr;
|
||||
+}
|
||||
+
|
||||
+static HRESULT WINAPI IMILBitmapScaler_Initialize(IMILBitmapScaler *iface,
|
||||
+ IMILBitmapSource *mil_source, UINT width, UINT height,
|
||||
+ WICBitmapInterpolationMode mode)
|
||||
+{
|
||||
+ BitmapScaler *This = impl_from_IMILBitmapScaler(iface);
|
||||
+ IWICBitmapSource *wic_source;
|
||||
+ HRESULT hr;
|
||||
+
|
||||
+ TRACE("(%p,%p,%u,%u,%u)\n", iface, mil_source, width, height, mode);
|
||||
+
|
||||
+ if (!mil_source) return E_INVALIDARG;
|
||||
+
|
||||
+ hr = mil_source->lpVtbl->QueryInterface(mil_source, &IID_IWICBitmapSource, (void **)&wic_source);
|
||||
+ if (hr == S_OK)
|
||||
+ {
|
||||
+ hr = IWICBitmapScaler_Initialize(&This->IWICBitmapScaler_iface, wic_source, width, height, mode);
|
||||
+ IWICBitmapSource_Release(wic_source);
|
||||
+ }
|
||||
+ return hr;
|
||||
+}
|
||||
+
|
||||
+static const IMILBitmapScalerVtbl IMILBitmapScaler_Vtbl = {
|
||||
+ IMILBitmapScaler_QueryInterface,
|
||||
+ IMILBitmapScaler_AddRef,
|
||||
+ IMILBitmapScaler_Release,
|
||||
+ IMILBitmapScaler_GetSize,
|
||||
+ IMILBitmapScaler_GetPixelFormat,
|
||||
+ IMILBitmapScaler_GetResolution,
|
||||
+ IMILBitmapScaler_CopyPalette,
|
||||
+ IMILBitmapScaler_CopyPixels,
|
||||
+ IMILBitmapScaler_unknown1,
|
||||
+ IMILBitmapScaler_Initialize
|
||||
+};
|
||||
+
|
||||
HRESULT BitmapScaler_Create(IWICBitmapScaler **scaler)
|
||||
{
|
||||
BitmapScaler *This;
|
||||
@@ -382,6 +538,7 @@ HRESULT BitmapScaler_Create(IWICBitmapScaler **scaler)
|
||||
if (!This) return E_OUTOFMEMORY;
|
||||
|
||||
This->IWICBitmapScaler_iface.lpVtbl = &BitmapScaler_Vtbl;
|
||||
+ This->IMILBitmapScaler_iface.lpVtbl = &IMILBitmapScaler_Vtbl;
|
||||
This->ref = 1;
|
||||
This->source = NULL;
|
||||
This->width = 0;
|
||||
diff --git a/dlls/windowscodecs/wincodecs_private.h b/dlls/windowscodecs/wincodecs_private.h
|
||||
index 2bd109e..0bef4d9 100644
|
||||
--- a/dlls/windowscodecs/wincodecs_private.h
|
||||
+++ b/dlls/windowscodecs/wincodecs_private.h
|
||||
@@ -60,6 +60,25 @@ DECLARE_INTERFACE_(IMILBitmapSource,IUnknown)
|
||||
};
|
||||
#undef INTERFACE
|
||||
|
||||
+#define INTERFACE IMILBitmapScaler
|
||||
+DECLARE_INTERFACE_(IMILBitmapScaler,IUnknown)
|
||||
+{
|
||||
+ /*** IUnknown methods ***/
|
||||
+ STDMETHOD_(HRESULT,QueryInterface)(THIS_ REFIID,void **) PURE;
|
||||
+ STDMETHOD_(ULONG,AddRef)(THIS) PURE;
|
||||
+ STDMETHOD_(ULONG,Release)(THIS) PURE;
|
||||
+ /*** IWICBitmapSource methods ***/
|
||||
+ STDMETHOD_(HRESULT,GetSize)(THIS_ UINT *,UINT *) PURE;
|
||||
+ STDMETHOD_(HRESULT,GetPixelFormat)(THIS_ int *) PURE;
|
||||
+ STDMETHOD_(HRESULT,GetResolution)(THIS_ double *,double *) PURE;
|
||||
+ STDMETHOD_(HRESULT,CopyPalette)(THIS_ IWICPalette *) PURE;
|
||||
+ STDMETHOD_(HRESULT,CopyPixels)(THIS_ const WICRect *,UINT,UINT,BYTE *) PURE;
|
||||
+ /*** IMILBitmapScaler methods ***/
|
||||
+ STDMETHOD_(HRESULT,unknown1)(THIS_ void **) PURE;
|
||||
+ STDMETHOD_(HRESULT,Initialize)(THIS_ IMILBitmapSource *,UINT,UINT,WICBitmapInterpolationMode);
|
||||
+};
|
||||
+#undef INTERFACE
|
||||
+
|
||||
#ifdef __i386__ /* thiscall functions are i386-specific */
|
||||
|
||||
#define THISCALL(func) __thiscall_ ## func
|
||||
--
|
||||
2.7.1
|
||||
|
1
patches/windowscodecs-IMILBitmapSource/definition
Normal file
1
patches/windowscodecs-IMILBitmapSource/definition
Normal file
@ -0,0 +1 @@
|
||||
Fixes: [34764] Improve compatibility of IMILBitmapSource interface
|
Loading…
Reference in New Issue
Block a user