2 * Copyright 2009 Vincent Povirk for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
30 #include "wincodecs_private.h"
32 #include "wine/debug.h"
34 WINE_DEFAULT_DEBUG_CHANNEL(wincodecs
);
59 IWICBitmapDecoder IWICBitmapDecoder_iface
;
64 CRITICAL_SECTION lock
; /* must be held when accessing stream */
68 IWICBitmapFrameDecode IWICBitmapFrameDecode_iface
;
75 static inline IcoDecoder
*impl_from_IWICBitmapDecoder(IWICBitmapDecoder
*iface
)
77 return CONTAINING_RECORD(iface
, IcoDecoder
, IWICBitmapDecoder_iface
);
80 static inline IcoFrameDecode
*impl_from_IWICBitmapFrameDecode(IWICBitmapFrameDecode
*iface
)
82 return CONTAINING_RECORD(iface
, IcoFrameDecode
, IWICBitmapFrameDecode_iface
);
85 static HRESULT WINAPI
IcoFrameDecode_QueryInterface(IWICBitmapFrameDecode
*iface
, REFIID iid
,
88 IcoFrameDecode
*This
= impl_from_IWICBitmapFrameDecode(iface
);
89 TRACE("(%p,%s,%p)\n", iface
, debugstr_guid(iid
), ppv
);
91 if (!ppv
) return E_INVALIDARG
;
93 if (IsEqualIID(&IID_IUnknown
, iid
) ||
94 IsEqualIID(&IID_IWICBitmapSource
, iid
) ||
95 IsEqualIID(&IID_IWICBitmapFrameDecode
, iid
))
97 *ppv
= &This
->IWICBitmapFrameDecode_iface
;
102 return E_NOINTERFACE
;
105 IUnknown_AddRef((IUnknown
*)*ppv
);
109 static ULONG WINAPI
IcoFrameDecode_AddRef(IWICBitmapFrameDecode
*iface
)
111 IcoFrameDecode
*This
= impl_from_IWICBitmapFrameDecode(iface
);
112 ULONG ref
= InterlockedIncrement(&This
->ref
);
114 TRACE("(%p) refcount=%u\n", iface
, ref
);
119 static ULONG WINAPI
IcoFrameDecode_Release(IWICBitmapFrameDecode
*iface
)
121 IcoFrameDecode
*This
= impl_from_IWICBitmapFrameDecode(iface
);
122 ULONG ref
= InterlockedDecrement(&This
->ref
);
124 TRACE("(%p) refcount=%u\n", iface
, ref
);
128 HeapFree(GetProcessHeap(), 0, This
->bits
);
129 HeapFree(GetProcessHeap(), 0, This
);
135 static HRESULT WINAPI
IcoFrameDecode_GetSize(IWICBitmapFrameDecode
*iface
,
136 UINT
*puiWidth
, UINT
*puiHeight
)
138 IcoFrameDecode
*This
= impl_from_IWICBitmapFrameDecode(iface
);
140 *puiWidth
= This
->width
;
141 *puiHeight
= This
->height
;
143 TRACE("(%p) -> (%i,%i)\n", iface
, *puiWidth
, *puiHeight
);
148 static HRESULT WINAPI
IcoFrameDecode_GetPixelFormat(IWICBitmapFrameDecode
*iface
,
149 WICPixelFormatGUID
*pPixelFormat
)
151 memcpy(pPixelFormat
, &GUID_WICPixelFormat32bppBGRA
, sizeof(GUID
));
155 static HRESULT WINAPI
IcoFrameDecode_GetResolution(IWICBitmapFrameDecode
*iface
,
156 double *pDpiX
, double *pDpiY
)
158 IcoFrameDecode
*This
= impl_from_IWICBitmapFrameDecode(iface
);
163 TRACE("(%p) -> (%f,%f)\n", iface
, *pDpiX
, *pDpiY
);
168 static HRESULT WINAPI
IcoFrameDecode_CopyPalette(IWICBitmapFrameDecode
*iface
,
169 IWICPalette
*pIPalette
)
171 TRACE("(%p,%p)\n", iface
, pIPalette
);
172 return WINCODEC_ERR_PALETTEUNAVAILABLE
;
175 static HRESULT WINAPI
IcoFrameDecode_CopyPixels(IWICBitmapFrameDecode
*iface
,
176 const WICRect
*prc
, UINT cbStride
, UINT cbBufferSize
, BYTE
*pbBuffer
)
178 IcoFrameDecode
*This
= impl_from_IWICBitmapFrameDecode(iface
);
179 TRACE("(%p,%p,%u,%u,%p)\n", iface
, prc
, cbStride
, cbBufferSize
, pbBuffer
);
181 return copy_pixels(32, This
->bits
, This
->width
, This
->height
, This
->width
* 4,
182 prc
, cbStride
, cbBufferSize
, pbBuffer
);
185 static HRESULT WINAPI
IcoFrameDecode_GetMetadataQueryReader(IWICBitmapFrameDecode
*iface
,
186 IWICMetadataQueryReader
**ppIMetadataQueryReader
)
188 TRACE("(%p,%p)\n", iface
, ppIMetadataQueryReader
);
189 return WINCODEC_ERR_UNSUPPORTEDOPERATION
;
192 static HRESULT WINAPI
IcoFrameDecode_GetColorContexts(IWICBitmapFrameDecode
*iface
,
193 UINT cCount
, IWICColorContext
**ppIColorContexts
, UINT
*pcActualCount
)
195 TRACE("(%p,%u,%p,%p)\n", iface
, cCount
, ppIColorContexts
, pcActualCount
);
196 return WINCODEC_ERR_UNSUPPORTEDOPERATION
;
199 static HRESULT WINAPI
IcoFrameDecode_GetThumbnail(IWICBitmapFrameDecode
*iface
,
200 IWICBitmapSource
**ppIThumbnail
)
202 TRACE("(%p,%p)\n", iface
, ppIThumbnail
);
203 return IWICBitmapFrameDecode_QueryInterface(iface
, &IID_IWICBitmapSource
, (void **)ppIThumbnail
);
206 static const IWICBitmapFrameDecodeVtbl IcoFrameDecode_Vtbl
= {
207 IcoFrameDecode_QueryInterface
,
208 IcoFrameDecode_AddRef
,
209 IcoFrameDecode_Release
,
210 IcoFrameDecode_GetSize
,
211 IcoFrameDecode_GetPixelFormat
,
212 IcoFrameDecode_GetResolution
,
213 IcoFrameDecode_CopyPalette
,
214 IcoFrameDecode_CopyPixels
,
215 IcoFrameDecode_GetMetadataQueryReader
,
216 IcoFrameDecode_GetColorContexts
,
217 IcoFrameDecode_GetThumbnail
220 static inline void pixel_set_trans(DWORD
* pixel
, BOOL transparent
)
222 if (transparent
) *pixel
= 0;
223 else *pixel
|= 0xff000000;
226 static HRESULT
ReadIcoDib(IStream
*stream
, IcoFrameDecode
*result
)
229 BmpDecoder
*bmp_decoder
;
230 IWICBitmapDecoder
*decoder
;
231 IWICBitmapFrameDecode
*framedecode
;
232 WICPixelFormatGUID pixelformat
;
233 IWICBitmapSource
*source
;
234 BOOL has_alpha
=FALSE
; /* if TRUE, alpha data might be in the image data */
237 hr
= IcoDibDecoder_CreateInstance(&bmp_decoder
);
240 BmpDecoder_GetWICDecoder(bmp_decoder
, &decoder
);
241 hr
= IWICBitmapDecoder_Initialize(decoder
, stream
, WICDecodeMetadataCacheOnLoad
);
244 hr
= IWICBitmapDecoder_GetFrame(decoder
, 0, &framedecode
);
248 hr
= IWICBitmapFrameDecode_GetSize(framedecode
, &result
->width
, &result
->height
);
252 result
->bits
= HeapAlloc(GetProcessHeap(), 0, result
->width
* result
->height
* 4);
253 if (!result
->bits
) hr
= E_OUTOFMEMORY
;
257 hr
= IWICBitmapFrameDecode_GetPixelFormat(framedecode
, &pixelformat
);
259 if (IsEqualGUID(&pixelformat
, &GUID_WICPixelFormat32bppBGR
) ||
260 IsEqualGUID(&pixelformat
, &GUID_WICPixelFormat32bppBGRA
))
262 source
= (IWICBitmapSource
*)framedecode
;
263 IWICBitmapSource_AddRef(source
);
268 hr
= WICConvertBitmapSource(&GUID_WICPixelFormat32bppBGRA
,
269 (IWICBitmapSource
*)framedecode
, &source
);
277 rc
.Width
= result
->width
;
278 rc
.Height
= result
->height
;
279 hr
= IWICBitmapSource_CopyPixels(source
, &rc
, result
->width
* 4,
280 result
->width
* result
->height
* 4, result
->bits
);
282 IWICBitmapSource_Release(source
);
286 hr
= IWICBitmapFrameDecode_GetResolution(framedecode
, &result
->dpiX
, &result
->dpiY
);
288 IWICBitmapFrameDecode_Release(framedecode
);
291 if (SUCCEEDED(hr
) && has_alpha
)
293 /* If the alpha channel is fully transparent, we should ignore it. */
294 int nonzero_alpha
= 0;
297 for (i
=0; i
<(result
->height
*result
->width
); i
++)
299 if (result
->bits
[i
*4+3] != 0)
308 for (i
=0; i
<(result
->height
*result
->width
); i
++)
309 result
->bits
[i
*4+3] = 0xff;
315 if (SUCCEEDED(hr
) && !has_alpha
)
317 /* set alpha data based on the AND mask */
318 UINT andBytesPerRow
= (result
->width
+31)/32*4;
319 UINT andBytes
= andBytesPerRow
* result
->height
;
324 UINT bitsStride
= result
->width
* 4;
331 BmpDecoder_FindIconMask(bmp_decoder
, &offset
, &topdown
);
335 seek
.QuadPart
= offset
;
337 hr
= IStream_Seek(stream
, seek
, STREAM_SEEK_SET
, 0);
341 tempdata
= HeapAlloc(GetProcessHeap(), 0, andBytes
);
342 if (!tempdata
) hr
= E_OUTOFMEMORY
;
346 hr
= IStream_Read(stream
, tempdata
, andBytes
, &bytesread
);
348 if (SUCCEEDED(hr
) && bytesread
== andBytes
)
352 andStride
= andBytesPerRow
;
357 andStride
= -andBytesPerRow
;
358 andRow
= tempdata
+ (result
->height
-1)*andBytesPerRow
;
361 bitsRow
= result
->bits
;
362 for (y
=0; y
<result
->height
; y
++) {
363 BYTE
*andByte
=andRow
;
364 DWORD
*bitsPixel
=(DWORD
*)bitsRow
;
365 for (x
=0; x
<result
->width
; x
+=8) {
366 BYTE andVal
=*andByte
++;
367 pixel_set_trans(bitsPixel
++, andVal
>>7&1);
368 if (x
+1 < result
->width
) pixel_set_trans(bitsPixel
++, andVal
>>6&1);
369 if (x
+2 < result
->width
) pixel_set_trans(bitsPixel
++, andVal
>>5&1);
370 if (x
+3 < result
->width
) pixel_set_trans(bitsPixel
++, andVal
>>4&1);
371 if (x
+4 < result
->width
) pixel_set_trans(bitsPixel
++, andVal
>>3&1);
372 if (x
+5 < result
->width
) pixel_set_trans(bitsPixel
++, andVal
>>2&1);
373 if (x
+6 < result
->width
) pixel_set_trans(bitsPixel
++, andVal
>>1&1);
374 if (x
+7 < result
->width
) pixel_set_trans(bitsPixel
++, andVal
&1);
377 bitsRow
+= bitsStride
;
381 HeapFree(GetProcessHeap(), 0, tempdata
);
385 IWICBitmapDecoder_Release(decoder
);
391 static HRESULT
ReadIcoPng(IStream
*stream
, IcoFrameDecode
*result
)
393 IWICBitmapDecoder
*decoder
= NULL
;
394 IWICBitmapFrameDecode
*sourceFrame
= NULL
;
395 IWICBitmapSource
*sourceBitmap
= NULL
;
399 hr
= PngDecoder_CreateInstance(&IID_IWICBitmapDecoder
, (void**)&decoder
);
402 hr
= IWICBitmapDecoder_Initialize(decoder
, stream
, WICDecodeMetadataCacheOnLoad
);
405 hr
= IWICBitmapDecoder_GetFrame(decoder
, 0, &sourceFrame
);
408 hr
= WICConvertBitmapSource(&GUID_WICPixelFormat32bppBGRA
, (IWICBitmapSource
*)sourceFrame
, &sourceBitmap
);
411 hr
= IWICBitmapFrameDecode_GetSize(sourceFrame
, &result
->width
, &result
->height
);
414 hr
= IWICBitmapFrameDecode_GetResolution(sourceFrame
, &result
->dpiX
, &result
->dpiY
);
417 result
->bits
= HeapAlloc(GetProcessHeap(), 0, 4 * result
->width
* result
->height
);
418 if (result
->bits
== NULL
)
425 rect
.Width
= result
->width
;
426 rect
.Height
= result
->height
;
427 hr
= IWICBitmapSource_CopyPixels(sourceBitmap
, &rect
, 4*result
->width
,
428 4*result
->width
*result
->height
, result
->bits
);
432 IWICBitmapDecoder_Release(decoder
);
433 if (sourceFrame
!= NULL
)
434 IWICBitmapFrameDecode_Release(sourceFrame
);
435 if (sourceBitmap
!= NULL
)
436 IWICBitmapSource_Release(sourceBitmap
);
440 static HRESULT WINAPI
IcoDecoder_QueryInterface(IWICBitmapDecoder
*iface
, REFIID iid
,
443 IcoDecoder
*This
= impl_from_IWICBitmapDecoder(iface
);
444 TRACE("(%p,%s,%p)\n", iface
, debugstr_guid(iid
), ppv
);
446 if (!ppv
) return E_INVALIDARG
;
448 if (IsEqualIID(&IID_IUnknown
, iid
) ||
449 IsEqualIID(&IID_IWICBitmapDecoder
, iid
))
451 *ppv
= &This
->IWICBitmapDecoder_iface
;
456 return E_NOINTERFACE
;
459 IUnknown_AddRef((IUnknown
*)*ppv
);
463 static ULONG WINAPI
IcoDecoder_AddRef(IWICBitmapDecoder
*iface
)
465 IcoDecoder
*This
= impl_from_IWICBitmapDecoder(iface
);
466 ULONG ref
= InterlockedIncrement(&This
->ref
);
468 TRACE("(%p) refcount=%u\n", iface
, ref
);
473 static ULONG WINAPI
IcoDecoder_Release(IWICBitmapDecoder
*iface
)
475 IcoDecoder
*This
= impl_from_IWICBitmapDecoder(iface
);
476 ULONG ref
= InterlockedDecrement(&This
->ref
);
478 TRACE("(%p) refcount=%u\n", iface
, ref
);
482 This
->lock
.DebugInfo
->Spare
[0] = 0;
483 DeleteCriticalSection(&This
->lock
);
484 if (This
->stream
) IStream_Release(This
->stream
);
485 HeapFree(GetProcessHeap(), 0, This
);
491 static HRESULT WINAPI
IcoDecoder_QueryCapability(IWICBitmapDecoder
*iface
, IStream
*stream
,
496 TRACE("(%p,%p,%p)\n", iface
, stream
, capability
);
498 if (!stream
|| !capability
) return E_INVALIDARG
;
500 hr
= IWICBitmapDecoder_Initialize(iface
, stream
, WICDecodeMetadataCacheOnDemand
);
501 if (hr
!= S_OK
) return hr
;
503 *capability
= WICBitmapDecoderCapabilityCanDecodeAllImages
;
507 static HRESULT WINAPI
IcoDecoder_Initialize(IWICBitmapDecoder
*iface
, IStream
*pIStream
,
508 WICDecodeOptions cacheOptions
)
510 IcoDecoder
*This
= impl_from_IWICBitmapDecoder(iface
);
514 TRACE("(%p,%p,%x)\n", iface
, pIStream
, cacheOptions
);
516 EnterCriticalSection(&This
->lock
);
518 if (This
->initialized
)
520 hr
= WINCODEC_ERR_WRONGSTATE
;
525 hr
= IStream_Seek(pIStream
, seek
, STREAM_SEEK_SET
, NULL
);
526 if (FAILED(hr
)) goto end
;
528 hr
= IStream_Read(pIStream
, &This
->header
, sizeof(ICONHEADER
), &bytesread
);
529 if (FAILED(hr
)) goto end
;
530 if (bytesread
!= sizeof(ICONHEADER
) ||
531 This
->header
.idReserved
!= 0 ||
532 This
->header
.idType
!= 1)
538 This
->initialized
= TRUE
;
539 This
->stream
= pIStream
;
540 IStream_AddRef(pIStream
);
544 LeaveCriticalSection(&This
->lock
);
549 static HRESULT WINAPI
IcoDecoder_GetContainerFormat(IWICBitmapDecoder
*iface
,
550 GUID
*pguidContainerFormat
)
552 memcpy(pguidContainerFormat
, &GUID_ContainerFormatIco
, sizeof(GUID
));
556 static HRESULT WINAPI
IcoDecoder_GetDecoderInfo(IWICBitmapDecoder
*iface
,
557 IWICBitmapDecoderInfo
**ppIDecoderInfo
)
560 IWICComponentInfo
*compinfo
;
562 TRACE("(%p,%p)\n", iface
, ppIDecoderInfo
);
564 hr
= CreateComponentInfo(&CLSID_WICIcoDecoder
, &compinfo
);
565 if (FAILED(hr
)) return hr
;
567 hr
= IWICComponentInfo_QueryInterface(compinfo
, &IID_IWICBitmapDecoderInfo
,
568 (void**)ppIDecoderInfo
);
570 IWICComponentInfo_Release(compinfo
);
575 static HRESULT WINAPI
IcoDecoder_CopyPalette(IWICBitmapDecoder
*iface
,
576 IWICPalette
*pIPalette
)
578 TRACE("(%p,%p)\n", iface
, pIPalette
);
579 return WINCODEC_ERR_PALETTEUNAVAILABLE
;
582 static HRESULT WINAPI
IcoDecoder_GetMetadataQueryReader(IWICBitmapDecoder
*iface
,
583 IWICMetadataQueryReader
**ppIMetadataQueryReader
)
585 TRACE("(%p,%p)\n", iface
, ppIMetadataQueryReader
);
586 return WINCODEC_ERR_UNSUPPORTEDOPERATION
;
589 static HRESULT WINAPI
IcoDecoder_GetPreview(IWICBitmapDecoder
*iface
,
590 IWICBitmapSource
**ppIBitmapSource
)
592 TRACE("(%p,%p)\n", iface
, ppIBitmapSource
);
593 return WINCODEC_ERR_UNSUPPORTEDOPERATION
;
596 static HRESULT WINAPI
IcoDecoder_GetColorContexts(IWICBitmapDecoder
*iface
,
597 UINT cCount
, IWICColorContext
**ppIColorContexts
, UINT
*pcActualCount
)
599 TRACE("(%p,%u,%p,%p)\n", iface
, cCount
, ppIColorContexts
, pcActualCount
);
600 return WINCODEC_ERR_UNSUPPORTEDOPERATION
;
603 static HRESULT WINAPI
IcoDecoder_GetThumbnail(IWICBitmapDecoder
*iface
,
604 IWICBitmapSource
**ppIThumbnail
)
606 TRACE("(%p,%p)\n", iface
, ppIThumbnail
);
607 return WINCODEC_ERR_CODECNOTHUMBNAIL
;
610 static HRESULT WINAPI
IcoDecoder_GetFrameCount(IWICBitmapDecoder
*iface
,
613 IcoDecoder
*This
= impl_from_IWICBitmapDecoder(iface
);
615 if (!pCount
) return E_INVALIDARG
;
617 EnterCriticalSection(&This
->lock
);
618 *pCount
= This
->initialized
? This
->header
.idCount
: 0;
619 LeaveCriticalSection(&This
->lock
);
621 TRACE("(%p) <-- %d\n", iface
, *pCount
);
626 static HRESULT WINAPI
IcoDecoder_GetFrame(IWICBitmapDecoder
*iface
,
627 UINT index
, IWICBitmapFrameDecode
**ppIBitmapFrame
)
629 IcoDecoder
*This
= impl_from_IWICBitmapDecoder(iface
);
630 IcoFrameDecode
*result
=NULL
;
632 ULARGE_INTEGER offset
, length
;
636 IWICStream
*substream
=NULL
;
638 TRACE("(%p,%u,%p)\n", iface
, index
, ppIBitmapFrame
);
640 EnterCriticalSection(&This
->lock
);
642 if (!This
->initialized
)
644 hr
= WINCODEC_ERR_FRAMEMISSING
;
648 if (This
->header
.idCount
< index
)
654 result
= HeapAlloc(GetProcessHeap(), 0, sizeof(IcoFrameDecode
));
661 result
->IWICBitmapFrameDecode_iface
.lpVtbl
= &IcoFrameDecode_Vtbl
;
665 /* read the icon entry */
666 seek
.QuadPart
= sizeof(ICONHEADER
) + sizeof(ICONDIRENTRY
) * index
;
667 hr
= IStream_Seek(This
->stream
, seek
, STREAM_SEEK_SET
, 0);
668 if (FAILED(hr
)) goto fail
;
670 hr
= IStream_Read(This
->stream
, &entry
, sizeof(ICONDIRENTRY
), &bytesread
);
671 if (FAILED(hr
) || bytesread
!= sizeof(ICONDIRENTRY
)) goto fail
;
673 /* create a stream object for this icon */
674 hr
= StreamImpl_Create(&substream
);
675 if (FAILED(hr
)) goto fail
;
677 offset
.QuadPart
= entry
.dwDIBOffset
;
678 length
.QuadPart
= entry
.dwDIBSize
;
679 hr
= IWICStream_InitializeFromIStreamRegion(substream
, This
->stream
, offset
, length
);
680 if (FAILED(hr
)) goto fail
;
682 /* read the bitmapinfo size or magic number */
683 hr
= IWICStream_Read(substream
, &magic
, sizeof(magic
), &bytesread
);
684 if (FAILED(hr
) || bytesread
!= sizeof(magic
)) goto fail
;
686 /* forward to the appropriate decoding function based on the magic number */
689 case sizeof(BITMAPCOREHEADER
):
690 case 64: /* sizeof(BITMAPCOREHEADER2) */
691 case sizeof(BITMAPINFOHEADER
):
692 case sizeof(BITMAPV4HEADER
):
693 case sizeof(BITMAPV5HEADER
):
694 hr
= ReadIcoDib((IStream
*)substream
, result
);
697 hr
= ReadIcoPng((IStream
*)substream
, result
);
700 FIXME("Unrecognized ICO frame magic: %x\n", magic
);
704 if (FAILED(hr
)) goto fail
;
706 *ppIBitmapFrame
= &result
->IWICBitmapFrameDecode_iface
;
708 LeaveCriticalSection(&This
->lock
);
710 IWICStream_Release(substream
);
715 LeaveCriticalSection(&This
->lock
);
716 HeapFree(GetProcessHeap(), 0, result
);
717 if (substream
) IWICStream_Release(substream
);
718 if (SUCCEEDED(hr
)) hr
= E_FAIL
;
719 TRACE("<-- %x\n", hr
);
723 static const IWICBitmapDecoderVtbl IcoDecoder_Vtbl
= {
724 IcoDecoder_QueryInterface
,
727 IcoDecoder_QueryCapability
,
728 IcoDecoder_Initialize
,
729 IcoDecoder_GetContainerFormat
,
730 IcoDecoder_GetDecoderInfo
,
731 IcoDecoder_CopyPalette
,
732 IcoDecoder_GetMetadataQueryReader
,
733 IcoDecoder_GetPreview
,
734 IcoDecoder_GetColorContexts
,
735 IcoDecoder_GetThumbnail
,
736 IcoDecoder_GetFrameCount
,
740 HRESULT
IcoDecoder_CreateInstance(REFIID iid
, void** ppv
)
745 TRACE("(%s,%p)\n", debugstr_guid(iid
), ppv
);
749 This
= HeapAlloc(GetProcessHeap(), 0, sizeof(IcoDecoder
));
750 if (!This
) return E_OUTOFMEMORY
;
752 This
->IWICBitmapDecoder_iface
.lpVtbl
= &IcoDecoder_Vtbl
;
755 This
->initialized
= FALSE
;
756 InitializeCriticalSection(&This
->lock
);
757 This
->lock
.DebugInfo
->Spare
[0] = (DWORD_PTR
)(__FILE__
": IcoDecoder.lock");
759 ret
= IWICBitmapDecoder_QueryInterface(&This
->IWICBitmapDecoder_iface
, iid
, ppv
);
760 IWICBitmapDecoder_Release(&This
->IWICBitmapDecoder_iface
);