ReactOS 0.4.15-dev-7788-g1ad9096
bitmap.c
Go to the documentation of this file.
1/*
2 * Copyright 2012 Vincent Povirk for CodeWeavers
3 * Copyright 2016 Dmitry Timoshkov
4 *
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.
9 *
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.
14 *
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
18 */
19
20#ifndef __REACTOS__
21#include "config.h"
22#endif
23
24#include <stdarg.h>
25
26#define COBJMACROS
27
28#include "windef.h"
29#include "winbase.h"
30#include "objbase.h"
31
32#include "wincodecs_private.h"
33
34#include "wine/asm.h"
35#include "wine/debug.h"
36
38
39/* WARNING: .NET Media Integration Layer (MIL) directly dereferences
40 * BitmapImpl members and depends on its exact layout.
41 */
42typedef struct BitmapImpl {
45 IMILBitmap IMILBitmap_iface;
47 IMILUnknown2 IMILUnknown2_iface;
50 LONG lock; /* 0 if not locked, -1 if locked for writing, count if locked for reading */
52 void *view; /* used if data is a section created by an application */
53 UINT offset; /* offset into view */
58 double dpix, dpiy;
61
62typedef struct BitmapLockImpl {
69
71{
72 return CONTAINING_RECORD(iface, BitmapImpl, IWICBitmap_iface);
73}
74
75static inline BitmapImpl *impl_from_IMILBitmap(IMILBitmap *iface)
76{
77 return CONTAINING_RECORD(iface, BitmapImpl, IMILBitmap_iface);
78}
79
81{
82 return CONTAINING_RECORD(iface, BitmapImpl, IMILUnknown1_iface);
83}
84
85static inline BitmapImpl *impl_from_IMILUnknown2(IMILUnknown2 *iface)
86{
87 return CONTAINING_RECORD(iface, BitmapImpl, IMILUnknown2_iface);
88}
89
91{
92 return CONTAINING_RECORD(iface, BitmapLockImpl, IWICBitmapLock_iface);
93}
94
96{
97 if (write)
98 {
99 return 0 == InterlockedCompareExchange(&This->lock, -1, 0);
100 }
101 else
102 {
103 while (1)
104 {
105 LONG prev_val = This->lock;
106 if (prev_val == -1)
107 return FALSE;
108 if (prev_val == InterlockedCompareExchange(&This->lock, prev_val+1, prev_val))
109 return TRUE;
110 }
111 }
112}
113
115{
116 while (1)
117 {
118 LONG prev_val = This->lock, new_val;
119 if (prev_val == -1)
120 new_val = 0;
121 else
122 new_val = prev_val - 1;
123 if (prev_val == InterlockedCompareExchange(&This->lock, new_val, prev_val))
124 break;
125 }
126}
127
128
130 void **ppv)
131{
133 TRACE("(%p,%s,%p)\n", iface, debugstr_guid(iid), ppv);
134
135 if (!ppv) return E_INVALIDARG;
136
137 if (IsEqualIID(&IID_IUnknown, iid) ||
138 IsEqualIID(&IID_IWICBitmapLock, iid))
139 {
140 *ppv = &This->IWICBitmapLock_iface;
141 }
142 else
143 {
144 FIXME("unknown interface %s\n", debugstr_guid(iid));
145 *ppv = NULL;
146 return E_NOINTERFACE;
147 }
148
149 IUnknown_AddRef((IUnknown*)*ppv);
150 return S_OK;
151}
152
154{
157
158 TRACE("(%p) refcount=%u\n", iface, ref);
159
160 return ref;
161}
162
164{
167
168 TRACE("(%p) refcount=%u\n", iface, ref);
169
170 if (ref == 0)
171 {
173 IWICBitmap_Release(&This->parent->IWICBitmap_iface);
175 }
176
177 return ref;
178}
179
181 UINT *puiWidth, UINT *puiHeight)
182{
184 TRACE("(%p,%p,%p)\n", iface, puiWidth, puiHeight);
185
186 if (!puiWidth || !puiHeight)
187 return E_INVALIDARG;
188
189 *puiWidth = This->width;
190 *puiHeight = This->height;
191
192 return S_OK;
193}
194
196 UINT *pcbStride)
197{
199 TRACE("(%p,%p)\n", iface, pcbStride);
200
201 if (!pcbStride)
202 return E_INVALIDARG;
203
204 *pcbStride = This->parent->stride;
205
206 return S_OK;
207}
208
210 UINT *pcbBufferSize, BYTE **ppbData)
211{
213 TRACE("(%p,%p,%p)\n", iface, pcbBufferSize, ppbData);
214
215 if (!pcbBufferSize || !ppbData)
216 return E_INVALIDARG;
217
218 *pcbBufferSize = This->parent->stride * (This->height - 1) +
219 ((This->parent->bpp * This->width) + 7)/8;
220 *ppbData = This->data;
221
222 return S_OK;
223}
224
226 WICPixelFormatGUID *pPixelFormat)
227{
229 TRACE("(%p,%p)\n", iface, pPixelFormat);
230
231 return IWICBitmap_GetPixelFormat(&This->parent->IWICBitmap_iface, pPixelFormat);
232}
233
234static const IWICBitmapLockVtbl BitmapLockImpl_Vtbl = {
242};
243
245 void **ppv)
246{
248 TRACE("(%p,%s,%p)\n", iface, debugstr_guid(iid), ppv);
249
250 if (!ppv) return E_INVALIDARG;
251
252 if (IsEqualIID(&IID_IUnknown, iid) ||
253 IsEqualIID(&IID_IWICBitmapSource, iid) ||
254 IsEqualIID(&IID_IWICBitmap, iid))
255 {
256 *ppv = &This->IWICBitmap_iface;
257 }
258 else if (IsEqualIID(&IID_IMILBitmap, iid) ||
259 IsEqualIID(&IID_IMILBitmapSource, iid))
260 {
261 *ppv = &This->IMILBitmap_iface;
262 }
263 else
264 {
265 FIXME("unknown interface %s\n", debugstr_guid(iid));
266 *ppv = NULL;
267 return E_NOINTERFACE;
268 }
269
270 IUnknown_AddRef((IUnknown*)*ppv);
271 return S_OK;
272}
273
275{
278
279 TRACE("(%p) refcount=%u\n", iface, ref);
280
281 return ref;
282}
283
285{
288
289 TRACE("(%p) refcount=%u\n", iface, ref);
290
291 if (ref == 0)
292 {
293 if (This->palette) IWICPalette_Release(This->palette);
294 This->cs.DebugInfo->Spare[0] = 0;
296 if (This->view)
297 UnmapViewOfFile(This->view);
298 else
299 HeapFree(GetProcessHeap(), 0, This->data);
301 }
302
303 return ref;
304}
305
307 UINT *puiWidth, UINT *puiHeight)
308{
310 TRACE("(%p,%p,%p)\n", iface, puiWidth, puiHeight);
311
312 if (!puiWidth || !puiHeight)
313 return E_INVALIDARG;
314
315 *puiWidth = This->width;
316 *puiHeight = This->height;
317
318 return S_OK;
319}
320
322 WICPixelFormatGUID *pPixelFormat)
323{
325 TRACE("(%p,%p)\n", iface, pPixelFormat);
326
327 if (!pPixelFormat)
328 return E_INVALIDARG;
329
330 memcpy(pPixelFormat, &This->pixelformat, sizeof(GUID));
331
332 return S_OK;
333}
334
336 double *pDpiX, double *pDpiY)
337{
339 TRACE("(%p,%p,%p)\n", iface, pDpiX, pDpiY);
340
341 if (!pDpiX || !pDpiY)
342 return E_INVALIDARG;
343
345 *pDpiX = This->dpix;
346 *pDpiY = This->dpiy;
348
349 return S_OK;
350}
351
353 IWICPalette *pIPalette)
354{
356 TRACE("(%p,%p)\n", iface, pIPalette);
357
358 if (!This->palette_set)
360
361 return IWICPalette_InitializeFromPalette(pIPalette, This->palette);
362}
363
365 const WICRect *prc, UINT cbStride, UINT cbBufferSize, BYTE *pbBuffer)
366{
368 TRACE("(%p,%s,%u,%u,%p)\n", iface, debug_wic_rect(prc), cbStride, cbBufferSize, pbBuffer);
369
370 return copy_pixels(This->bpp, This->data, This->width, This->height,
371 This->stride, prc, cbStride, cbBufferSize, pbBuffer);
372}
373
374static HRESULT WINAPI BitmapImpl_Lock(IWICBitmap *iface, const WICRect *prcLock,
375 DWORD flags, IWICBitmapLock **ppILock)
376{
379 WICRect rc;
380
381 TRACE("(%p,%s,%x,%p)\n", iface, debug_wic_rect(prcLock), flags, ppILock);
382
383 if (!(flags & (WICBitmapLockRead|WICBitmapLockWrite)) || !ppILock)
384 return E_INVALIDARG;
385
386 if (!prcLock)
387 {
388 rc.X = rc.Y = 0;
389 rc.Width = This->width;
390 rc.Height = This->height;
391 prcLock = &rc;
392 }
393 else if (prcLock->X >= This->width || prcLock->Y >= This->height ||
394 prcLock->X + prcLock->Width > This->width ||
395 prcLock->Y + prcLock->Height > This->height ||
396 prcLock->Width <= 0 || prcLock->Height <= 0)
397 return E_INVALIDARG;
398 else if (((prcLock->X * This->bpp) % 8) != 0)
399 {
400 FIXME("Cannot lock at an X coordinate not at a full byte\n");
401 return E_FAIL;
402 }
403
405 if (!result)
406 return E_OUTOFMEMORY;
407
409 {
412 }
413
414 result->IWICBitmapLock_iface.lpVtbl = &BitmapLockImpl_Vtbl;
415 result->ref = 1;
416 result->parent = This;
417 result->width = prcLock->Width;
418 result->height = prcLock->Height;
419 result->data = This->data + This->stride * prcLock->Y +
420 (This->bpp * prcLock->X)/8;
421
422 IWICBitmap_AddRef(&This->IWICBitmap_iface);
423 *ppILock = &result->IWICBitmapLock_iface;
424
425 return S_OK;
426}
427
429{
431 HRESULT hr;
432
433 TRACE("(%p,%p)\n", iface, pIPalette);
434
435 if (!This->palette)
436 {
437 IWICPalette *new_palette;
438 hr = PaletteImpl_Create(&new_palette);
439
440 if (FAILED(hr)) return hr;
441
442 if (InterlockedCompareExchangePointer((void**)&This->palette, new_palette, NULL))
443 {
444 /* someone beat us to it */
445 IWICPalette_Release(new_palette);
446 }
447 }
448
449 hr = IWICPalette_InitializeFromPalette(This->palette, pIPalette);
450
451 if (SUCCEEDED(hr))
452 This->palette_set = 1;
453
454 return S_OK;
455}
456
458 double dpiX, double dpiY)
459{
461 TRACE("(%p,%f,%f)\n", iface, dpiX, dpiY);
462
464 This->dpix = dpiX;
465 This->dpiy = dpiY;
467
468 return S_OK;
469}
470
471static const IWICBitmapVtbl BitmapImpl_Vtbl = {
483};
484
486 void **ppv)
487{
489 TRACE("(%p,%s,%p)\n", iface, debugstr_guid(iid), ppv);
490 return IWICBitmap_QueryInterface(&This->IWICBitmap_iface, iid, ppv);
491}
492
493static ULONG WINAPI IMILBitmapImpl_AddRef(IMILBitmap *iface)
494{
496 return IWICBitmap_AddRef(&This->IWICBitmap_iface);
497}
498
499static ULONG WINAPI IMILBitmapImpl_Release(IMILBitmap *iface)
500{
502 return IWICBitmap_Release(&This->IWICBitmap_iface);
503}
504
505static HRESULT WINAPI IMILBitmapImpl_GetSize(IMILBitmap *iface,
507{
509 TRACE("(%p,%p,%p)\n", iface, width, height);
510 return IWICBitmap_GetSize(&This->IWICBitmap_iface, width, height);
511}
512
513static const struct
514{
517} pixel_fmt_map[] =
518{
519 { &GUID_WICPixelFormatDontCare, 0 },
520 { &GUID_WICPixelFormat1bppIndexed, 1 },
521 { &GUID_WICPixelFormat2bppIndexed, 2 },
522 { &GUID_WICPixelFormat4bppIndexed, 3 },
523 { &GUID_WICPixelFormat8bppIndexed, 4 },
524 { &GUID_WICPixelFormatBlackWhite, 5 },
525 { &GUID_WICPixelFormat2bppGray, 6 },
526 { &GUID_WICPixelFormat4bppGray, 7 },
527 { &GUID_WICPixelFormat8bppGray, 8 },
528 { &GUID_WICPixelFormat16bppBGR555, 9 },
529 { &GUID_WICPixelFormat16bppBGR565, 0x0a },
530 { &GUID_WICPixelFormat16bppGray, 0x0b },
531 { &GUID_WICPixelFormat24bppBGR, 0x0c },
532 { &GUID_WICPixelFormat24bppRGB, 0x0d },
533 { &GUID_WICPixelFormat32bppBGR, 0x0e },
534 { &GUID_WICPixelFormat32bppBGRA, 0x0f },
535 { &GUID_WICPixelFormat32bppPBGRA, 0x10 },
536 { &GUID_WICPixelFormat48bppRGB, 0x15 },
537 { &GUID_WICPixelFormat64bppRGBA, 0x16 },
538 { &GUID_WICPixelFormat64bppPRGBA, 0x17 },
539 { &GUID_WICPixelFormat32bppCMYK, 0x1c }
541
543 int *format)
544{
546 int i;
547
548 TRACE("(%p,%p)\n", iface, format);
549
550 if (!format) return E_INVALIDARG;
551
552 *format = 0;
553
554 for (i = 0; i < ARRAY_SIZE(pixel_fmt_map); i++)
555 {
556 if (IsEqualGUID(pixel_fmt_map[i].WIC_format, &This->pixelformat))
557 {
558 *format = pixel_fmt_map[i].enum_format;
559 break;
560 }
561 }
562
563 TRACE("=> %u\n", *format);
564 return S_OK;
565}
566
568 double *dpix, double *dpiy)
569{
571 TRACE("(%p,%p,%p)\n", iface, dpix, dpiy);
572 return IWICBitmap_GetResolution(&This->IWICBitmap_iface, dpix, dpiy);
573}
574
577{
579 TRACE("(%p,%p)\n", iface, palette);
580 return IWICBitmap_CopyPalette(&This->IWICBitmap_iface, palette);
581}
582
583static HRESULT WINAPI IMILBitmapImpl_CopyPixels(IMILBitmap *iface,
584 const WICRect *rc, UINT stride, UINT size, BYTE *buffer)
585{
587 TRACE("(%p,%p,%u,%u,%p)\n", iface, rc, stride, size, buffer);
588 return IWICBitmap_CopyPixels(&This->IWICBitmap_iface, rc, stride, size, buffer);
589}
590
591static HRESULT WINAPI IMILBitmapImpl_unknown1(IMILBitmap *iface, void **ppv)
592{
594
595 TRACE("(%p,%p)\n", iface, ppv);
596
597 if (!ppv) return E_INVALIDARG;
598
599 /* reference count is not incremented here */
600 *ppv = &This->IMILUnknown1_iface;
601
602 return S_OK;
603}
604
605static HRESULT WINAPI IMILBitmapImpl_Lock(IMILBitmap *iface, const WICRect *rc, DWORD flags, IWICBitmapLock **lock)
606{
608 TRACE("(%p,%p,%08x,%p)\n", iface, rc, flags, lock);
609 return IWICBitmap_Lock(&This->IWICBitmap_iface, rc, flags, lock);
610}
611
613{
614 TRACE("(%p,%p)\n", iface, lock);
615 IWICBitmapLock_Release(lock);
616 return S_OK;
617}
618
620{
622 TRACE("(%p,%p)\n", iface, palette);
623 return IWICBitmap_SetPalette(&This->IWICBitmap_iface, palette);
624}
625
626static HRESULT WINAPI IMILBitmapImpl_SetResolution(IMILBitmap *iface, double dpix, double dpiy)
627{
629 TRACE("(%p,%f,%f)\n", iface, dpix, dpiy);
630 return IWICBitmap_SetResolution(&This->IWICBitmap_iface, dpix, dpiy);
631}
632
633static HRESULT WINAPI IMILBitmapImpl_AddDirtyRect(IMILBitmap *iface, const WICRect *rc)
634{
635 FIXME("(%p,%p): stub\n", iface, rc);
636 return E_NOTIMPL;
637}
638
639static const IMILBitmapVtbl IMILBitmapImpl_Vtbl =
640{
655};
656
658 void **ppv)
659{
660 /* It's not clear what interface should be returned here */
661 FIXME("(%p,%s,%p): stub\n", iface, debugstr_guid(iid), ppv);
662 *ppv = NULL;
663 return E_NOINTERFACE;
664}
665
667{
669 return IWICBitmap_AddRef(&This->IWICBitmap_iface);
670}
671
673{
675 return IWICBitmap_Release(&This->IWICBitmap_iface);
676}
677
679{
680 FIXME("(%p,%p): stub\n", iface, arg);
681}
682
684{
685 FIXME("(%p,%p,%p): stub\n", iface, arg1, arg2);
686 return E_NOTIMPL;
687}
688
690{
691 FIXME("(%p,%p): stub\n", iface, arg);
692 return E_NOTIMPL;
693}
694
696{
697 FIXME("(%p,%p): stub\n", iface, arg);
698 return E_NOTIMPL;
699}
700
702{
703 FIXME("(%p,%p): stub\n", iface, arg);
704 return E_NOTIMPL;
705}
706
708{
709 FIXME("(%p,%s): stub\n", iface, wine_dbgstr_longlong(arg));
710 return E_NOTIMPL;
711}
712
714{
715 FIXME("(%p,%p): stub\n", iface, arg);
716 return E_NOTIMPL;
717}
718
720{
721 FIXME("(%p): stub\n", iface);
722 return E_NOTIMPL;
723}
724
728
729static const IMILUnknown1Vtbl IMILUnknown1Impl_Vtbl =
730{
742};
743
744static HRESULT WINAPI IMILUnknown2Impl_QueryInterface(IMILUnknown2 *iface, REFIID iid,
745 void **ppv)
746{
747 FIXME("(%p,%s,%p): stub\n", iface, debugstr_guid(iid), ppv);
748 *ppv = NULL;
749 return E_NOINTERFACE;
750}
751
752static ULONG WINAPI IMILUnknown2Impl_AddRef(IMILUnknown2 *iface)
753{
754 FIXME("(%p): stub\n", iface);
755 return 0;
756}
757
758static ULONG WINAPI IMILUnknown2Impl_Release(IMILUnknown2 *iface)
759{
760 FIXME("(%p): stub\n", iface);
761 return 0;
762}
763
764static HRESULT WINAPI IMILUnknown2Impl_unknown1(IMILUnknown2 *iface, void *arg1, void **arg2)
765{
766 FIXME("(%p,%p,%p): stub\n", iface, arg1, arg2);
767 if (arg2) *arg2 = NULL;
768 return E_NOTIMPL;
769}
770
771static HRESULT WINAPI IMILUnknown2Impl_unknown2(IMILUnknown2 *iface, void *arg1, void *arg2)
772{
773 FIXME("(%p,%p,%p): stub\n", iface, arg1, arg2);
774 return E_NOTIMPL;
775}
776
777static HRESULT WINAPI IMILUnknown2Impl_unknown3(IMILUnknown2 *iface, void *arg1)
778{
779 FIXME("(%p,%p): stub\n", iface, arg1);
780 return E_NOTIMPL;
781}
782
783static const IMILUnknown2Vtbl IMILUnknown2Impl_Vtbl =
784{
791};
792
795 IWICBitmap **ppIBitmap)
796{
797 HRESULT hr;
799 BYTE *data;
800 UINT bpp;
801
802 hr = get_pixelformat_bpp(pixelFormat, &bpp);
803 if (FAILED(hr)) return hr;
804
805 if (!stride) stride = (((bpp*uiWidth)+31)/32)*4;
806 if (!datasize) datasize = stride * uiHeight;
807
808 if (datasize < stride * uiHeight) return WINCODEC_ERR_INSUFFICIENTBUFFER;
809 if (stride < ((bpp*uiWidth)+7)/8) return E_INVALIDARG;
810
811 This = HeapAlloc(GetProcessHeap(), 0, sizeof(BitmapImpl));
812 if (!This) return E_OUTOFMEMORY;
813
814 if (view) data = (BYTE *)view + offset;
816 {
818 return E_OUTOFMEMORY;
819 }
820
821 This->IWICBitmap_iface.lpVtbl = &BitmapImpl_Vtbl;
822 This->IMILBitmap_iface.lpVtbl = &IMILBitmapImpl_Vtbl;
823 This->IMILUnknown1_iface.lpVtbl = &IMILUnknown1Impl_Vtbl;
824 This->IMILUnknown2_iface.lpVtbl = &IMILUnknown2Impl_Vtbl;
825 This->ref = 1;
826 This->palette = NULL;
827 This->palette_set = 0;
828 This->lock = 0;
829 This->data = data;
830 This->view = view;
831 This->offset = offset;
832 This->width = uiWidth;
833 This->height = uiHeight;
834 This->stride = stride;
835 This->bpp = bpp;
836 memcpy(&This->pixelformat, pixelFormat, sizeof(GUID));
837 This->dpix = This->dpiy = 0.0;
839 This->cs.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": BitmapImpl.lock");
840
841 *ppIBitmap = &This->IWICBitmap_iface;
842
843 return S_OK;
844}
#define write
Definition: acwin.h:97
#define InterlockedIncrement
Definition: armddk.h:53
#define InterlockedDecrement
Definition: armddk.h:52
#define WINE_DEFAULT_DEBUG_CHANNEL(t)
Definition: precomp.h:23
#define ARRAY_SIZE(A)
Definition: main.h:33
const GUID IID_IUnknown
#define FIXME(fmt,...)
Definition: debug.h:111
static SIZE_T datasize
Definition: asm.c:30
void copy_pixels(const BYTE *src, UINT src_row_pitch, UINT src_slice_pitch, BYTE *dst, UINT dst_row_pitch, UINT dst_slice_pitch, const struct volume *size, const struct pixel_format_desc *format) DECLSPEC_HIDDEN
Definition: surface.c:1700
#define E_OUTOFMEMORY
Definition: ddrawi.h:100
#define E_INVALIDARG
Definition: ddrawi.h:101
#define E_NOTIMPL
Definition: ddrawi.h:99
#define E_FAIL
Definition: ddrawi.h:102
#define NULL
Definition: types.h:112
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
DWORD bpp
Definition: surface.c:185
#define DECLSPEC_HIDDEN
Definition: precomp.h:8
#define GetProcessHeap()
Definition: compat.h:736
#define UnmapViewOfFile
Definition: compat.h:746
#define HeapAlloc
Definition: compat.h:733
static __inline const char * wine_dbgstr_longlong(ULONGLONG ll)
Definition: compat.h:49
#define HeapFree(x, y, z)
Definition: compat.h:735
#define HEAP_ZERO_MEMORY
Definition: compat.h:134
static HRESULT WINAPI BitmapLockImpl_QueryInterface(IWICBitmapLock *iface, REFIID iid, void **ppv)
Definition: bitmap.c:129
static void BitmapImpl_ReleaseLock(BitmapImpl *This)
Definition: bitmap.c:114
static HRESULT WINAPI IMILUnknown2Impl_QueryInterface(IMILUnknown2 *iface, REFIID iid, void **ppv)
Definition: bitmap.c:744
static HRESULT WINAPI IMILBitmapImpl_QueryInterface(IMILBitmap *iface, REFIID iid, void **ppv)
Definition: bitmap.c:485
static HRESULT WINAPI BitmapLockImpl_GetDataPointer(IWICBitmapLock *iface, UINT *pcbBufferSize, BYTE **ppbData)
Definition: bitmap.c:209
static ULONG WINAPI IMILUnknown1Impl_AddRef(IMILUnknown1 *iface)
Definition: bitmap.c:666
int enum_format
Definition: bitmap.c:516
static HRESULT WINAPI IMILBitmapImpl_unknown1(IMILBitmap *iface, void **ppv)
Definition: bitmap.c:591
static BitmapImpl * impl_from_IMILBitmap(IMILBitmap *iface)
Definition: bitmap.c:75
static const IMILBitmapVtbl IMILBitmapImpl_Vtbl
Definition: bitmap.c:639
static HRESULT WINAPI BitmapImpl_CopyPalette(IWICBitmap *iface, IWICPalette *pIPalette)
Definition: bitmap.c:352
static HRESULT WINAPI IMILUnknown2Impl_unknown1(IMILUnknown2 *iface, void *arg1, void **arg2)
Definition: bitmap.c:764
static HRESULT WINAPI IMILBitmapImpl_CopyPalette(IMILBitmap *iface, IWICPalette *palette)
Definition: bitmap.c:575
static BOOL BitmapImpl_AcquireLock(BitmapImpl *This, int write)
Definition: bitmap.c:95
static HRESULT WINAPI IMILBitmapImpl_CopyPixels(IMILBitmap *iface, const WICRect *rc, UINT stride, UINT size, BYTE *buffer)
Definition: bitmap.c:583
static ULONG WINAPI BitmapLockImpl_Release(IWICBitmapLock *iface)
Definition: bitmap.c:163
static HRESULT WINAPI BitmapLockImpl_GetStride(IWICBitmapLock *iface, UINT *pcbStride)
Definition: bitmap.c:195
static BitmapImpl * impl_from_IMILUnknown1(IMILUnknown1 *iface)
Definition: bitmap.c:80
static HRESULT WINAPI IMILBitmapImpl_SetPalette(IMILBitmap *iface, IWICPalette *palette)
Definition: bitmap.c:619
static HRESULT WINAPI IMILUnknown1Impl_unknown6(IMILUnknown1 *iface, DWORD64 arg)
Definition: bitmap.c:707
static HRESULT WINAPI IMILBitmapImpl_AddDirtyRect(IMILBitmap *iface, const WICRect *rc)
Definition: bitmap.c:633
static HRESULT WINAPI IMILBitmapImpl_GetPixelFormat(IMILBitmap *iface, int *format)
Definition: bitmap.c:542
DECLSPEC_HIDDEN void WINAPI IMILUnknown1Impl_unknown1(IMILUnknown1 *iface, void *arg)
Definition: bitmap.c:678
static HRESULT WINAPI IMILUnknown1Impl_unknown7(IMILUnknown1 *iface, void *arg)
Definition: bitmap.c:713
static ULONG WINAPI BitmapImpl_AddRef(IWICBitmap *iface)
Definition: bitmap.c:274
static BitmapLockImpl * impl_from_IWICBitmapLock(IWICBitmapLock *iface)
Definition: bitmap.c:90
static HRESULT WINAPI BitmapLockImpl_GetSize(IWICBitmapLock *iface, UINT *puiWidth, UINT *puiHeight)
Definition: bitmap.c:180
static HRESULT WINAPI BitmapImpl_GetPixelFormat(IWICBitmap *iface, WICPixelFormatGUID *pPixelFormat)
Definition: bitmap.c:321
static ULONG WINAPI IMILUnknown2Impl_AddRef(IMILUnknown2 *iface)
Definition: bitmap.c:752
static HRESULT WINAPI BitmapImpl_QueryInterface(IWICBitmap *iface, REFIID iid, void **ppv)
Definition: bitmap.c:244
static HRESULT WINAPI IMILUnknown1Impl_unknown2(IMILUnknown1 *iface, void *arg1, void *arg2)
Definition: bitmap.c:683
HRESULT BitmapImpl_Create(UINT uiWidth, UINT uiHeight, UINT stride, UINT datasize, void *view, UINT offset, REFWICPixelFormatGUID pixelFormat, WICBitmapCreateCacheOption option, IWICBitmap **ppIBitmap)
Definition: bitmap.c:793
static HRESULT WINAPI BitmapLockImpl_GetPixelFormat(IWICBitmapLock *iface, WICPixelFormatGUID *pPixelFormat)
Definition: bitmap.c:225
static ULONG WINAPI IMILUnknown1Impl_Release(IMILUnknown1 *iface)
Definition: bitmap.c:672
static HRESULT WINAPI IMILUnknown1Impl_QueryInterface(IMILUnknown1 *iface, REFIID iid, void **ppv)
Definition: bitmap.c:657
static HRESULT WINAPI IMILBitmapImpl_GetResolution(IMILBitmap *iface, double *dpix, double *dpiy)
Definition: bitmap.c:567
static ULONG WINAPI IMILUnknown2Impl_Release(IMILUnknown2 *iface)
Definition: bitmap.c:758
static BitmapImpl * impl_from_IMILUnknown2(IMILUnknown2 *iface)
Definition: bitmap.c:85
static HRESULT WINAPI BitmapImpl_Lock(IWICBitmap *iface, const WICRect *prcLock, DWORD flags, IWICBitmapLock **ppILock)
Definition: bitmap.c:374
static BitmapImpl * impl_from_IWICBitmap(IWICBitmap *iface)
Definition: bitmap.c:70
static HRESULT WINAPI IMILUnknown2Impl_unknown2(IMILUnknown2 *iface, void *arg1, void *arg2)
Definition: bitmap.c:771
static HRESULT WINAPI IMILBitmapImpl_GetSize(IMILBitmap *iface, UINT *width, UINT *height)
Definition: bitmap.c:505
const GUID * WIC_format
Definition: bitmap.c:515
static HRESULT WINAPI IMILUnknown1Impl_unknown5(IMILUnknown1 *iface, void *arg)
Definition: bitmap.c:701
static HRESULT WINAPI BitmapImpl_GetResolution(IWICBitmap *iface, double *pDpiX, double *pDpiY)
Definition: bitmap.c:335
DECLSPEC_HIDDEN HRESULT WINAPI IMILUnknown1Impl_unknown8(IMILUnknown1 *iface)
Definition: bitmap.c:719
static const IMILUnknown2Vtbl IMILUnknown2Impl_Vtbl
Definition: bitmap.c:783
DECLSPEC_HIDDEN HRESULT WINAPI IMILUnknown1Impl_unknown3(IMILUnknown1 *iface, void *arg)
Definition: bitmap.c:689
static HRESULT WINAPI IMILUnknown2Impl_unknown3(IMILUnknown2 *iface, void *arg1)
Definition: bitmap.c:777
static HRESULT WINAPI BitmapImpl_SetResolution(IWICBitmap *iface, double dpiX, double dpiY)
Definition: bitmap.c:457
static const IWICBitmapLockVtbl BitmapLockImpl_Vtbl
Definition: bitmap.c:234
static HRESULT WINAPI IMILBitmapImpl_Lock(IMILBitmap *iface, const WICRect *rc, DWORD flags, IWICBitmapLock **lock)
Definition: bitmap.c:605
static HRESULT WINAPI BitmapImpl_CopyPixels(IWICBitmap *iface, const WICRect *prc, UINT cbStride, UINT cbBufferSize, BYTE *pbBuffer)
Definition: bitmap.c:364
static ULONG WINAPI IMILBitmapImpl_AddRef(IMILBitmap *iface)
Definition: bitmap.c:493
static HRESULT WINAPI IMILBitmapImpl_Unlock(IMILBitmap *iface, IWICBitmapLock *lock)
Definition: bitmap.c:612
static ULONG WINAPI BitmapLockImpl_AddRef(IWICBitmapLock *iface)
Definition: bitmap.c:153
static const struct @589 pixel_fmt_map[]
static ULONG WINAPI IMILBitmapImpl_Release(IMILBitmap *iface)
Definition: bitmap.c:499
static HRESULT WINAPI IMILBitmapImpl_SetResolution(IMILBitmap *iface, double dpix, double dpiy)
Definition: bitmap.c:626
static const IMILUnknown1Vtbl IMILUnknown1Impl_Vtbl
Definition: bitmap.c:729
static const IWICBitmapVtbl BitmapImpl_Vtbl
Definition: bitmap.c:471
static ULONG WINAPI BitmapImpl_Release(IWICBitmap *iface)
Definition: bitmap.c:284
static HRESULT WINAPI BitmapImpl_GetSize(IWICBitmap *iface, UINT *puiWidth, UINT *puiHeight)
Definition: bitmap.c:306
static HRESULT WINAPI BitmapImpl_SetPalette(IWICBitmap *iface, IWICPalette *pIPalette)
Definition: bitmap.c:428
static HRESULT WINAPI IMILUnknown1Impl_unknown4(IMILUnknown1 *iface, void *arg)
Definition: bitmap.c:695
HRESULT get_pixelformat_bpp(const GUID *pixelformat, UINT *bpp)
Definition: main.c:252
HRESULT PaletteImpl_Create(IWICPalette **palette)
Definition: palette.c:899
unsigned int BOOL
Definition: ntddk_ex.h:94
unsigned long DWORD
Definition: ntddk_ex.h:95
GLint GLenum GLsizei GLsizei GLsizei GLint GLsizei const GLvoid * data
Definition: gl.h:1950
GLint GLint GLsizei GLsizei GLsizei GLint GLenum format
Definition: gl.h:1546
GLint GLint GLsizei GLsizei height
Definition: gl.h:1546
GLint GLint GLsizei width
Definition: gl.h:1546
GLsizeiptr size
Definition: glext.h:5919
GLsizei stride
Definition: glext.h:5848
GLuint buffer
Definition: glext.h:5915
GLuint GLuint GLuint GLuint arg1
Definition: glext.h:9513
GLuint GLuint GLuint GLuint GLuint GLuint GLuint arg2
Definition: glext.h:9514
GLbitfield flags
Definition: glext.h:7161
GLuint64EXT * result
Definition: glext.h:11304
GLintptr offset
Definition: glext.h:5920
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint i
Definition: glfuncs.h:248
REFIID LPVOID * ppv
Definition: atlbase.h:39
#define InterlockedCompareExchangePointer
Definition: interlocked.h:129
#define InterlockedCompareExchange
Definition: interlocked.h:104
#define S_OK
Definition: intsafe.h:52
#define SUCCEEDED(hr)
Definition: intsafe.h:50
#define FAILED(hr)
Definition: intsafe.h:51
#define debugstr_guid
Definition: kernel32.h:35
#define memcpy(s1, s2, n)
Definition: mkisofs.h:878
static HPALETTE palette
Definition: clipboard.c:1345
unsigned int UINT
Definition: ndis.h:50
_Out_ LPRECT prc
Definition: ntgdi.h:1658
#define DEFINE_THISCALL_WRAPPER(func, args)
Definition: msvc-thiscall.c:2
long LONG
Definition: pedump.c:60
#define IsEqualGUID(rguid1, rguid2)
Definition: guiddef.h:147
#define IsEqualIID(riid1, riid2)
Definition: guiddef.h:95
#define REFIID
Definition: guiddef.h:118
#define THISCALL(func)
Definition: asm.h:145
HRESULT hr
Definition: shlfolder.c:183
#define TRACE(s)
Definition: solgame.cpp:4
double dpiy
Definition: bitmap.c:58
LONG ref
Definition: bitmap.c:44
LONG lock
Definition: bitmap.c:50
UINT stride
Definition: bitmap.c:55
UINT offset
Definition: bitmap.c:53
IMILUnknown1 IMILUnknown1_iface
Definition: bitmap.c:43
IMILUnknown2 IMILUnknown2_iface
Definition: bitmap.c:47
UINT height
Definition: bitmap.c:54
int palette_set
Definition: bitmap.c:49
IWICPalette * palette
Definition: bitmap.c:48
CRITICAL_SECTION cs
Definition: bitmap.c:59
IWICBitmap IWICBitmap_iface
Definition: bitmap.c:46
IMILBitmap IMILBitmap_iface
Definition: bitmap.c:45
UINT bpp
Definition: bitmap.c:56
BYTE * data
Definition: bitmap.c:51
double dpix
Definition: bitmap.c:58
UINT width
Definition: bitmap.c:54
void * view
Definition: bitmap.c:52
WICPixelFormatGUID pixelformat
Definition: bitmap.c:57
BYTE * data
Definition: bitmap.c:67
UINT width
Definition: bitmap.c:66
LONG ref
Definition: bitmap.c:64
UINT height
Definition: bitmap.c:66
BitmapImpl * parent
Definition: bitmap.c:65
IWICBitmapLock IWICBitmapLock_iface
Definition: bitmap.c:63
INT Height
Definition: wincodec.idl:301
INT Width
Definition: wincodec.idl:300
Definition: scsiwmi.h:51
Definition: getopt.h:109
Definition: send.c:48
VOID WINAPI InitializeCriticalSection(OUT LPCRITICAL_SECTION lpCriticalSection)
Definition: synch.c:751
rwlock_t lock
Definition: tcpcore.h:0
#define DWORD_PTR
Definition: treelist.c:76
uint64_t DWORD64
Definition: typedefs.h:67
#define CONTAINING_RECORD(address, type, field)
Definition: typedefs.h:260
uint32_t ULONG
Definition: typedefs.h:59
void WINAPI LeaveCriticalSection(LPCRITICAL_SECTION)
void WINAPI EnterCriticalSection(LPCRITICAL_SECTION)
void WINAPI DeleteCriticalSection(PCRITICAL_SECTION)
@ WICBitmapLockWrite
Definition: wincodec.idl:86
@ WICBitmapLockRead
Definition: wincodec.idl:85
WICBitmapCreateCacheOption
Definition: wincodec.idl:33
static const char * debug_wic_rect(const WICRect *rect)
#define WINAPI
Definition: msvc.h:6
#define IMILUnknown1
Definition: msvc.h:8
#define WINCODEC_ERR_ALREADYLOCKED
Definition: winerror.h:3286
#define E_NOINTERFACE
Definition: winerror.h:2364
#define WINCODEC_ERR_PALETTEUNAVAILABLE
Definition: winerror.h:3292
#define WINCODEC_ERR_INSUFFICIENTBUFFER
Definition: winerror.h:3311
unsigned char BYTE
Definition: xxhash.c:193
#define const
Definition: zconf.h:233