dxgi: Get rid of IWineDXGIFactory.
[wine/multimedia.git] / dlls / windowscodecs / gifformat.c
blob054a74977c37ed9ebb43b09db89eecabda0aa8a4
1 /*
2 * Copyright 2009 Vincent Povirk for CodeWeavers
3 * Copyright 2012 Dmitry Timoshkov
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 #include "config.h"
22 #include <stdarg.h>
24 #define COBJMACROS
25 #define NONAMELESSUNION
27 #include "windef.h"
28 #include "winbase.h"
29 #include "objbase.h"
30 #include "wincodec.h"
31 #include "wincodecsdk.h"
33 #include "ungif.h"
35 #include "wincodecs_private.h"
37 #include "wine/debug.h"
39 WINE_DEFAULT_DEBUG_CHANNEL(wincodecs);
41 static LPWSTR strdupAtoW(const char *src)
43 int len = MultiByteToWideChar(CP_ACP, 0, src, -1, NULL, 0);
44 LPWSTR dst = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR));
45 if (dst) MultiByteToWideChar(CP_ACP, 0, src, -1, dst, len);
46 return dst;
49 static HRESULT load_LSD_metadata(IStream *stream, const GUID *vendor, DWORD options,
50 MetadataItem **items, DWORD *count)
52 #include "pshpack1.h"
53 struct logical_screen_descriptor
55 char signature[6];
56 USHORT width;
57 USHORT height;
58 BYTE packed;
59 /* global_color_table_flag : 1;
60 * color_resolution : 3;
61 * sort_flag : 1;
62 * global_color_table_size : 3;
64 BYTE background_color_index;
65 BYTE pixel_aspect_ratio;
66 } lsd_data;
67 #include "poppack.h"
68 HRESULT hr;
69 ULONG bytesread, i;
70 MetadataItem *result;
72 *items = NULL;
73 *count = 0;
75 hr = IStream_Read(stream, &lsd_data, sizeof(lsd_data), &bytesread);
76 if (FAILED(hr) || bytesread != sizeof(lsd_data)) return S_OK;
78 result = HeapAlloc(GetProcessHeap(), 0, sizeof(MetadataItem) * 9);
79 if (!result) return E_OUTOFMEMORY;
81 for (i = 0; i < 9; i++)
83 PropVariantInit(&result[i].schema);
84 PropVariantInit(&result[i].id);
85 PropVariantInit(&result[i].value);
88 result[0].id.vt = VT_LPWSTR;
89 result[0].id.u.pwszVal = strdupAtoW("Signature");
90 result[0].value.vt = VT_UI1|VT_VECTOR;
91 result[0].value.u.caub.cElems = sizeof(lsd_data.signature);
92 result[0].value.u.caub.pElems = HeapAlloc(GetProcessHeap(), 0, sizeof(lsd_data.signature));
93 memcpy(result[0].value.u.caub.pElems, lsd_data.signature, sizeof(lsd_data.signature));
95 result[1].id.vt = VT_LPWSTR;
96 result[1].id.u.pwszVal = strdupAtoW("Width");
97 result[1].value.vt = VT_UI2;
98 result[1].value.u.uiVal = lsd_data.width;
100 result[2].id.vt = VT_LPWSTR;
101 result[2].id.u.pwszVal = strdupAtoW("Height");
102 result[2].value.vt = VT_UI2;
103 result[2].value.u.uiVal = lsd_data.height;
105 result[3].id.vt = VT_LPWSTR;
106 result[3].id.u.pwszVal = strdupAtoW("GlobalColorTableFlag");
107 result[3].value.vt = VT_BOOL;
108 result[3].value.u.boolVal = (lsd_data.packed >> 7) & 1;
110 result[4].id.vt = VT_LPWSTR;
111 result[4].id.u.pwszVal = strdupAtoW("ColorResolution");
112 result[4].value.vt = VT_UI1;
113 result[4].value.u.bVal = (lsd_data.packed >> 4) & 7;
115 result[5].id.vt = VT_LPWSTR;
116 result[5].id.u.pwszVal = strdupAtoW("SortFlag");
117 result[5].value.vt = VT_BOOL;
118 result[5].value.u.boolVal = (lsd_data.packed >> 3) & 1;
120 result[6].id.vt = VT_LPWSTR;
121 result[6].id.u.pwszVal = strdupAtoW("GlobalColorTableSize");
122 result[6].value.vt = VT_UI1;
123 result[6].value.u.bVal = lsd_data.packed & 7;
125 result[7].id.vt = VT_LPWSTR;
126 result[7].id.u.pwszVal = strdupAtoW("BackgroundColorIndex");
127 result[7].value.vt = VT_UI1;
128 result[7].value.u.bVal = lsd_data.background_color_index;
130 result[8].id.vt = VT_LPWSTR;
131 result[8].id.u.pwszVal = strdupAtoW("PixelAspectRatio");
132 result[8].value.vt = VT_UI1;
133 result[8].value.u.bVal = lsd_data.pixel_aspect_ratio;
135 *items = result;
136 *count = 9;
138 return S_OK;
141 static const MetadataHandlerVtbl LSDReader_Vtbl = {
143 &CLSID_WICLSDMetadataReader,
144 load_LSD_metadata
147 HRESULT LSDReader_CreateInstance(REFIID iid, void **ppv)
149 return MetadataReader_Create(&LSDReader_Vtbl, iid, ppv);
152 #include "pshpack1.h"
153 struct image_descriptor
155 USHORT left;
156 USHORT top;
157 USHORT width;
158 USHORT height;
159 BYTE packed;
160 /* local_color_table_flag : 1;
161 * interlace_flag : 1;
162 * sort_flag : 1;
163 * reserved : 2;
164 * local_color_table_size : 3;
167 #include "poppack.h"
169 static HRESULT load_IMD_metadata(IStream *stream, const GUID *vendor, DWORD options,
170 MetadataItem **items, DWORD *count)
172 struct image_descriptor imd_data;
173 HRESULT hr;
174 ULONG bytesread, i;
175 MetadataItem *result;
177 *items = NULL;
178 *count = 0;
180 hr = IStream_Read(stream, &imd_data, sizeof(imd_data), &bytesread);
181 if (FAILED(hr) || bytesread != sizeof(imd_data)) return S_OK;
183 result = HeapAlloc(GetProcessHeap(), 0, sizeof(MetadataItem) * 8);
184 if (!result) return E_OUTOFMEMORY;
186 for (i = 0; i < 8; i++)
188 PropVariantInit(&result[i].schema);
189 PropVariantInit(&result[i].id);
190 PropVariantInit(&result[i].value);
193 result[0].id.vt = VT_LPWSTR;
194 result[0].id.u.pwszVal = strdupAtoW("Left");
195 result[0].value.vt = VT_UI2;
196 result[0].value.u.uiVal = imd_data.left;
198 result[1].id.vt = VT_LPWSTR;
199 result[1].id.u.pwszVal = strdupAtoW("Top");
200 result[1].value.vt = VT_UI2;
201 result[1].value.u.uiVal = imd_data.top;
203 result[2].id.vt = VT_LPWSTR;
204 result[2].id.u.pwszVal = strdupAtoW("Width");
205 result[2].value.vt = VT_UI2;
206 result[2].value.u.uiVal = imd_data.width;
208 result[3].id.vt = VT_LPWSTR;
209 result[3].id.u.pwszVal = strdupAtoW("Height");
210 result[3].value.vt = VT_UI2;
211 result[3].value.u.uiVal = imd_data.height;
213 result[4].id.vt = VT_LPWSTR;
214 result[4].id.u.pwszVal = strdupAtoW("LocalColorTableFlag");
215 result[4].value.vt = VT_BOOL;
216 result[4].value.u.boolVal = (imd_data.packed >> 7) & 1;
218 result[5].id.vt = VT_LPWSTR;
219 result[5].id.u.pwszVal = strdupAtoW("InterlaceFlag");
220 result[5].value.vt = VT_BOOL;
221 result[5].value.u.boolVal = (imd_data.packed >> 6) & 1;
223 result[6].id.vt = VT_LPWSTR;
224 result[6].id.u.pwszVal = strdupAtoW("SortFlag");
225 result[6].value.vt = VT_BOOL;
226 result[6].value.u.boolVal = (imd_data.packed >> 5) & 1;
228 result[7].id.vt = VT_LPWSTR;
229 result[7].id.u.pwszVal = strdupAtoW("LocalColorTableSize");
230 result[7].value.vt = VT_UI1;
231 result[7].value.u.bVal = imd_data.packed & 7;
233 *items = result;
234 *count = 8;
236 return S_OK;
239 static const MetadataHandlerVtbl IMDReader_Vtbl = {
241 &CLSID_WICIMDMetadataReader,
242 load_IMD_metadata
245 HRESULT IMDReader_CreateInstance(REFIID iid, void **ppv)
247 return MetadataReader_Create(&IMDReader_Vtbl, iid, ppv);
250 static HRESULT load_GCE_metadata(IStream *stream, const GUID *vendor, DWORD options,
251 MetadataItem **items, DWORD *count)
253 #include "pshpack1.h"
254 struct graphic_control_extenstion
256 BYTE packed;
257 /* reservred: 3;
258 * disposal : 3;
259 * user_input_flag : 1;
260 * transparency_flag : 1;
262 USHORT delay;
263 BYTE transparent_color_index;
264 } gce_data;
265 #include "poppack.h"
266 HRESULT hr;
267 ULONG bytesread, i;
268 MetadataItem *result;
270 *items = NULL;
271 *count = 0;
273 hr = IStream_Read(stream, &gce_data, sizeof(gce_data), &bytesread);
274 if (FAILED(hr) || bytesread != sizeof(gce_data)) return S_OK;
276 result = HeapAlloc(GetProcessHeap(), 0, sizeof(MetadataItem) * 5);
277 if (!result) return E_OUTOFMEMORY;
279 for (i = 0; i < 5; i++)
281 PropVariantInit(&result[i].schema);
282 PropVariantInit(&result[i].id);
283 PropVariantInit(&result[i].value);
286 result[0].id.vt = VT_LPWSTR;
287 result[0].id.u.pwszVal = strdupAtoW("Disposal");
288 result[0].value.vt = VT_UI1;
289 result[0].value.u.bVal = (gce_data.packed >> 2) & 7;
291 result[1].id.vt = VT_LPWSTR;
292 result[1].id.u.pwszVal = strdupAtoW("UserInputFlag");
293 result[1].value.vt = VT_BOOL;
294 result[1].value.u.boolVal = (gce_data.packed >> 1) & 1;
296 result[2].id.vt = VT_LPWSTR;
297 result[2].id.u.pwszVal = strdupAtoW("TransparencyFlag");
298 result[2].value.vt = VT_BOOL;
299 result[2].value.u.boolVal = gce_data.packed & 1;
301 result[3].id.vt = VT_LPWSTR;
302 result[3].id.u.pwszVal = strdupAtoW("Delay");
303 result[3].value.vt = VT_UI2;
304 result[3].value.u.uiVal = gce_data.delay;
306 result[4].id.vt = VT_LPWSTR;
307 result[4].id.u.pwszVal = strdupAtoW("TransparentColorIndex");
308 result[4].value.vt = VT_UI1;
309 result[4].value.u.bVal = gce_data.transparent_color_index;
311 *items = result;
312 *count = 5;
314 return S_OK;
317 static const MetadataHandlerVtbl GCEReader_Vtbl = {
319 &CLSID_WICGCEMetadataReader,
320 load_GCE_metadata
323 HRESULT GCEReader_CreateInstance(REFIID iid, void **ppv)
325 return MetadataReader_Create(&GCEReader_Vtbl, iid, ppv);
328 static HRESULT load_APE_metadata(IStream *stream, const GUID *vendor, DWORD options,
329 MetadataItem **items, DWORD *count)
331 #include "pshpack1.h"
332 struct application_extenstion
334 BYTE extension_introducer;
335 BYTE extension_label;
336 BYTE block_size;
337 BYTE application[11];
338 } ape_data;
339 #include "poppack.h"
340 HRESULT hr;
341 ULONG bytesread, data_size, i;
342 MetadataItem *result;
343 BYTE subblock_size;
344 BYTE *data;
346 *items = NULL;
347 *count = 0;
349 hr = IStream_Read(stream, &ape_data, sizeof(ape_data), &bytesread);
350 if (FAILED(hr) || bytesread != sizeof(ape_data)) return S_OK;
351 if (ape_data.extension_introducer != 0x21 ||
352 ape_data.extension_label != APPLICATION_EXT_FUNC_CODE ||
353 ape_data.block_size != 11)
354 return S_OK;
356 data = NULL;
357 data_size = 0;
359 for (;;)
361 hr = IStream_Read(stream, &subblock_size, sizeof(subblock_size), &bytesread);
362 if (FAILED(hr) || bytesread != sizeof(subblock_size))
364 HeapFree(GetProcessHeap(), 0, data);
365 return S_OK;
367 if (!subblock_size) break;
369 if (!data)
370 data = HeapAlloc(GetProcessHeap(), 0, subblock_size + 1);
371 else
373 BYTE *new_data = HeapReAlloc(GetProcessHeap(), 0, data, data_size + subblock_size + 1);
374 if (!new_data)
376 HeapFree(GetProcessHeap(), 0, data);
377 return S_OK;
379 data = new_data;
381 data[data_size] = subblock_size;
382 hr = IStream_Read(stream, data + data_size + 1, subblock_size, &bytesread);
383 if (FAILED(hr) || bytesread != subblock_size)
385 HeapFree(GetProcessHeap(), 0, data);
386 return S_OK;
388 data_size += subblock_size + 1;
391 result = HeapAlloc(GetProcessHeap(), 0, sizeof(MetadataItem) * 2);
392 if (!result)
394 HeapFree(GetProcessHeap(), 0, data);
395 return E_OUTOFMEMORY;
398 for (i = 0; i < 2; i++)
400 PropVariantInit(&result[i].schema);
401 PropVariantInit(&result[i].id);
402 PropVariantInit(&result[i].value);
405 result[0].id.vt = VT_LPWSTR;
406 result[0].id.u.pwszVal = strdupAtoW("Application");
407 result[0].value.vt = VT_UI1|VT_VECTOR;
408 result[0].value.u.caub.cElems = sizeof(ape_data.application);
409 result[0].value.u.caub.pElems = HeapAlloc(GetProcessHeap(), 0, sizeof(ape_data.application));
410 memcpy(result[0].value.u.caub.pElems, ape_data.application, sizeof(ape_data.application));
412 result[1].id.vt = VT_LPWSTR;
413 result[1].id.u.pwszVal = strdupAtoW("Data");
414 result[1].value.vt = VT_UI1|VT_VECTOR;
415 result[1].value.u.caub.cElems = data_size;
416 result[1].value.u.caub.pElems = data;
418 *items = result;
419 *count = 2;
421 return S_OK;
424 static const MetadataHandlerVtbl APEReader_Vtbl = {
426 &CLSID_WICAPEMetadataReader,
427 load_APE_metadata
430 HRESULT APEReader_CreateInstance(REFIID iid, void **ppv)
432 return MetadataReader_Create(&APEReader_Vtbl, iid, ppv);
435 static HRESULT load_GifComment_metadata(IStream *stream, const GUID *vendor, DWORD options,
436 MetadataItem **items, DWORD *count)
438 #include "pshpack1.h"
439 struct gif_extenstion
441 BYTE extension_introducer;
442 BYTE extension_label;
443 } ext_data;
444 #include "poppack.h"
445 HRESULT hr;
446 ULONG bytesread, data_size;
447 MetadataItem *result;
448 BYTE subblock_size;
449 char *data;
451 *items = NULL;
452 *count = 0;
454 hr = IStream_Read(stream, &ext_data, sizeof(ext_data), &bytesread);
455 if (FAILED(hr) || bytesread != sizeof(ext_data)) return S_OK;
456 if (ext_data.extension_introducer != 0x21 ||
457 ext_data.extension_label != COMMENT_EXT_FUNC_CODE)
458 return S_OK;
460 data = NULL;
461 data_size = 0;
463 for (;;)
465 hr = IStream_Read(stream, &subblock_size, sizeof(subblock_size), &bytesread);
466 if (FAILED(hr) || bytesread != sizeof(subblock_size))
468 HeapFree(GetProcessHeap(), 0, data);
469 return S_OK;
471 if (!subblock_size) break;
473 if (!data)
474 data = HeapAlloc(GetProcessHeap(), 0, subblock_size + 1);
475 else
477 char *new_data = HeapReAlloc(GetProcessHeap(), 0, data, data_size + subblock_size + 1);
478 if (!new_data)
480 HeapFree(GetProcessHeap(), 0, data);
481 return S_OK;
483 data = new_data;
485 hr = IStream_Read(stream, data + data_size, subblock_size, &bytesread);
486 if (FAILED(hr) || bytesread != subblock_size)
488 HeapFree(GetProcessHeap(), 0, data);
489 return S_OK;
491 data_size += subblock_size;
494 data[data_size] = 0;
496 result = HeapAlloc(GetProcessHeap(), 0, sizeof(MetadataItem));
497 if (!result)
499 HeapFree(GetProcessHeap(), 0, data);
500 return E_OUTOFMEMORY;
503 PropVariantInit(&result->schema);
504 PropVariantInit(&result->id);
505 PropVariantInit(&result->value);
507 result->id.vt = VT_LPWSTR;
508 result->id.u.pwszVal = strdupAtoW("TextEntry");
509 result->value.vt = VT_LPSTR;
510 result->value.u.pszVal = data;
512 *items = result;
513 *count = 1;
515 return S_OK;
518 static const MetadataHandlerVtbl GifCommentReader_Vtbl = {
520 &CLSID_WICGifCommentMetadataReader,
521 load_GifComment_metadata
524 HRESULT GifCommentReader_CreateInstance(REFIID iid, void **ppv)
526 return MetadataReader_Create(&GifCommentReader_Vtbl, iid, ppv);
529 static IStream *create_stream(const void *data, int data_size)
531 HRESULT hr;
532 IStream *stream;
533 HGLOBAL hdata;
534 void *locked_data;
536 hdata = GlobalAlloc(GMEM_MOVEABLE, data_size);
537 if (!hdata) return NULL;
539 locked_data = GlobalLock(hdata);
540 memcpy(locked_data, data, data_size);
541 GlobalUnlock(hdata);
543 hr = CreateStreamOnHGlobal(hdata, TRUE, &stream);
544 return FAILED(hr) ? NULL : stream;
547 static HRESULT create_metadata_reader(const void *data, int data_size,
548 const CLSID *clsid, IWICMetadataReader **reader)
550 HRESULT hr;
551 IWICMetadataReader *metadata_reader;
552 IWICPersistStream *persist;
553 IStream *stream;
555 /* FIXME: Use IWICComponentFactory_CreateMetadataReader once it's implemented */
557 hr = CoCreateInstance(clsid, NULL, CLSCTX_INPROC_SERVER,
558 &IID_IWICMetadataReader, (void **)&metadata_reader);
559 if (FAILED(hr)) return hr;
561 hr = IWICMetadataReader_QueryInterface(metadata_reader, &IID_IWICPersistStream, (void **)&persist);
562 if (FAILED(hr))
564 IWICMetadataReader_Release(metadata_reader);
565 return hr;
568 stream = create_stream(data, data_size);
569 IWICPersistStream_LoadEx(persist, stream, NULL, WICPersistOptionsDefault);
570 IStream_Release(stream);
572 IWICPersistStream_Release(persist);
574 *reader = metadata_reader;
575 return S_OK;
578 typedef struct {
579 IWICBitmapDecoder IWICBitmapDecoder_iface;
580 IWICMetadataBlockReader IWICMetadataBlockReader_iface;
581 BYTE LSD_data[13]; /* Logical Screen Descriptor */
582 LONG ref;
583 BOOL initialized;
584 GifFileType *gif;
585 UINT current_frame;
586 CRITICAL_SECTION lock;
587 } GifDecoder;
589 typedef struct {
590 IWICBitmapFrameDecode IWICBitmapFrameDecode_iface;
591 IWICMetadataBlockReader IWICMetadataBlockReader_iface;
592 LONG ref;
593 SavedImage *frame;
594 GifDecoder *parent;
595 } GifFrameDecode;
597 static inline GifDecoder *impl_from_IWICBitmapDecoder(IWICBitmapDecoder *iface)
599 return CONTAINING_RECORD(iface, GifDecoder, IWICBitmapDecoder_iface);
602 static inline GifDecoder *impl_from_IWICMetadataBlockReader(IWICMetadataBlockReader *iface)
604 return CONTAINING_RECORD(iface, GifDecoder, IWICMetadataBlockReader_iface);
607 static inline GifFrameDecode *impl_from_IWICBitmapFrameDecode(IWICBitmapFrameDecode *iface)
609 return CONTAINING_RECORD(iface, GifFrameDecode, IWICBitmapFrameDecode_iface);
612 static inline GifFrameDecode *frame_from_IWICMetadataBlockReader(IWICMetadataBlockReader *iface)
614 return CONTAINING_RECORD(iface, GifFrameDecode, IWICMetadataBlockReader_iface);
617 static HRESULT WINAPI GifFrameDecode_QueryInterface(IWICBitmapFrameDecode *iface, REFIID iid,
618 void **ppv)
620 GifFrameDecode *This = impl_from_IWICBitmapFrameDecode(iface);
621 TRACE("(%p,%s,%p)\n", iface, debugstr_guid(iid), ppv);
623 if (!ppv) return E_INVALIDARG;
625 if (IsEqualIID(&IID_IUnknown, iid) ||
626 IsEqualIID(&IID_IWICBitmapSource, iid) ||
627 IsEqualIID(&IID_IWICBitmapFrameDecode, iid))
629 *ppv = &This->IWICBitmapFrameDecode_iface;
631 else if (IsEqualIID(&IID_IWICMetadataBlockReader, iid))
633 *ppv = &This->IWICMetadataBlockReader_iface;
635 else
637 *ppv = NULL;
638 return E_NOINTERFACE;
641 IUnknown_AddRef((IUnknown*)*ppv);
642 return S_OK;
645 static ULONG WINAPI GifFrameDecode_AddRef(IWICBitmapFrameDecode *iface)
647 GifFrameDecode *This = impl_from_IWICBitmapFrameDecode(iface);
648 ULONG ref = InterlockedIncrement(&This->ref);
650 TRACE("(%p) refcount=%u\n", iface, ref);
652 return ref;
655 static ULONG WINAPI GifFrameDecode_Release(IWICBitmapFrameDecode *iface)
657 GifFrameDecode *This = impl_from_IWICBitmapFrameDecode(iface);
658 ULONG ref = InterlockedDecrement(&This->ref);
660 TRACE("(%p) refcount=%u\n", iface, ref);
662 if (ref == 0)
664 IWICBitmapDecoder_Release(&This->parent->IWICBitmapDecoder_iface);
665 HeapFree(GetProcessHeap(), 0, This);
668 return ref;
671 static HRESULT WINAPI GifFrameDecode_GetSize(IWICBitmapFrameDecode *iface,
672 UINT *puiWidth, UINT *puiHeight)
674 GifFrameDecode *This = impl_from_IWICBitmapFrameDecode(iface);
675 TRACE("(%p,%p,%p)\n", iface, puiWidth, puiHeight);
677 *puiWidth = This->frame->ImageDesc.Width;
678 *puiHeight = This->frame->ImageDesc.Height;
680 return S_OK;
683 static HRESULT WINAPI GifFrameDecode_GetPixelFormat(IWICBitmapFrameDecode *iface,
684 WICPixelFormatGUID *pPixelFormat)
686 memcpy(pPixelFormat, &GUID_WICPixelFormat8bppIndexed, sizeof(GUID));
688 return S_OK;
691 static HRESULT WINAPI GifFrameDecode_GetResolution(IWICBitmapFrameDecode *iface,
692 double *pDpiX, double *pDpiY)
694 GifFrameDecode *This = impl_from_IWICBitmapFrameDecode(iface);
695 const GifWord aspect_word = This->parent->gif->SAspectRatio;
696 const double aspect = (aspect_word > 0) ? ((aspect_word + 15.0) / 64.0) : 1.0;
697 TRACE("(%p,%p,%p)\n", iface, pDpiX, pDpiY);
699 *pDpiX = 96.0 / aspect;
700 *pDpiY = 96.0;
702 return S_OK;
705 static HRESULT WINAPI GifFrameDecode_CopyPalette(IWICBitmapFrameDecode *iface,
706 IWICPalette *pIPalette)
708 GifFrameDecode *This = impl_from_IWICBitmapFrameDecode(iface);
709 WICColor colors[256];
710 ColorMapObject *cm = This->frame->ImageDesc.ColorMap;
711 int i, trans;
712 ExtensionBlock *eb;
713 TRACE("(%p,%p)\n", iface, pIPalette);
715 if (!cm) cm = This->parent->gif->SColorMap;
717 if (cm->ColorCount > 256)
719 ERR("GIF contains %i colors???\n", cm->ColorCount);
720 return E_FAIL;
723 for (i = 0; i < cm->ColorCount; i++) {
724 colors[i] = 0xff000000| /* alpha */
725 cm->Colors[i].Red << 16|
726 cm->Colors[i].Green << 8|
727 cm->Colors[i].Blue;
730 /* look for the transparent color extension */
731 for (i = 0; i < This->frame->Extensions.ExtensionBlockCount; ++i) {
732 eb = This->frame->Extensions.ExtensionBlocks + i;
733 if (eb->Function == GRAPHICS_EXT_FUNC_CODE && eb->ByteCount == 8) {
734 if (eb->Bytes[3] & 1) {
735 trans = (unsigned char)eb->Bytes[6];
736 colors[trans] &= 0xffffff; /* set alpha to 0 */
737 break;
742 return IWICPalette_InitializeCustom(pIPalette, colors, cm->ColorCount);
745 static HRESULT copy_interlaced_pixels(const BYTE *srcbuffer,
746 UINT srcwidth, UINT srcheight, INT srcstride, const WICRect *rc,
747 UINT dststride, UINT dstbuffersize, BYTE *dstbuffer)
749 UINT row_offset; /* number of bytes into the source rows where the data starts */
750 const BYTE *src;
751 BYTE *dst;
752 UINT y;
753 WICRect rect;
755 if (!rc)
757 rect.X = 0;
758 rect.Y = 0;
759 rect.Width = srcwidth;
760 rect.Height = srcheight;
761 rc = &rect;
763 else
765 if (rc->X < 0 || rc->Y < 0 || rc->X+rc->Width > srcwidth || rc->Y+rc->Height > srcheight)
766 return E_INVALIDARG;
769 if (dststride < rc->Width)
770 return E_INVALIDARG;
772 if ((dststride * rc->Height) > dstbuffersize)
773 return E_INVALIDARG;
775 row_offset = rc->X;
777 dst = dstbuffer;
778 for (y=rc->Y; y-rc->Y < rc->Height; y++)
780 if (y%8 == 0)
781 src = srcbuffer + srcstride * (y/8);
782 else if (y%4 == 0)
783 src = srcbuffer + srcstride * ((srcheight+7)/8 + y/8);
784 else if (y%2 == 0)
785 src = srcbuffer + srcstride * ((srcheight+3)/4 + y/4);
786 else /* y%2 == 1 */
787 src = srcbuffer + srcstride * ((srcheight+1)/2 + y/2);
788 src += row_offset;
789 memcpy(dst, src, rc->Width);
790 dst += dststride;
792 return S_OK;
795 static HRESULT WINAPI GifFrameDecode_CopyPixels(IWICBitmapFrameDecode *iface,
796 const WICRect *prc, UINT cbStride, UINT cbBufferSize, BYTE *pbBuffer)
798 GifFrameDecode *This = impl_from_IWICBitmapFrameDecode(iface);
799 TRACE("(%p,%p,%u,%u,%p)\n", iface, prc, cbStride, cbBufferSize, pbBuffer);
801 if (This->frame->ImageDesc.Interlace)
803 return copy_interlaced_pixels(This->frame->RasterBits, This->frame->ImageDesc.Width,
804 This->frame->ImageDesc.Height, This->frame->ImageDesc.Width,
805 prc, cbStride, cbBufferSize, pbBuffer);
807 else
809 return copy_pixels(8, This->frame->RasterBits, This->frame->ImageDesc.Width,
810 This->frame->ImageDesc.Height, This->frame->ImageDesc.Width,
811 prc, cbStride, cbBufferSize, pbBuffer);
815 static HRESULT WINAPI GifFrameDecode_GetMetadataQueryReader(IWICBitmapFrameDecode *iface,
816 IWICMetadataQueryReader **ppIMetadataQueryReader)
818 TRACE("(%p,%p)\n", iface, ppIMetadataQueryReader);
819 return WINCODEC_ERR_UNSUPPORTEDOPERATION;
822 static HRESULT WINAPI GifFrameDecode_GetColorContexts(IWICBitmapFrameDecode *iface,
823 UINT cCount, IWICColorContext **ppIColorContexts, UINT *pcActualCount)
825 TRACE("(%p,%u,%p,%p)\n", iface, cCount, ppIColorContexts, pcActualCount);
826 return WINCODEC_ERR_UNSUPPORTEDOPERATION;
829 static HRESULT WINAPI GifFrameDecode_GetThumbnail(IWICBitmapFrameDecode *iface,
830 IWICBitmapSource **ppIThumbnail)
832 TRACE("(%p,%p)\n", iface, ppIThumbnail);
833 return WINCODEC_ERR_CODECNOTHUMBNAIL;
836 static const IWICBitmapFrameDecodeVtbl GifFrameDecode_Vtbl = {
837 GifFrameDecode_QueryInterface,
838 GifFrameDecode_AddRef,
839 GifFrameDecode_Release,
840 GifFrameDecode_GetSize,
841 GifFrameDecode_GetPixelFormat,
842 GifFrameDecode_GetResolution,
843 GifFrameDecode_CopyPalette,
844 GifFrameDecode_CopyPixels,
845 GifFrameDecode_GetMetadataQueryReader,
846 GifFrameDecode_GetColorContexts,
847 GifFrameDecode_GetThumbnail
850 static HRESULT WINAPI GifFrameDecode_Block_QueryInterface(IWICMetadataBlockReader *iface,
851 REFIID iid, void **ppv)
853 GifFrameDecode *This = frame_from_IWICMetadataBlockReader(iface);
854 return IWICBitmapFrameDecode_QueryInterface(&This->IWICBitmapFrameDecode_iface, iid, ppv);
857 static ULONG WINAPI GifFrameDecode_Block_AddRef(IWICMetadataBlockReader *iface)
859 GifFrameDecode *This = frame_from_IWICMetadataBlockReader(iface);
860 return IWICBitmapFrameDecode_AddRef(&This->IWICBitmapFrameDecode_iface);
863 static ULONG WINAPI GifFrameDecode_Block_Release(IWICMetadataBlockReader *iface)
865 GifFrameDecode *This = frame_from_IWICMetadataBlockReader(iface);
866 return IWICBitmapFrameDecode_Release(&This->IWICBitmapFrameDecode_iface);
869 static HRESULT WINAPI GifFrameDecode_Block_GetContainerFormat(IWICMetadataBlockReader *iface,
870 GUID *guid)
872 TRACE("(%p,%p)\n", iface, guid);
874 if (!guid) return E_INVALIDARG;
876 *guid = GUID_ContainerFormatGif;
877 return S_OK;
880 static HRESULT WINAPI GifFrameDecode_Block_GetCount(IWICMetadataBlockReader *iface,
881 UINT *count)
883 GifFrameDecode *This = frame_from_IWICMetadataBlockReader(iface);
885 TRACE("%p,%p\n", iface, count);
887 if (!count) return E_INVALIDARG;
889 *count = This->frame->Extensions.ExtensionBlockCount + 1;
890 return S_OK;
893 static HRESULT create_IMD_metadata_reader(GifFrameDecode *This, IWICMetadataReader **reader)
895 HRESULT hr;
896 IWICMetadataReader *metadata_reader;
897 IWICPersistStream *persist;
898 IStream *stream;
899 struct image_descriptor IMD_data;
901 /* FIXME: Use IWICComponentFactory_CreateMetadataReader once it's implemented */
903 hr = CoCreateInstance(&CLSID_WICIMDMetadataReader, NULL, CLSCTX_INPROC_SERVER,
904 &IID_IWICMetadataReader, (void **)&metadata_reader);
905 if (FAILED(hr)) return hr;
907 hr = IWICMetadataReader_QueryInterface(metadata_reader, &IID_IWICPersistStream, (void **)&persist);
908 if (FAILED(hr))
910 IWICMetadataReader_Release(metadata_reader);
911 return hr;
914 /* recreate IMD structure from GIF decoder data */
915 IMD_data.left = This->frame->ImageDesc.Left;
916 IMD_data.top = This->frame->ImageDesc.Top;
917 IMD_data.width = This->frame->ImageDesc.Width;
918 IMD_data.height = This->frame->ImageDesc.Height;
919 IMD_data.packed = 0;
920 /* interlace_flag */
921 IMD_data.packed |= This->frame->ImageDesc.Interlace ? (1 << 6) : 0;
922 if (This->frame->ImageDesc.ColorMap)
924 /* local_color_table_flag */
925 IMD_data.packed |= 1 << 7;
926 /* local_color_table_size */
927 IMD_data.packed |= This->frame->ImageDesc.ColorMap->BitsPerPixel - 1;
928 /* sort_flag */
929 IMD_data.packed |= This->frame->ImageDesc.ColorMap->SortFlag ? 0x20 : 0;
932 stream = create_stream(&IMD_data, sizeof(IMD_data));
933 IWICPersistStream_LoadEx(persist, stream, NULL, WICPersistOptionsDefault);
934 IStream_Release(stream);
936 IWICPersistStream_Release(persist);
938 *reader = metadata_reader;
939 return S_OK;
942 static HRESULT WINAPI GifFrameDecode_Block_GetReaderByIndex(IWICMetadataBlockReader *iface,
943 UINT index, IWICMetadataReader **reader)
945 GifFrameDecode *This = frame_from_IWICMetadataBlockReader(iface);
946 int i, gce_index = -1, gce_skipped = 0;
948 TRACE("(%p,%u,%p)\n", iface, index, reader);
950 if (!reader) return E_INVALIDARG;
952 if (index == 0)
953 return create_IMD_metadata_reader(This, reader);
955 if (index >= This->frame->Extensions.ExtensionBlockCount + 1)
956 return E_INVALIDARG;
958 for (i = 0; i < This->frame->Extensions.ExtensionBlockCount; i++)
960 const CLSID *clsid;
961 const void *data;
962 int data_size;
964 if (index != i + 1 - gce_skipped) continue;
966 if (This->frame->Extensions.ExtensionBlocks[i].Function == GRAPHICS_EXT_FUNC_CODE)
968 gce_index = i;
969 gce_skipped = 1;
970 continue;
972 else if (This->frame->Extensions.ExtensionBlocks[i].Function == COMMENT_EXT_FUNC_CODE)
974 clsid = &CLSID_WICGifCommentMetadataReader;
975 data = This->frame->Extensions.ExtensionBlocks[i].Bytes;
976 data_size = This->frame->Extensions.ExtensionBlocks[i].ByteCount;
978 else
980 clsid = &CLSID_WICUnknownMetadataReader;
981 data = This->frame->Extensions.ExtensionBlocks[i].Bytes;
982 data_size = This->frame->Extensions.ExtensionBlocks[i].ByteCount;
984 return create_metadata_reader(data, data_size, clsid, reader);
987 if (gce_index == -1) return E_INVALIDARG;
989 return create_metadata_reader(This->frame->Extensions.ExtensionBlocks[gce_index].Bytes + 3,
990 This->frame->Extensions.ExtensionBlocks[gce_index].ByteCount - 4,
991 &CLSID_WICGCEMetadataReader, reader);
994 static HRESULT WINAPI GifFrameDecode_Block_GetEnumerator(IWICMetadataBlockReader *iface,
995 IEnumUnknown **enumerator)
997 FIXME("(%p,%p): stub\n", iface, enumerator);
998 return E_NOTIMPL;
1001 static const IWICMetadataBlockReaderVtbl GifFrameDecode_BlockVtbl =
1003 GifFrameDecode_Block_QueryInterface,
1004 GifFrameDecode_Block_AddRef,
1005 GifFrameDecode_Block_Release,
1006 GifFrameDecode_Block_GetContainerFormat,
1007 GifFrameDecode_Block_GetCount,
1008 GifFrameDecode_Block_GetReaderByIndex,
1009 GifFrameDecode_Block_GetEnumerator
1012 static HRESULT WINAPI GifDecoder_QueryInterface(IWICBitmapDecoder *iface, REFIID iid,
1013 void **ppv)
1015 GifDecoder *This = impl_from_IWICBitmapDecoder(iface);
1016 TRACE("(%p,%s,%p)\n", iface, debugstr_guid(iid), ppv);
1018 if (!ppv) return E_INVALIDARG;
1020 if (IsEqualIID(&IID_IUnknown, iid) ||
1021 IsEqualIID(&IID_IWICBitmapDecoder, iid))
1023 *ppv = &This->IWICBitmapDecoder_iface;
1025 else if (IsEqualIID(&IID_IWICMetadataBlockReader, iid))
1027 *ppv = &This->IWICMetadataBlockReader_iface;
1029 else
1031 *ppv = NULL;
1032 return E_NOINTERFACE;
1035 IUnknown_AddRef((IUnknown*)*ppv);
1036 return S_OK;
1039 static ULONG WINAPI GifDecoder_AddRef(IWICBitmapDecoder *iface)
1041 GifDecoder *This = impl_from_IWICBitmapDecoder(iface);
1042 ULONG ref = InterlockedIncrement(&This->ref);
1044 TRACE("(%p) refcount=%u\n", iface, ref);
1046 return ref;
1049 static ULONG WINAPI GifDecoder_Release(IWICBitmapDecoder *iface)
1051 GifDecoder *This = impl_from_IWICBitmapDecoder(iface);
1052 ULONG ref = InterlockedDecrement(&This->ref);
1054 TRACE("(%p) refcount=%u\n", iface, ref);
1056 if (ref == 0)
1058 This->lock.DebugInfo->Spare[0] = 0;
1059 DeleteCriticalSection(&This->lock);
1060 DGifCloseFile(This->gif);
1061 HeapFree(GetProcessHeap(), 0, This);
1064 return ref;
1067 static HRESULT WINAPI GifDecoder_QueryCapability(IWICBitmapDecoder *iface, IStream *stream,
1068 DWORD *capability)
1070 HRESULT hr;
1072 TRACE("(%p,%p,%p)\n", iface, stream, capability);
1074 if (!stream || !capability) return E_INVALIDARG;
1076 hr = IWICBitmapDecoder_Initialize(iface, stream, WICDecodeMetadataCacheOnDemand);
1077 if (hr != S_OK) return hr;
1079 *capability = WICBitmapDecoderCapabilityCanDecodeAllImages |
1080 WICBitmapDecoderCapabilityCanDecodeSomeImages |
1081 WICBitmapDecoderCapabilityCanEnumerateMetadata;
1082 return S_OK;
1085 static int _gif_inputfunc(GifFileType *gif, GifByteType *data, int len) {
1086 IStream *stream = gif->UserData;
1087 ULONG bytesread;
1088 HRESULT hr;
1090 if (!stream)
1092 ERR("attempting to read file after initialization\n");
1093 return 0;
1096 hr = IStream_Read(stream, data, len, &bytesread);
1097 if (FAILED(hr)) bytesread = 0;
1098 return bytesread;
1101 static HRESULT WINAPI GifDecoder_Initialize(IWICBitmapDecoder *iface, IStream *pIStream,
1102 WICDecodeOptions cacheOptions)
1104 GifDecoder *This = impl_from_IWICBitmapDecoder(iface);
1105 LARGE_INTEGER seek;
1106 int ret;
1108 TRACE("(%p,%p,%x)\n", iface, pIStream, cacheOptions);
1110 EnterCriticalSection(&This->lock);
1112 if (This->initialized || This->gif)
1114 WARN("already initialized\n");
1115 LeaveCriticalSection(&This->lock);
1116 return WINCODEC_ERR_WRONGSTATE;
1119 /* seek to start of stream */
1120 seek.QuadPart = 0;
1121 IStream_Seek(pIStream, seek, STREAM_SEEK_SET, NULL);
1123 /* read all data from the stream */
1124 This->gif = DGifOpen((void*)pIStream, _gif_inputfunc);
1125 if (!This->gif)
1127 LeaveCriticalSection(&This->lock);
1128 return E_FAIL;
1131 ret = DGifSlurp(This->gif);
1132 if (ret == GIF_ERROR)
1134 LeaveCriticalSection(&This->lock);
1135 return E_FAIL;
1138 /* make sure we don't use the stream after this method returns */
1139 This->gif->UserData = NULL;
1141 seek.QuadPart = 0;
1142 IStream_Seek(pIStream, seek, STREAM_SEEK_SET, NULL);
1143 IStream_Read(pIStream, This->LSD_data, sizeof(This->LSD_data), NULL);
1145 This->initialized = TRUE;
1147 LeaveCriticalSection(&This->lock);
1149 return S_OK;
1152 static HRESULT WINAPI GifDecoder_GetContainerFormat(IWICBitmapDecoder *iface,
1153 GUID *pguidContainerFormat)
1155 memcpy(pguidContainerFormat, &GUID_ContainerFormatGif, sizeof(GUID));
1156 return S_OK;
1159 static HRESULT WINAPI GifDecoder_GetDecoderInfo(IWICBitmapDecoder *iface,
1160 IWICBitmapDecoderInfo **ppIDecoderInfo)
1162 HRESULT hr;
1163 IWICComponentInfo *compinfo;
1165 TRACE("(%p,%p)\n", iface, ppIDecoderInfo);
1167 hr = CreateComponentInfo(&CLSID_WICGifDecoder, &compinfo);
1168 if (FAILED(hr)) return hr;
1170 hr = IWICComponentInfo_QueryInterface(compinfo, &IID_IWICBitmapDecoderInfo,
1171 (void**)ppIDecoderInfo);
1173 IWICComponentInfo_Release(compinfo);
1175 return hr;
1178 static HRESULT WINAPI GifDecoder_CopyPalette(IWICBitmapDecoder *iface, IWICPalette *palette)
1180 GifDecoder *This = impl_from_IWICBitmapDecoder(iface);
1181 WICColor colors[256];
1182 ColorMapObject *cm;
1183 int i, trans, count;
1184 ExtensionBlock *eb;
1186 TRACE("(%p,%p)\n", iface, palette);
1188 cm = This->gif->SColorMap;
1189 if (cm)
1191 if (cm->ColorCount > 256)
1193 ERR("GIF contains invalid number of colors: %d\n", cm->ColorCount);
1194 return E_FAIL;
1197 for (i = 0; i < cm->ColorCount; i++)
1199 colors[i] = 0xff000000 | /* alpha */
1200 cm->Colors[i].Red << 16 |
1201 cm->Colors[i].Green << 8 |
1202 cm->Colors[i].Blue;
1205 count = cm->ColorCount;
1207 else
1209 colors[0] = 0xff000000;
1210 colors[1] = 0xffffffff;
1212 for (i = 2; i < 256; i++)
1213 colors[i] = 0xff000000;
1215 count = 256;
1218 /* look for the transparent color extension */
1219 for (i = 0; i < This->gif->SavedImages[This->current_frame].Extensions.ExtensionBlockCount; i++)
1221 eb = This->gif->SavedImages[This->current_frame].Extensions.ExtensionBlocks + i;
1222 if (eb->Function == GRAPHICS_EXT_FUNC_CODE && eb->ByteCount == 8)
1224 if (eb->Bytes[3] & 1)
1226 trans = (unsigned char)eb->Bytes[6];
1227 colors[trans] &= 0xffffff; /* set alpha to 0 */
1228 break;
1233 return IWICPalette_InitializeCustom(palette, colors, count);
1236 static HRESULT WINAPI GifDecoder_GetMetadataQueryReader(IWICBitmapDecoder *iface,
1237 IWICMetadataQueryReader **ppIMetadataQueryReader)
1239 TRACE("(%p,%p)\n", iface, ppIMetadataQueryReader);
1240 return WINCODEC_ERR_UNSUPPORTEDOPERATION;
1243 static HRESULT WINAPI GifDecoder_GetPreview(IWICBitmapDecoder *iface,
1244 IWICBitmapSource **ppIBitmapSource)
1246 TRACE("(%p,%p)\n", iface, ppIBitmapSource);
1247 return WINCODEC_ERR_UNSUPPORTEDOPERATION;
1250 static HRESULT WINAPI GifDecoder_GetColorContexts(IWICBitmapDecoder *iface,
1251 UINT cCount, IWICColorContext **ppIColorContexts, UINT *pcActualCount)
1253 TRACE("(%p,%u,%p,%p)\n", iface, cCount, ppIColorContexts, pcActualCount);
1254 return WINCODEC_ERR_UNSUPPORTEDOPERATION;
1257 static HRESULT WINAPI GifDecoder_GetThumbnail(IWICBitmapDecoder *iface,
1258 IWICBitmapSource **ppIThumbnail)
1260 TRACE("(%p,%p)\n", iface, ppIThumbnail);
1261 return WINCODEC_ERR_CODECNOTHUMBNAIL;
1264 static HRESULT WINAPI GifDecoder_GetFrameCount(IWICBitmapDecoder *iface,
1265 UINT *pCount)
1267 GifDecoder *This = impl_from_IWICBitmapDecoder(iface);
1269 if (!pCount) return E_INVALIDARG;
1271 EnterCriticalSection(&This->lock);
1272 *pCount = This->gif ? This->gif->ImageCount : 0;
1273 LeaveCriticalSection(&This->lock);
1275 TRACE("(%p) <-- %d\n", iface, *pCount);
1277 return S_OK;
1280 static HRESULT WINAPI GifDecoder_GetFrame(IWICBitmapDecoder *iface,
1281 UINT index, IWICBitmapFrameDecode **ppIBitmapFrame)
1283 GifDecoder *This = impl_from_IWICBitmapDecoder(iface);
1284 GifFrameDecode *result;
1285 TRACE("(%p,%u,%p)\n", iface, index, ppIBitmapFrame);
1287 if (!This->initialized) return WINCODEC_ERR_FRAMEMISSING;
1289 if (index >= This->gif->ImageCount) return E_INVALIDARG;
1291 result = HeapAlloc(GetProcessHeap(), 0, sizeof(GifFrameDecode));
1292 if (!result) return E_OUTOFMEMORY;
1294 result->IWICBitmapFrameDecode_iface.lpVtbl = &GifFrameDecode_Vtbl;
1295 result->IWICMetadataBlockReader_iface.lpVtbl = &GifFrameDecode_BlockVtbl;
1296 result->ref = 1;
1297 result->frame = &This->gif->SavedImages[index];
1298 IWICBitmapDecoder_AddRef(iface);
1299 result->parent = This;
1300 This->current_frame = index;
1302 *ppIBitmapFrame = &result->IWICBitmapFrameDecode_iface;
1304 return S_OK;
1307 static const IWICBitmapDecoderVtbl GifDecoder_Vtbl = {
1308 GifDecoder_QueryInterface,
1309 GifDecoder_AddRef,
1310 GifDecoder_Release,
1311 GifDecoder_QueryCapability,
1312 GifDecoder_Initialize,
1313 GifDecoder_GetContainerFormat,
1314 GifDecoder_GetDecoderInfo,
1315 GifDecoder_CopyPalette,
1316 GifDecoder_GetMetadataQueryReader,
1317 GifDecoder_GetPreview,
1318 GifDecoder_GetColorContexts,
1319 GifDecoder_GetThumbnail,
1320 GifDecoder_GetFrameCount,
1321 GifDecoder_GetFrame
1324 static HRESULT WINAPI GifDecoder_Block_QueryInterface(IWICMetadataBlockReader *iface,
1325 REFIID iid, void **ppv)
1327 GifDecoder *This = impl_from_IWICMetadataBlockReader(iface);
1328 return IWICBitmapDecoder_QueryInterface(&This->IWICBitmapDecoder_iface, iid, ppv);
1331 static ULONG WINAPI GifDecoder_Block_AddRef(IWICMetadataBlockReader *iface)
1333 GifDecoder *This = impl_from_IWICMetadataBlockReader(iface);
1334 return IWICBitmapDecoder_AddRef(&This->IWICBitmapDecoder_iface);
1337 static ULONG WINAPI GifDecoder_Block_Release(IWICMetadataBlockReader *iface)
1339 GifDecoder *This = impl_from_IWICMetadataBlockReader(iface);
1340 return IWICBitmapDecoder_Release(&This->IWICBitmapDecoder_iface);
1343 static HRESULT WINAPI GifDecoder_Block_GetContainerFormat(IWICMetadataBlockReader *iface,
1344 GUID *guid)
1346 TRACE("(%p,%p)\n", iface, guid);
1348 if (!guid) return E_INVALIDARG;
1350 *guid = GUID_ContainerFormatGif;
1351 return S_OK;
1354 static HRESULT WINAPI GifDecoder_Block_GetCount(IWICMetadataBlockReader *iface,
1355 UINT *count)
1357 GifDecoder *This = impl_from_IWICMetadataBlockReader(iface);
1359 TRACE("%p,%p\n", iface, count);
1361 if (!count) return E_INVALIDARG;
1363 *count = This->gif->Extensions.ExtensionBlockCount + 1;
1364 return S_OK;
1367 static HRESULT WINAPI GifDecoder_Block_GetReaderByIndex(IWICMetadataBlockReader *iface,
1368 UINT index, IWICMetadataReader **reader)
1370 GifDecoder *This = impl_from_IWICMetadataBlockReader(iface);
1371 int i;
1373 TRACE("(%p,%u,%p)\n", iface, index, reader);
1375 if (!reader) return E_INVALIDARG;
1377 if (index == 0)
1378 return create_metadata_reader(This->LSD_data, sizeof(This->LSD_data),
1379 &CLSID_WICLSDMetadataReader, reader);
1381 for (i = 0; i < This->gif->Extensions.ExtensionBlockCount; i++)
1383 const CLSID *clsid;
1385 if (index != i + 1) continue;
1387 if (This->gif->Extensions.ExtensionBlocks[i].Function == APPLICATION_EXT_FUNC_CODE)
1388 clsid = &CLSID_WICAPEMetadataReader;
1389 else if (This->gif->Extensions.ExtensionBlocks[i].Function == COMMENT_EXT_FUNC_CODE)
1390 clsid = &CLSID_WICGifCommentMetadataReader;
1391 else
1392 clsid = &CLSID_WICUnknownMetadataReader;
1394 return create_metadata_reader(This->gif->Extensions.ExtensionBlocks[i].Bytes,
1395 This->gif->Extensions.ExtensionBlocks[i].ByteCount,
1396 clsid, reader);
1399 return E_INVALIDARG;
1402 static HRESULT WINAPI GifDecoder_Block_GetEnumerator(IWICMetadataBlockReader *iface,
1403 IEnumUnknown **enumerator)
1405 FIXME("(%p,%p): stub\n", iface, enumerator);
1406 return E_NOTIMPL;
1409 static const IWICMetadataBlockReaderVtbl GifDecoder_BlockVtbl =
1411 GifDecoder_Block_QueryInterface,
1412 GifDecoder_Block_AddRef,
1413 GifDecoder_Block_Release,
1414 GifDecoder_Block_GetContainerFormat,
1415 GifDecoder_Block_GetCount,
1416 GifDecoder_Block_GetReaderByIndex,
1417 GifDecoder_Block_GetEnumerator
1420 HRESULT GifDecoder_CreateInstance(REFIID iid, void** ppv)
1422 GifDecoder *This;
1423 HRESULT ret;
1425 TRACE("(%s,%p)\n", debugstr_guid(iid), ppv);
1427 *ppv = NULL;
1429 This = HeapAlloc(GetProcessHeap(), 0, sizeof(GifDecoder));
1430 if (!This) return E_OUTOFMEMORY;
1432 This->IWICBitmapDecoder_iface.lpVtbl = &GifDecoder_Vtbl;
1433 This->IWICMetadataBlockReader_iface.lpVtbl = &GifDecoder_BlockVtbl;
1434 This->ref = 1;
1435 This->initialized = FALSE;
1436 This->gif = NULL;
1437 This->current_frame = 0;
1438 InitializeCriticalSection(&This->lock);
1439 This->lock.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": GifDecoder.lock");
1441 ret = IWICBitmapDecoder_QueryInterface(&This->IWICBitmapDecoder_iface, iid, ppv);
1442 IWICBitmapDecoder_Release(&This->IWICBitmapDecoder_iface);
1444 return ret;