windowscodecs: Implement IWICBitmapScaler::GetPixelFormat.
[wine] / dlls / windowscodecs / scaler.c
1 /*
2  * Copyright 2010 Vincent Povirk for CodeWeavers
3  *
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.
8  *
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.
13  *
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
17  */
18
19 #include "config.h"
20
21 #include <stdarg.h>
22
23 #define COBJMACROS
24
25 #include "windef.h"
26 #include "winbase.h"
27 #include "objbase.h"
28 #include "wincodec.h"
29
30 #include "wincodecs_private.h"
31
32 #include "wine/debug.h"
33
34 WINE_DEFAULT_DEBUG_CHANNEL(wincodecs);
35
36 typedef struct BitmapScaler {
37     IWICBitmapScaler IWICBitmapScaler_iface;
38     LONG ref;
39     IWICBitmapSource *source;
40     UINT width, height;
41     WICBitmapInterpolationMode mode;
42     CRITICAL_SECTION lock; /* must be held when initialized */
43 } BitmapScaler;
44
45 static inline BitmapScaler *impl_from_IWICBitmapScaler(IWICBitmapScaler *iface)
46 {
47     return CONTAINING_RECORD(iface, BitmapScaler, IWICBitmapScaler_iface);
48 }
49
50 static HRESULT WINAPI BitmapScaler_QueryInterface(IWICBitmapScaler *iface, REFIID iid,
51     void **ppv)
52 {
53     BitmapScaler *This = impl_from_IWICBitmapScaler(iface);
54     TRACE("(%p,%s,%p)\n", iface, debugstr_guid(iid), ppv);
55
56     if (!ppv) return E_INVALIDARG;
57
58     if (IsEqualIID(&IID_IUnknown, iid) ||
59         IsEqualIID(&IID_IWICBitmapSource, iid) ||
60         IsEqualIID(&IID_IWICBitmapScaler, iid))
61     {
62         *ppv = This;
63     }
64     else
65     {
66         *ppv = NULL;
67         return E_NOINTERFACE;
68     }
69
70     IUnknown_AddRef((IUnknown*)*ppv);
71     return S_OK;
72 }
73
74 static ULONG WINAPI BitmapScaler_AddRef(IWICBitmapScaler *iface)
75 {
76     BitmapScaler *This = impl_from_IWICBitmapScaler(iface);
77     ULONG ref = InterlockedIncrement(&This->ref);
78
79     TRACE("(%p) refcount=%u\n", iface, ref);
80
81     return ref;
82 }
83
84 static ULONG WINAPI BitmapScaler_Release(IWICBitmapScaler *iface)
85 {
86     BitmapScaler *This = impl_from_IWICBitmapScaler(iface);
87     ULONG ref = InterlockedDecrement(&This->ref);
88
89     TRACE("(%p) refcount=%u\n", iface, ref);
90
91     if (ref == 0)
92     {
93         This->lock.DebugInfo->Spare[0] = 0;
94         DeleteCriticalSection(&This->lock);
95         if (This->source) IWICBitmapSource_Release(This->source);
96         HeapFree(GetProcessHeap(), 0, This);
97     }
98
99     return ref;
100 }
101
102 static HRESULT WINAPI BitmapScaler_GetSize(IWICBitmapScaler *iface,
103     UINT *puiWidth, UINT *puiHeight)
104 {
105     BitmapScaler *This = impl_from_IWICBitmapScaler(iface);
106     TRACE("(%p,%p,%p)\n", iface, puiWidth, puiHeight);
107
108     if (!puiWidth || !puiHeight)
109         return E_INVALIDARG;
110
111     if (!This->source)
112         return WINCODEC_ERR_WRONGSTATE;
113
114     *puiWidth = This->width;
115     *puiHeight = This->height;
116
117     return S_OK;
118 }
119
120 static HRESULT WINAPI BitmapScaler_GetPixelFormat(IWICBitmapScaler *iface,
121     WICPixelFormatGUID *pPixelFormat)
122 {
123     BitmapScaler *This = impl_from_IWICBitmapScaler(iface);
124     TRACE("(%p,%p)\n", iface, pPixelFormat);
125
126     if (!pPixelFormat)
127         return E_INVALIDARG;
128
129     if (!This->source)
130         return WINCODEC_ERR_WRONGSTATE;
131
132     return IWICBitmapSource_GetPixelFormat(This->source, pPixelFormat);
133 }
134
135 static HRESULT WINAPI BitmapScaler_GetResolution(IWICBitmapScaler *iface,
136     double *pDpiX, double *pDpiY)
137 {
138     FIXME("(%p,%p,%p): stub\n", iface, pDpiX, pDpiY);
139
140     return E_NOTIMPL;
141 }
142
143 static HRESULT WINAPI BitmapScaler_CopyPalette(IWICBitmapScaler *iface,
144     IWICPalette *pIPalette)
145 {
146     FIXME("(%p,%p): stub\n", iface, pIPalette);
147
148     return E_NOTIMPL;
149 }
150
151 static HRESULT WINAPI BitmapScaler_CopyPixels(IWICBitmapScaler *iface,
152     const WICRect *prc, UINT cbStride, UINT cbBufferSize, BYTE *pbBuffer)
153 {
154     FIXME("(%p,%p,%u,%u,%p): stub\n", iface, prc, cbStride, cbBufferSize, pbBuffer);
155
156     return E_NOTIMPL;
157 }
158
159 static HRESULT WINAPI BitmapScaler_Initialize(IWICBitmapScaler *iface,
160     IWICBitmapSource *pISource, UINT uiWidth, UINT uiHeight,
161     WICBitmapInterpolationMode mode)
162 {
163     BitmapScaler *This = impl_from_IWICBitmapScaler(iface);
164     HRESULT hr=S_OK;
165
166     TRACE("(%p,%p,%u,%u,%u)\n", iface, pISource, uiWidth, uiHeight, mode);
167
168     EnterCriticalSection(&This->lock);
169
170     if (This->source)
171     {
172         hr = WINCODEC_ERR_WRONGSTATE;
173         goto end;
174     }
175
176     IWICBitmapSource_AddRef(pISource);
177     This->source = pISource;
178
179     This->width = uiWidth;
180     This->height = uiHeight;
181     This->mode = mode;
182
183 end:
184     LeaveCriticalSection(&This->lock);
185
186     return hr;
187 }
188
189 static const IWICBitmapScalerVtbl BitmapScaler_Vtbl = {
190     BitmapScaler_QueryInterface,
191     BitmapScaler_AddRef,
192     BitmapScaler_Release,
193     BitmapScaler_GetSize,
194     BitmapScaler_GetPixelFormat,
195     BitmapScaler_GetResolution,
196     BitmapScaler_CopyPalette,
197     BitmapScaler_CopyPixels,
198     BitmapScaler_Initialize
199 };
200
201 HRESULT BitmapScaler_Create(IWICBitmapScaler **scaler)
202 {
203     BitmapScaler *This;
204
205     This = HeapAlloc(GetProcessHeap(), 0, sizeof(BitmapScaler));
206     if (!This) return E_OUTOFMEMORY;
207
208     This->IWICBitmapScaler_iface.lpVtbl = &BitmapScaler_Vtbl;
209     This->ref = 1;
210     This->source = NULL;
211     This->width = 0;
212     This->height = 0;
213     This->mode = 0;
214     InitializeCriticalSection(&This->lock);
215     This->lock.DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": BitmapScaler.lock");
216
217     *scaler = &This->IWICBitmapScaler_iface;
218
219     return S_OK;
220 }