2 * Copyright 2010 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
29 #include "wincodecs_private.h"
31 #include "wine/debug.h"
33 WINE_DEFAULT_DEBUG_CHANNEL(wincodecs
);
35 typedef struct FlipRotator
{
36 IWICBitmapFlipRotator IWICBitmapFlipRotator_iface
;
38 IWICBitmapSource
*source
;
42 CRITICAL_SECTION lock
; /* must be held when initialized */
45 static inline FlipRotator
*impl_from_IWICBitmapFlipRotator(IWICBitmapFlipRotator
*iface
)
47 return CONTAINING_RECORD(iface
, FlipRotator
, IWICBitmapFlipRotator_iface
);
50 static HRESULT WINAPI
FlipRotator_QueryInterface(IWICBitmapFlipRotator
*iface
, REFIID iid
,
53 FlipRotator
*This
= impl_from_IWICBitmapFlipRotator(iface
);
54 TRACE("(%p,%s,%p)\n", iface
, debugstr_guid(iid
), ppv
);
56 if (!ppv
) return E_INVALIDARG
;
58 if (IsEqualIID(&IID_IUnknown
, iid
) ||
59 IsEqualIID(&IID_IWICBitmapSource
, iid
) ||
60 IsEqualIID(&IID_IWICBitmapFlipRotator
, iid
))
62 *ppv
= &This
->IWICBitmapFlipRotator_iface
;
70 IUnknown_AddRef((IUnknown
*)*ppv
);
74 static ULONG WINAPI
FlipRotator_AddRef(IWICBitmapFlipRotator
*iface
)
76 FlipRotator
*This
= impl_from_IWICBitmapFlipRotator(iface
);
77 ULONG ref
= InterlockedIncrement(&This
->ref
);
79 TRACE("(%p) refcount=%u\n", iface
, ref
);
84 static ULONG WINAPI
FlipRotator_Release(IWICBitmapFlipRotator
*iface
)
86 FlipRotator
*This
= impl_from_IWICBitmapFlipRotator(iface
);
87 ULONG ref
= InterlockedDecrement(&This
->ref
);
89 TRACE("(%p) refcount=%u\n", iface
, ref
);
93 This
->lock
.DebugInfo
->Spare
[0] = 0;
94 DeleteCriticalSection(&This
->lock
);
95 if (This
->source
) IWICBitmapSource_Release(This
->source
);
96 HeapFree(GetProcessHeap(), 0, This
);
102 static HRESULT WINAPI
FlipRotator_GetSize(IWICBitmapFlipRotator
*iface
,
103 UINT
*puiWidth
, UINT
*puiHeight
)
105 FlipRotator
*This
= impl_from_IWICBitmapFlipRotator(iface
);
106 TRACE("(%p,%p,%p)\n", iface
, puiWidth
, puiHeight
);
109 return WINCODEC_ERR_WRONGSTATE
;
110 else if (This
->swap_xy
)
111 return IWICBitmapSource_GetSize(This
->source
, puiHeight
, puiWidth
);
113 return IWICBitmapSource_GetSize(This
->source
, puiWidth
, puiHeight
);
116 static HRESULT WINAPI
FlipRotator_GetPixelFormat(IWICBitmapFlipRotator
*iface
,
117 WICPixelFormatGUID
*pPixelFormat
)
119 FlipRotator
*This
= impl_from_IWICBitmapFlipRotator(iface
);
120 TRACE("(%p,%p)\n", iface
, pPixelFormat
);
123 return WINCODEC_ERR_WRONGSTATE
;
125 return IWICBitmapSource_GetPixelFormat(This
->source
, pPixelFormat
);
128 static HRESULT WINAPI
FlipRotator_GetResolution(IWICBitmapFlipRotator
*iface
,
129 double *pDpiX
, double *pDpiY
)
131 FlipRotator
*This
= impl_from_IWICBitmapFlipRotator(iface
);
132 TRACE("(%p,%p,%p)\n", iface
, pDpiX
, pDpiY
);
135 return WINCODEC_ERR_WRONGSTATE
;
136 else if (This
->swap_xy
)
137 return IWICBitmapSource_GetResolution(This
->source
, pDpiY
, pDpiX
);
139 return IWICBitmapSource_GetResolution(This
->source
, pDpiX
, pDpiY
);
142 static HRESULT WINAPI
FlipRotator_CopyPalette(IWICBitmapFlipRotator
*iface
,
143 IWICPalette
*pIPalette
)
145 FlipRotator
*This
= impl_from_IWICBitmapFlipRotator(iface
);
146 TRACE("(%p,%p)\n", iface
, pIPalette
);
149 return WINCODEC_ERR_WRONGSTATE
;
151 return IWICBitmapSource_CopyPalette(This
->source
, pIPalette
);
154 static HRESULT WINAPI
FlipRotator_CopyPixels(IWICBitmapFlipRotator
*iface
,
155 const WICRect
*prc
, UINT cbStride
, UINT cbBufferSize
, BYTE
*pbBuffer
)
157 FlipRotator
*This
= impl_from_IWICBitmapFlipRotator(iface
);
160 UINT srcy
, srcwidth
, srcheight
;
164 TRACE("(%p,%p,%u,%u,%p)\n", iface
, prc
, cbStride
, cbBufferSize
, pbBuffer
);
166 if (!This
->source
) return WINCODEC_ERR_WRONGSTATE
;
168 if (This
->swap_xy
|| This
->flip_x
)
170 /* This requires knowledge of the pixel format. */
171 FIXME("flipping x and rotating are not implemented\n");
175 hr
= IWICBitmapSource_GetSize(This
->source
, &srcwidth
, &srcheight
);
176 if (FAILED(hr
)) return hr
;
181 hr
= IWICBitmapFlipRotator_GetSize(iface
, &width
, &height
);
182 if (FAILED(hr
)) return hr
;
186 rect
.Height
= height
;
190 for (y
=prc
->Y
; y
- prc
->Y
< prc
->Height
; y
++)
193 srcy
= srcheight
- 1 - y
;
199 rc
.Width
= prc
->Width
;
202 hr
= IWICBitmapSource_CopyPixels(This
->source
, &rc
, cbStride
, cbStride
,
205 if (FAILED(hr
)) break;
207 pbBuffer
+= cbStride
;
213 static HRESULT WINAPI
FlipRotator_Initialize(IWICBitmapFlipRotator
*iface
,
214 IWICBitmapSource
*pISource
, WICBitmapTransformOptions options
)
216 FlipRotator
*This
= impl_from_IWICBitmapFlipRotator(iface
);
219 TRACE("(%p,%p,%u)\n", iface
, pISource
, options
);
221 EnterCriticalSection(&This
->lock
);
225 hr
= WINCODEC_ERR_WRONGSTATE
;
229 if (options
&WICBitmapTransformRotate90
)
232 This
->flip_x
= !This
->flip_x
;
235 if (options
&WICBitmapTransformRotate180
)
237 This
->flip_x
= !This
->flip_x
;
238 This
->flip_y
= !This
->flip_y
;
241 if (options
&WICBitmapTransformFlipHorizontal
)
242 This
->flip_x
= !This
->flip_x
;
244 if (options
&WICBitmapTransformFlipVertical
)
245 This
->flip_y
= !This
->flip_y
;
247 IWICBitmapSource_AddRef(pISource
);
248 This
->source
= pISource
;
251 LeaveCriticalSection(&This
->lock
);
256 static const IWICBitmapFlipRotatorVtbl FlipRotator_Vtbl
= {
257 FlipRotator_QueryInterface
,
261 FlipRotator_GetPixelFormat
,
262 FlipRotator_GetResolution
,
263 FlipRotator_CopyPalette
,
264 FlipRotator_CopyPixels
,
265 FlipRotator_Initialize
268 HRESULT
FlipRotator_Create(IWICBitmapFlipRotator
**fliprotator
)
272 This
= HeapAlloc(GetProcessHeap(), 0, sizeof(FlipRotator
));
273 if (!This
) return E_OUTOFMEMORY
;
275 This
->IWICBitmapFlipRotator_iface
.lpVtbl
= &FlipRotator_Vtbl
;
281 InitializeCriticalSection(&This
->lock
);
282 This
->lock
.DebugInfo
->Spare
[0] = (DWORD_PTR
)(__FILE__
": FlipRotator.lock");
284 *fliprotator
= &This
->IWICBitmapFlipRotator_iface
;