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
31 #include "wincodecsdk.h"
33 #include "wincodecs_private.h"
35 #include "wine/debug.h"
37 WINE_DEFAULT_DEBUG_CHANNEL(wincodecs);
40 IWICComponentFactory IWICComponentFactory_iface;
44 static inline ComponentFactory *impl_from_IWICComponentFactory(IWICComponentFactory *iface)
46 return CONTAINING_RECORD(iface, ComponentFactory, IWICComponentFactory_iface);
49 static HRESULT WINAPI ComponentFactory_QueryInterface(IWICComponentFactory *iface, REFIID iid,
52 ComponentFactory *This = impl_from_IWICComponentFactory(iface);
53 TRACE("(%p,%s,%p)\n", iface, debugstr_guid(iid), ppv);
55 if (!ppv) return E_INVALIDARG;
57 if (IsEqualIID(&IID_IUnknown, iid) ||
58 IsEqualIID(&IID_IWICImagingFactory, iid) ||
59 IsEqualIID(&IID_IWICComponentFactory, iid))
69 IUnknown_AddRef((IUnknown*)*ppv);
73 static ULONG WINAPI ComponentFactory_AddRef(IWICComponentFactory *iface)
75 ComponentFactory *This = impl_from_IWICComponentFactory(iface);
76 ULONG ref = InterlockedIncrement(&This->ref);
78 TRACE("(%p) refcount=%u\n", iface, ref);
83 static ULONG WINAPI ComponentFactory_Release(IWICComponentFactory *iface)
85 ComponentFactory *This = impl_from_IWICComponentFactory(iface);
86 ULONG ref = InterlockedDecrement(&This->ref);
88 TRACE("(%p) refcount=%u\n", iface, ref);
91 HeapFree(GetProcessHeap(), 0, This);
96 static HRESULT WINAPI ComponentFactory_CreateDecoderFromFilename(
97 IWICComponentFactory *iface, LPCWSTR wzFilename, const GUID *pguidVendor,
98 DWORD dwDesiredAccess, WICDecodeOptions metadataOptions,
99 IWICBitmapDecoder **ppIDecoder)
104 TRACE("(%p,%s,%s,%u,%u,%p)\n", iface, debugstr_w(wzFilename),
105 debugstr_guid(pguidVendor), dwDesiredAccess, metadataOptions, ppIDecoder);
107 hr = StreamImpl_Create(&stream);
110 hr = IWICStream_InitializeFromFilename(stream, wzFilename, dwDesiredAccess);
114 hr = IWICComponentFactory_CreateDecoderFromStream(iface, (IStream*)stream,
115 pguidVendor, metadataOptions, ppIDecoder);
118 IWICStream_Release(stream);
124 static HRESULT WINAPI ComponentFactory_CreateDecoderFromStream(
125 IWICComponentFactory *iface, IStream *pIStream, const GUID *pguidVendor,
126 WICDecodeOptions metadataOptions, IWICBitmapDecoder **ppIDecoder)
128 IEnumUnknown *enumdecoders;
129 IUnknown *unkdecoderinfo;
130 IWICBitmapDecoderInfo *decoderinfo;
131 IWICBitmapDecoder *decoder = NULL, *preferred_decoder = NULL;
137 TRACE("(%p,%p,%s,%u,%p)\n", iface, pIStream, debugstr_guid(pguidVendor),
138 metadataOptions, ppIDecoder);
140 res = CreateComponentEnumerator(WICDecoder, WICComponentEnumerateDefault, &enumdecoders);
141 if (FAILED(res)) return res;
143 while (!preferred_decoder)
145 res = IEnumUnknown_Next(enumdecoders, 1, &unkdecoderinfo, &num_fetched);
149 res = IUnknown_QueryInterface(unkdecoderinfo, &IID_IWICBitmapDecoderInfo, (void**)&decoderinfo);
153 res = IWICBitmapDecoderInfo_MatchesPattern(decoderinfo, pIStream, &matches);
155 if (SUCCEEDED(res) && matches)
157 IWICBitmapDecoder *new_decoder;
159 res = IWICBitmapDecoderInfo_CreateInstance(decoderinfo, &new_decoder);
161 /* FIXME: should use QueryCapability to choose a decoder */
165 res = IWICBitmapDecoder_Initialize(new_decoder, pIStream, metadataOptions);
171 res = IWICBitmapDecoderInfo_GetVendorGUID(decoderinfo, &vendor);
172 if (SUCCEEDED(res) && IsEqualIID(&vendor, pguidVendor))
174 preferred_decoder = new_decoder;
179 if (new_decoder && !decoder)
181 decoder = new_decoder;
186 if (new_decoder) IWICBitmapDecoder_Release(new_decoder);
190 IWICBitmapDecoderInfo_Release(decoderinfo);
193 IUnknown_Release(unkdecoderinfo);
199 IEnumUnknown_Release(enumdecoders);
201 if (preferred_decoder)
203 *ppIDecoder = preferred_decoder;
204 if (decoder) IWICBitmapDecoder_Release(decoder);
210 *ppIDecoder = decoder;
215 if (WARN_ON(wincodecs))
221 WARN("failed to load from a stream\n");
224 res = IStream_Seek(pIStream, seek, STREAM_SEEK_SET, NULL);
226 res = IStream_Read(pIStream, data, 4, &bytesread);
228 WARN("first %i bytes of stream=%x %x %x %x\n", bytesread, data[0], data[1], data[2], data[3]);
231 return WINCODEC_ERR_COMPONENTNOTFOUND;
235 static HRESULT WINAPI ComponentFactory_CreateDecoderFromFileHandle(
236 IWICComponentFactory *iface, ULONG_PTR hFile, const GUID *pguidVendor,
237 WICDecodeOptions metadataOptions, IWICBitmapDecoder **ppIDecoder)
239 FIXME("(%p,%lx,%s,%u,%p): stub\n", iface, hFile, debugstr_guid(pguidVendor),
240 metadataOptions, ppIDecoder);
244 static HRESULT WINAPI ComponentFactory_CreateComponentInfo(IWICComponentFactory *iface,
245 REFCLSID clsidComponent, IWICComponentInfo **ppIInfo)
247 TRACE("(%p,%s,%p)\n", iface, debugstr_guid(clsidComponent), ppIInfo);
248 return CreateComponentInfo(clsidComponent, ppIInfo);
251 static HRESULT WINAPI ComponentFactory_CreateDecoder(IWICComponentFactory *iface,
252 REFGUID guidContainerFormat, const GUID *pguidVendor,
253 IWICBitmapDecoder **ppIDecoder)
255 IEnumUnknown *enumdecoders;
256 IUnknown *unkdecoderinfo;
257 IWICBitmapDecoderInfo *decoderinfo;
258 IWICBitmapDecoder *decoder = NULL, *preferred_decoder = NULL;
263 TRACE("(%p,%s,%s,%p)\n", iface, debugstr_guid(guidContainerFormat),
264 debugstr_guid(pguidVendor), ppIDecoder);
266 if (!guidContainerFormat || !ppIDecoder) return E_INVALIDARG;
268 res = CreateComponentEnumerator(WICDecoder, WICComponentEnumerateDefault, &enumdecoders);
269 if (FAILED(res)) return res;
271 while (!preferred_decoder)
273 res = IEnumUnknown_Next(enumdecoders, 1, &unkdecoderinfo, &num_fetched);
274 if (res != S_OK) break;
276 res = IUnknown_QueryInterface(unkdecoderinfo, &IID_IWICBitmapDecoderInfo, (void **)&decoderinfo);
281 res = IWICBitmapDecoderInfo_GetContainerFormat(decoderinfo, &container_guid);
282 if (SUCCEEDED(res) && IsEqualIID(&container_guid, guidContainerFormat))
284 IWICBitmapDecoder *new_decoder;
286 res = IWICBitmapDecoderInfo_CreateInstance(decoderinfo, &new_decoder);
291 res = IWICBitmapDecoderInfo_GetVendorGUID(decoderinfo, &vendor);
292 if (SUCCEEDED(res) && IsEqualIID(&vendor, pguidVendor))
294 preferred_decoder = new_decoder;
299 if (new_decoder && !decoder)
301 decoder = new_decoder;
305 if (new_decoder) IWICBitmapDecoder_Release(new_decoder);
309 IWICBitmapDecoderInfo_Release(decoderinfo);
312 IUnknown_Release(unkdecoderinfo);
315 IEnumUnknown_Release(enumdecoders);
317 if (preferred_decoder)
319 *ppIDecoder = preferred_decoder;
320 if (decoder) IWICBitmapDecoder_Release(decoder);
326 *ppIDecoder = decoder;
331 return WINCODEC_ERR_COMPONENTNOTFOUND;
334 static HRESULT WINAPI ComponentFactory_CreateEncoder(IWICComponentFactory *iface,
335 REFGUID guidContainerFormat, const GUID *pguidVendor,
336 IWICBitmapEncoder **ppIEncoder)
339 IEnumUnknown *enumencoders;
340 IUnknown *unkencoderinfo;
341 IWICBitmapEncoderInfo *encoderinfo;
342 IWICBitmapEncoder *encoder=NULL;
345 GUID actual_containerformat;
347 TRACE("(%p,%s,%s,%p)\n", iface, debugstr_guid(guidContainerFormat),
348 debugstr_guid(pguidVendor), ppIEncoder);
350 if (pguidVendor && !fixme++)
351 FIXME("ignoring vendor GUID\n");
353 res = CreateComponentEnumerator(WICEncoder, WICComponentEnumerateDefault, &enumencoders);
354 if (FAILED(res)) return res;
358 res = IEnumUnknown_Next(enumencoders, 1, &unkencoderinfo, &num_fetched);
362 res = IUnknown_QueryInterface(unkencoderinfo, &IID_IWICBitmapEncoderInfo, (void**)&encoderinfo);
366 res = IWICBitmapEncoderInfo_GetContainerFormat(encoderinfo, &actual_containerformat);
368 if (SUCCEEDED(res) && IsEqualGUID(guidContainerFormat, &actual_containerformat))
370 res = IWICBitmapEncoderInfo_CreateInstance(encoderinfo, &encoder);
375 IWICBitmapEncoderInfo_Release(encoderinfo);
378 IUnknown_Release(unkencoderinfo);
384 IEnumUnknown_Release(enumencoders);
388 *ppIEncoder = encoder;
393 WARN("failed to create encoder\n");
395 return WINCODEC_ERR_COMPONENTNOTFOUND;
399 static HRESULT WINAPI ComponentFactory_CreatePalette(IWICComponentFactory *iface,
400 IWICPalette **ppIPalette)
402 TRACE("(%p,%p)\n", iface, ppIPalette);
403 return PaletteImpl_Create(ppIPalette);
406 static HRESULT WINAPI ComponentFactory_CreateFormatConverter(IWICComponentFactory *iface,
407 IWICFormatConverter **ppIFormatConverter)
409 return FormatConverter_CreateInstance(NULL, &IID_IWICFormatConverter, (void**)ppIFormatConverter);
412 static HRESULT WINAPI ComponentFactory_CreateBitmapScaler(IWICComponentFactory *iface,
413 IWICBitmapScaler **ppIBitmapScaler)
415 TRACE("(%p,%p)\n", iface, ppIBitmapScaler);
417 return BitmapScaler_Create(ppIBitmapScaler);
420 static HRESULT WINAPI ComponentFactory_CreateBitmapClipper(IWICComponentFactory *iface,
421 IWICBitmapClipper **ppIBitmapClipper)
423 FIXME("(%p,%p): stub\n", iface, ppIBitmapClipper);
427 static HRESULT WINAPI ComponentFactory_CreateBitmapFlipRotator(IWICComponentFactory *iface,
428 IWICBitmapFlipRotator **ppIBitmapFlipRotator)
430 TRACE("(%p,%p)\n", iface, ppIBitmapFlipRotator);
431 return FlipRotator_Create(ppIBitmapFlipRotator);
434 static HRESULT WINAPI ComponentFactory_CreateStream(IWICComponentFactory *iface,
435 IWICStream **ppIWICStream)
437 TRACE("(%p,%p)\n", iface, ppIWICStream);
438 return StreamImpl_Create(ppIWICStream);
441 static HRESULT WINAPI ComponentFactory_CreateColorContext(IWICComponentFactory *iface,
442 IWICColorContext **ppIColorContext)
444 FIXME("(%p,%p): stub\n", iface, ppIColorContext);
448 static HRESULT WINAPI ComponentFactory_CreateColorTransformer(IWICComponentFactory *iface,
449 IWICColorTransform **ppIColorTransform)
451 FIXME("(%p,%p): stub\n", iface, ppIColorTransform);
455 static HRESULT WINAPI ComponentFactory_CreateBitmap(IWICComponentFactory *iface,
456 UINT uiWidth, UINT uiHeight, REFWICPixelFormatGUID pixelFormat,
457 WICBitmapCreateCacheOption option, IWICBitmap **ppIBitmap)
459 FIXME("(%p,%u,%u,%s,%u,%p): stub\n", iface, uiWidth, uiHeight,
460 debugstr_guid(pixelFormat), option, ppIBitmap);
464 static HRESULT WINAPI ComponentFactory_CreateBitmapFromSource(IWICComponentFactory *iface,
465 IWICBitmapSource *piBitmapSource, WICBitmapCreateCacheOption option,
466 IWICBitmap **ppIBitmap)
468 FIXME("(%p,%p,%u,%p): stub\n", iface, piBitmapSource, option, ppIBitmap);
472 static HRESULT WINAPI ComponentFactory_CreateBitmapFromSourceRect(IWICComponentFactory *iface,
473 IWICBitmapSource *piBitmapSource, UINT x, UINT y, UINT width, UINT height,
474 IWICBitmap **ppIBitmap)
476 FIXME("(%p,%p,%u,%u,%u,%u,%p): stub\n", iface, piBitmapSource, x, y, width,
481 static HRESULT WINAPI ComponentFactory_CreateBitmapFromMemory(IWICComponentFactory *iface,
482 UINT uiWidth, UINT uiHeight, REFWICPixelFormatGUID pixelFormat, UINT cbStride,
483 UINT cbBufferSize, BYTE *pbBuffer, IWICBitmap **ppIBitmap)
485 FIXME("(%p,%u,%u,%s,%u,%u,%p,%p): stub\n", iface, uiWidth, uiHeight,
486 debugstr_guid(pixelFormat), cbStride, cbBufferSize, pbBuffer, ppIBitmap);
490 static HRESULT WINAPI ComponentFactory_CreateBitmapFromHBITMAP(IWICComponentFactory *iface,
491 HBITMAP hBitmap, HPALETTE hPalette, WICBitmapAlphaChannelOption options,
492 IWICBitmap **ppIBitmap)
494 FIXME("(%p,%p,%p,%u,%p): stub\n", iface, hBitmap, hPalette, options, ppIBitmap);
498 static HRESULT WINAPI ComponentFactory_CreateBitmapFromHICON(IWICComponentFactory *iface,
499 HICON hIcon, IWICBitmap **ppIBitmap)
501 FIXME("(%p,%p,%p): stub\n", iface, hIcon, ppIBitmap);
505 static HRESULT WINAPI ComponentFactory_CreateComponentEnumerator(IWICComponentFactory *iface,
506 DWORD componentTypes, DWORD options, IEnumUnknown **ppIEnumUnknown)
508 TRACE("(%p,%u,%u,%p)\n", iface, componentTypes, options, ppIEnumUnknown);
509 return CreateComponentEnumerator(componentTypes, options, ppIEnumUnknown);
512 static HRESULT WINAPI ComponentFactory_CreateFastMetadataEncoderFromDecoder(
513 IWICComponentFactory *iface, IWICBitmapDecoder *pIDecoder,
514 IWICFastMetadataEncoder **ppIFastEncoder)
516 FIXME("(%p,%p,%p): stub\n", iface, pIDecoder, ppIFastEncoder);
520 static HRESULT WINAPI ComponentFactory_CreateFastMetadataEncoderFromFrameDecode(
521 IWICComponentFactory *iface, IWICBitmapFrameDecode *pIFrameDecoder,
522 IWICFastMetadataEncoder **ppIFastEncoder)
524 FIXME("(%p,%p,%p): stub\n", iface, pIFrameDecoder, ppIFastEncoder);
528 static HRESULT WINAPI ComponentFactory_CreateQueryWriter(IWICComponentFactory *iface,
529 REFGUID guidMetadataFormat, const GUID *pguidVendor,
530 IWICMetadataQueryWriter **ppIQueryWriter)
532 FIXME("(%p,%s,%s,%p): stub\n", iface, debugstr_guid(guidMetadataFormat),
533 debugstr_guid(pguidVendor), ppIQueryWriter);
537 static HRESULT WINAPI ComponentFactory_CreateQueryWriterFromReader(IWICComponentFactory *iface,
538 IWICMetadataQueryReader *pIQueryReader, const GUID *pguidVendor,
539 IWICMetadataQueryWriter **ppIQueryWriter)
541 FIXME("(%p,%p,%s,%p): stub\n", iface, pIQueryReader, debugstr_guid(pguidVendor),
546 static HRESULT WINAPI ComponentFactory_CreateMetadataReader(IWICComponentFactory *iface,
547 REFGUID format, const GUID *vendor, DWORD options, IStream *stream, IWICMetadataReader **reader)
549 FIXME("%p,%s,%s,%x,%p,%p: stub\n", iface, debugstr_guid(format), debugstr_guid(vendor),
550 options, stream, reader);
554 static HRESULT WINAPI ComponentFactory_CreateMetadataReaderFromContainer(IWICComponentFactory *iface,
555 REFGUID format, const GUID *vendor, DWORD options, IStream *stream, IWICMetadataReader **reader)
557 FIXME("%p,%s,%s,%x,%p,%p: stub\n", iface, debugstr_guid(format), debugstr_guid(vendor),
558 options, stream, reader);
562 static HRESULT WINAPI ComponentFactory_CreateMetadataWriter(IWICComponentFactory *iface,
563 REFGUID format, const GUID *vendor, DWORD options, IWICMetadataWriter **writer)
565 FIXME("%p,%s,%s,%x,%p: stub\n", iface, debugstr_guid(format), debugstr_guid(vendor), options, writer);
569 static HRESULT WINAPI ComponentFactory_CreateMetadataWriterFromReader(IWICComponentFactory *iface,
570 IWICMetadataReader *reader, const GUID *vendor, IWICMetadataWriter **writer)
572 FIXME("%p,%p,%s,%p: stub\n", iface, reader, debugstr_guid(vendor), writer);
576 static HRESULT WINAPI ComponentFactory_CreateQueryReaderFromBlockReader(IWICComponentFactory *iface,
577 IWICMetadataBlockReader *block_reader, IWICMetadataQueryReader **query_reader)
579 FIXME("%p,%p,%p: stub\n", iface, block_reader, query_reader);
583 static HRESULT WINAPI ComponentFactory_CreateQueryWriterFromBlockWriter(IWICComponentFactory *iface,
584 IWICMetadataBlockWriter *block_writer, IWICMetadataQueryWriter **query_writer)
586 FIXME("%p,%p,%p: stub\n", iface, block_writer, query_writer);
590 static HRESULT WINAPI ComponentFactory_CreateEncoderPropertyBag(IWICComponentFactory *iface,
591 PROPBAG2 *options, UINT count, IPropertyBag2 **property)
593 FIXME("%p,%p,%u,%p: stub\n", iface, options, count, property);
597 static const IWICComponentFactoryVtbl ComponentFactory_Vtbl = {
598 ComponentFactory_QueryInterface,
599 ComponentFactory_AddRef,
600 ComponentFactory_Release,
601 ComponentFactory_CreateDecoderFromFilename,
602 ComponentFactory_CreateDecoderFromStream,
603 ComponentFactory_CreateDecoderFromFileHandle,
604 ComponentFactory_CreateComponentInfo,
605 ComponentFactory_CreateDecoder,
606 ComponentFactory_CreateEncoder,
607 ComponentFactory_CreatePalette,
608 ComponentFactory_CreateFormatConverter,
609 ComponentFactory_CreateBitmapScaler,
610 ComponentFactory_CreateBitmapClipper,
611 ComponentFactory_CreateBitmapFlipRotator,
612 ComponentFactory_CreateStream,
613 ComponentFactory_CreateColorContext,
614 ComponentFactory_CreateColorTransformer,
615 ComponentFactory_CreateBitmap,
616 ComponentFactory_CreateBitmapFromSource,
617 ComponentFactory_CreateBitmapFromSourceRect,
618 ComponentFactory_CreateBitmapFromMemory,
619 ComponentFactory_CreateBitmapFromHBITMAP,
620 ComponentFactory_CreateBitmapFromHICON,
621 ComponentFactory_CreateComponentEnumerator,
622 ComponentFactory_CreateFastMetadataEncoderFromDecoder,
623 ComponentFactory_CreateFastMetadataEncoderFromFrameDecode,
624 ComponentFactory_CreateQueryWriter,
625 ComponentFactory_CreateQueryWriterFromReader,
626 ComponentFactory_CreateMetadataReader,
627 ComponentFactory_CreateMetadataReaderFromContainer,
628 ComponentFactory_CreateMetadataWriter,
629 ComponentFactory_CreateMetadataWriterFromReader,
630 ComponentFactory_CreateQueryReaderFromBlockReader,
631 ComponentFactory_CreateQueryWriterFromBlockWriter,
632 ComponentFactory_CreateEncoderPropertyBag
635 HRESULT ComponentFactory_CreateInstance(IUnknown *pUnkOuter, REFIID iid, void** ppv)
637 ComponentFactory *This;
640 TRACE("(%p,%s,%p)\n", pUnkOuter, debugstr_guid(iid), ppv);
644 if (pUnkOuter) return CLASS_E_NOAGGREGATION;
646 This = HeapAlloc(GetProcessHeap(), 0, sizeof(ComponentFactory));
647 if (!This) return E_OUTOFMEMORY;
649 This->IWICComponentFactory_iface.lpVtbl = &ComponentFactory_Vtbl;
652 ret = IUnknown_QueryInterface((IUnknown*)This, iid, ppv);
653 IUnknown_Release((IUnknown*)This);