quartz: Fix incorrect use of mtCurrent in transform filter.
[wine/wine64.git] / dlls / quartz / avidec.c
blob476e0d36918c668dbf5b34701df2f1fa89dd4035
1 /*
2 * AVI Decompressor (VFW decompressors wrapper)
4 * Copyright 2004-2005 Christian Costa
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include "config.h"
23 #include "quartz_private.h"
24 #include "pin.h"
26 #include "uuids.h"
27 #include "amvideo.h"
28 #include "windef.h"
29 #include "winbase.h"
30 #include "dshow.h"
31 #include "strmif.h"
32 #include "vfwmsgs.h"
33 #include "vfw.h"
34 #include "dvdmedia.h"
36 #include <assert.h>
38 #include "wine/unicode.h"
39 #include "wine/debug.h"
41 #include "transform.h"
43 WINE_DEFAULT_DEBUG_CHANNEL(quartz);
45 static HRESULT AVIDec_Cleanup(TransformFilterImpl* pTransformFilter);
47 typedef struct AVIDecImpl
49 TransformFilterImpl tf;
50 HIC hvid;
51 BITMAPINFOHEADER* pBihIn;
52 BITMAPINFOHEADER* pBihOut;
53 } AVIDecImpl;
55 static HRESULT AVIDec_ProcessBegin(TransformFilterImpl* pTransformFilter)
57 AVIDecImpl* This = (AVIDecImpl*)pTransformFilter;
58 DWORD result;
60 TRACE("(%p)->()\n", This);
62 result = ICDecompressBegin(This->hvid, This->pBihIn, This->pBihOut);
63 if (result != ICERR_OK)
65 ERR("Cannot start processing (%d)\n", result);
66 return E_FAIL;
68 return S_OK;
71 static HRESULT AVIDec_ProcessSampleData(TransformFilterImpl* pTransformFilter, IMediaSample *pSample)
73 AVIDecImpl* This = (AVIDecImpl*)pTransformFilter;
74 AM_MEDIA_TYPE amt;
75 HRESULT hr;
76 DWORD res;
77 IMediaSample* pOutSample = NULL;
78 DWORD cbDstStream;
79 LPBYTE pbDstStream;
80 DWORD cbSrcStream;
81 LPBYTE pbSrcStream;
82 LONGLONG tStart, tStop;
83 InputPin *pin = (InputPin *)pTransformFilter->ppPins[0];
85 EnterCriticalSection(&This->tf.csFilter);
86 if (This->tf.state == State_Stopped)
88 LeaveCriticalSection(&This->tf.csFilter);
89 return VFW_E_WRONG_STATE;
92 if (pin->end_of_stream || pin->flushing)
94 LeaveCriticalSection(&This->tf.csFilter);
95 return S_FALSE;
98 hr = IMediaSample_GetPointer(pSample, &pbSrcStream);
99 if (FAILED(hr))
101 ERR("Cannot get pointer to sample data (%x)\n", hr);
102 goto error;
105 cbSrcStream = IMediaSample_GetActualDataLength(pSample);
107 TRACE("Sample data ptr = %p, size = %ld\n", pbSrcStream, (long)cbSrcStream);
109 hr = IPin_ConnectionMediaType(This->tf.ppPins[0], &amt);
110 if (FAILED(hr)) {
111 ERR("Unable to retrieve media type\n");
112 goto error;
115 /* Update input size to match sample size */
116 This->pBihIn->biSizeImage = cbSrcStream;
118 hr = OutputPin_GetDeliveryBuffer((OutputPin*)This->tf.ppPins[1], &pOutSample, NULL, NULL, 0);
119 if (FAILED(hr)) {
120 ERR("Unable to get delivery buffer (%x)\n", hr);
121 goto error;
124 hr = IMediaSample_SetActualDataLength(pOutSample, 0);
125 assert(hr == S_OK);
127 hr = IMediaSample_GetPointer(pOutSample, &pbDstStream);
128 if (FAILED(hr)) {
129 ERR("Unable to get pointer to buffer (%x)\n", hr);
130 goto error;
132 cbDstStream = IMediaSample_GetSize(pOutSample);
133 if (cbDstStream < This->pBihOut->biSizeImage) {
134 ERR("Sample size is too small %d < %d\n", cbDstStream, This->pBihOut->biSizeImage);
135 hr = E_FAIL;
136 goto error;
139 res = ICDecompress(This->hvid, 0, This->pBihIn, pbSrcStream, This->pBihOut, pbDstStream);
140 if (res != ICERR_OK)
141 ERR("Error occurred during the decompression (%x)\n", res);
143 IMediaSample_SetActualDataLength(pOutSample, This->pBihOut->biSizeImage);
145 IMediaSample_SetPreroll(pOutSample, (IMediaSample_IsPreroll(pSample) == S_OK));
146 IMediaSample_SetDiscontinuity(pOutSample, (IMediaSample_IsDiscontinuity(pSample) == S_OK));
147 IMediaSample_SetSyncPoint(pOutSample, (IMediaSample_IsSyncPoint(pSample) == S_OK));
149 if (IMediaSample_GetTime(pSample, &tStart, &tStop) == S_OK)
150 IMediaSample_SetTime(pOutSample, &tStart, &tStop);
151 else
152 IMediaSample_SetTime(pOutSample, NULL, NULL);
154 LeaveCriticalSection(&This->tf.csFilter);
155 hr = OutputPin_SendSample((OutputPin*)This->tf.ppPins[1], pOutSample);
156 if (hr != S_OK && hr != VFW_E_NOT_CONNECTED)
157 ERR("Error sending sample (%x)\n", hr);
158 IMediaSample_Release(pOutSample);
159 return hr;
161 error:
162 if (pOutSample)
163 IMediaSample_Release(pOutSample);
165 LeaveCriticalSection(&This->tf.csFilter);
166 return hr;
169 static HRESULT AVIDec_ProcessEnd(TransformFilterImpl* pTransformFilter)
171 AVIDecImpl* This = (AVIDecImpl*)pTransformFilter;
172 DWORD result;
174 TRACE("(%p)->()\n", This);
176 if (!This->hvid)
177 return S_OK;
179 result = ICDecompressEnd(This->hvid);
180 if (result != ICERR_OK)
182 ERR("Cannot stop processing (%d)\n", result);
183 return E_FAIL;
185 return S_OK;
188 static HRESULT AVIDec_ConnectInput(TransformFilterImpl* pTransformFilter, const AM_MEDIA_TYPE * pmt)
190 AVIDecImpl* This = (AVIDecImpl*)pTransformFilter;
191 HRESULT hr = VFW_E_TYPE_NOT_ACCEPTED;
193 TRACE("(%p)->(%p)\n", This, pmt);
195 AVIDec_Cleanup(pTransformFilter);
197 /* Check root (GUID w/o FOURCC) */
198 if ((IsEqualIID(&pmt->majortype, &MEDIATYPE_Video)) &&
199 (!memcmp(((const char *)&pmt->subtype)+4, ((const char *)&MEDIATYPE_Video)+4, sizeof(GUID)-4)))
201 VIDEOINFOHEADER *format1 = (VIDEOINFOHEADER *)pmt->pbFormat;
202 VIDEOINFOHEADER2 *format2 = (VIDEOINFOHEADER2 *)pmt->pbFormat;
203 BITMAPINFOHEADER *bmi;
205 if (IsEqualIID(&pmt->formattype, &FORMAT_VideoInfo))
206 bmi = &format1->bmiHeader;
207 else if (IsEqualIID(&pmt->formattype, &FORMAT_VideoInfo2))
208 bmi = &format2->bmiHeader;
209 else
210 goto failed;
211 TRACE("Fourcc: %s\n", debugstr_an((char *)&pmt->subtype.Data1, 4));
213 This->hvid = ICLocate(pmt->majortype.Data1, pmt->subtype.Data1, bmi, NULL, ICMODE_DECOMPRESS);
214 if (This->hvid)
216 AM_MEDIA_TYPE* outpmt = &This->tf.pmt;
217 const CLSID* outsubtype;
218 DWORD bih_size;
219 DWORD output_depth = bmi->biBitCount;
220 DWORD result;
221 FreeMediaType(outpmt);
223 switch(bmi->biBitCount)
225 case 32: outsubtype = &MEDIASUBTYPE_RGB32; break;
226 case 24: outsubtype = &MEDIASUBTYPE_RGB24; break;
227 case 16: outsubtype = &MEDIASUBTYPE_RGB565; break;
228 case 8: outsubtype = &MEDIASUBTYPE_RGB8; break;
229 default:
230 WARN("Non standard input depth %d, forced output depth to 32\n", bmi->biBitCount);
231 outsubtype = &MEDIASUBTYPE_RGB32;
232 output_depth = 32;
233 break;
236 /* Copy bitmap header from media type to 1 for input and 1 for output */
237 bih_size = bmi->biSize + bmi->biClrUsed * 4;
238 This->pBihIn = CoTaskMemAlloc(bih_size);
239 if (!This->pBihIn)
241 hr = E_OUTOFMEMORY;
242 goto failed;
244 This->pBihOut = CoTaskMemAlloc(bih_size);
245 if (!This->pBihOut)
247 hr = E_OUTOFMEMORY;
248 goto failed;
250 memcpy(This->pBihIn, bmi, bih_size);
251 memcpy(This->pBihOut, bmi, bih_size);
253 /* Update output format as non compressed bitmap */
254 This->pBihOut->biCompression = 0;
255 This->pBihOut->biBitCount = output_depth;
256 This->pBihOut->biSizeImage = This->pBihOut->biWidth * This->pBihOut->biHeight * This->pBihOut->biBitCount / 8;
257 TRACE("Size: %u\n", This->pBihIn->biSize);
258 result = ICDecompressQuery(This->hvid, This->pBihIn, This->pBihOut);
259 if (result != ICERR_OK)
261 ERR("Unable to found a suitable output format (%d)\n", result);
262 goto failed;
265 /* Update output media type */
266 CopyMediaType(outpmt, pmt);
267 outpmt->subtype = *outsubtype;
269 if (IsEqualIID(&pmt->formattype, &FORMAT_VideoInfo))
270 memcpy(&(((VIDEOINFOHEADER *)outpmt->pbFormat)->bmiHeader), This->pBihOut, This->pBihOut->biSize);
271 else if (IsEqualIID(&pmt->formattype, &FORMAT_VideoInfo2))
272 memcpy(&(((VIDEOINFOHEADER2 *)outpmt->pbFormat)->bmiHeader), This->pBihOut, This->pBihOut->biSize);
273 else
274 assert(0);
276 /* Update buffer size of media samples in output */
277 ((OutputPin*)This->tf.ppPins[1])->allocProps.cbBuffer = This->pBihOut->biSizeImage;
279 TRACE("Connection accepted\n");
280 return S_OK;
282 TRACE("Unable to find a suitable VFW decompressor\n");
285 failed:
286 AVIDec_Cleanup(pTransformFilter);
288 TRACE("Connection refused\n");
289 return hr;
292 static HRESULT AVIDec_Cleanup(TransformFilterImpl* pTransformFilter)
294 AVIDecImpl* This = (AVIDecImpl*)pTransformFilter;
296 TRACE("(%p)->()\n", This);
298 if (This->hvid)
299 ICClose(This->hvid);
300 if (This->pBihIn)
301 CoTaskMemFree(This->pBihIn);
302 if (This->pBihOut)
303 CoTaskMemFree(This->pBihOut);
305 This->hvid = NULL;
306 This->pBihIn = NULL;
307 This->pBihOut = NULL;
309 return S_OK;
312 static const TransformFuncsTable AVIDec_FuncsTable = {
313 AVIDec_ProcessBegin,
314 AVIDec_ProcessSampleData,
315 AVIDec_ProcessEnd,
316 NULL,
317 AVIDec_ConnectInput,
318 AVIDec_Cleanup
321 HRESULT AVIDec_create(IUnknown * pUnkOuter, LPVOID * ppv)
323 HRESULT hr;
324 AVIDecImpl * This;
326 TRACE("(%p, %p)\n", pUnkOuter, ppv);
328 *ppv = NULL;
330 if (pUnkOuter)
331 return CLASS_E_NOAGGREGATION;
333 /* Note: This memory is managed by the transform filter once created */
334 This = CoTaskMemAlloc(sizeof(AVIDecImpl));
336 This->hvid = NULL;
337 This->pBihIn = NULL;
338 This->pBihOut = NULL;
340 hr = TransformFilter_Create(&(This->tf), &CLSID_AVIDec, &AVIDec_FuncsTable, NULL, NULL, NULL);
342 if (FAILED(hr))
343 return hr;
345 *ppv = (LPVOID)This;
347 return hr;