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
23 #include "quartz_private.h"
37 #include "wine/unicode.h"
38 #include "wine/debug.h"
40 #include "transform.h"
42 WINE_DEFAULT_DEBUG_CHANNEL(quartz
);
44 static HRESULT
AVIDec_Cleanup(TransformFilterImpl
* pTransformFilter
);
46 typedef struct AVIDecImpl
48 TransformFilterImpl tf
;
50 BITMAPINFOHEADER
* pBihIn
;
51 BITMAPINFOHEADER
* pBihOut
;
54 static HRESULT
AVIDec_ProcessBegin(TransformFilterImpl
* pTransformFilter
)
56 AVIDecImpl
* This
= (AVIDecImpl
*)pTransformFilter
;
59 TRACE("(%p)->()\n", This
);
61 result
= ICDecompressBegin(This
->hvid
, This
->pBihIn
, This
->pBihOut
);
62 if (result
!= ICERR_OK
)
64 ERR("Cannot start processing (%d)\n", result
);
70 static HRESULT
AVIDec_ProcessSampleData(TransformFilterImpl
* pTransformFilter
, IMediaSample
*pSample
)
72 AVIDecImpl
* This
= (AVIDecImpl
*)pTransformFilter
;
73 VIDEOINFOHEADER
* format
;
77 IMediaSample
* pOutSample
= NULL
;
83 hr
= IMediaSample_GetPointer(pSample
, &pbSrcStream
);
86 ERR("Cannot get pointer to sample data (%x)\n", hr
);
90 cbSrcStream
= IMediaSample_GetActualDataLength(pSample
);
92 TRACE("Sample data ptr = %p, size = %ld\n", pbSrcStream
, (long)cbSrcStream
);
94 hr
= IPin_ConnectionMediaType(This
->tf
.ppPins
[0], &amt
);
96 ERR("Unable to retrieve media type\n");
99 format
= (VIDEOINFOHEADER
*)amt
.pbFormat
;
101 /* Update input size to match sample size */
102 This
->pBihIn
->biSizeImage
= cbSrcStream
;
104 hr
= OutputPin_GetDeliveryBuffer((OutputPin
*)This
->tf
.ppPins
[1], &pOutSample
, NULL
, NULL
, 0);
106 ERR("Unable to get delivery buffer (%x)\n", hr
);
110 hr
= IMediaSample_SetActualDataLength(pOutSample
, 0);
113 hr
= IMediaSample_GetPointer(pOutSample
, &pbDstStream
);
115 ERR("Unable to get pointer to buffer (%x)\n", hr
);
118 cbDstStream
= IMediaSample_GetSize(pOutSample
);
119 if (cbDstStream
< This
->pBihOut
->biSizeImage
) {
120 ERR("Sample size is too small %d < %d\n", cbDstStream
, This
->pBihOut
->biSizeImage
);
125 res
= ICDecompress(This
->hvid
, 0, This
->pBihIn
, pbSrcStream
, This
->pBihOut
, pbDstStream
);
127 ERR("Error occurred during the decompression (%x)\n", res
);
129 hr
= OutputPin_SendSample((OutputPin
*)This
->tf
.ppPins
[1], pOutSample
);
130 if (hr
!= S_OK
&& hr
!= VFW_E_NOT_CONNECTED
) {
131 ERR("Error sending sample (%x)\n", hr
);
137 IMediaSample_Release(pOutSample
);
142 static HRESULT
AVIDec_ProcessEnd(TransformFilterImpl
* pTransformFilter
)
144 AVIDecImpl
* This
= (AVIDecImpl
*)pTransformFilter
;
147 TRACE("(%p)->()\n", This
);
149 result
= ICDecompressEnd(This
->hvid
);
150 if (result
!= ICERR_OK
)
152 ERR("Cannot stop processing (%d)\n", result
);
158 static HRESULT
AVIDec_ConnectInput(TransformFilterImpl
* pTransformFilter
, const AM_MEDIA_TYPE
* pmt
)
160 AVIDecImpl
* This
= (AVIDecImpl
*)pTransformFilter
;
161 HRESULT hr
= VFW_E_TYPE_NOT_ACCEPTED
;
163 TRACE("(%p)->(%p)\n", This
, pmt
);
165 AVIDec_Cleanup(pTransformFilter
);
167 /* Check root (GUID w/o FOURCC) */
168 if ((IsEqualIID(&pmt
->majortype
, &MEDIATYPE_Video
)) &&
169 (!memcmp(((const char *)&pmt
->subtype
)+4, ((const char *)&MEDIATYPE_Video
)+4, sizeof(GUID
)-4)) &&
170 (IsEqualIID(&pmt
->formattype
, &FORMAT_VideoInfo
)))
172 VIDEOINFOHEADER
* format
= (VIDEOINFOHEADER
*)pmt
->pbFormat
;
174 This
->hvid
= ICLocate(pmt
->majortype
.Data1
, pmt
->subtype
.Data1
, &format
->bmiHeader
, NULL
, ICMODE_DECOMPRESS
);
177 AM_MEDIA_TYPE
* outpmt
= &((OutputPin
*)This
->tf
.ppPins
[1])->pin
.mtCurrent
;
178 const CLSID
* outsubtype
;
180 DWORD output_depth
= format
->bmiHeader
.biBitCount
;
183 switch(format
->bmiHeader
.biBitCount
)
185 case 32: outsubtype
= &MEDIASUBTYPE_RGB32
; break;
186 case 24: outsubtype
= &MEDIASUBTYPE_RGB24
; break;
187 case 16: outsubtype
= &MEDIASUBTYPE_RGB565
; break;
188 case 8: outsubtype
= &MEDIASUBTYPE_RGB8
; break;
190 TRACE("Non standard input depth %d, forced ouptut depth to 32\n", format
->bmiHeader
.biBitCount
);
191 outsubtype
= &MEDIASUBTYPE_RGB32
;
196 /* Copy bitmap header from media type to 1 for input and 1 for output */
197 bih_size
= format
->bmiHeader
.biSize
+ format
->bmiHeader
.biClrUsed
* 4;
198 This
->pBihIn
= CoTaskMemAlloc(bih_size
);
204 This
->pBihOut
= CoTaskMemAlloc(bih_size
);
210 memcpy(This
->pBihIn
, &format
->bmiHeader
, bih_size
);
211 memcpy(This
->pBihOut
, &format
->bmiHeader
, bih_size
);
213 /* Update output format as non compressed bitmap */
214 This
->pBihOut
->biCompression
= 0;
215 This
->pBihOut
->biBitCount
= output_depth
;
216 This
->pBihOut
->biSizeImage
= This
->pBihOut
->biWidth
* This
->pBihOut
->biHeight
* This
->pBihOut
->biBitCount
/ 8;
218 result
= ICDecompressQuery(This
->hvid
, This
->pBihIn
, This
->pBihOut
);
219 if (result
!= ICERR_OK
)
221 TRACE("Unable to found a suitable output format (%d)\n", result
);
225 /* Update output media type */
226 CopyMediaType(outpmt
, pmt
);
227 outpmt
->subtype
= *outsubtype
;
228 memcpy(&(((VIDEOINFOHEADER
*)outpmt
->pbFormat
)->bmiHeader
), This
->pBihOut
, This
->pBihOut
->biSize
);
230 /* Update buffer size of media samples in output */
231 ((OutputPin
*)This
->tf
.ppPins
[1])->allocProps
.cbBuffer
= This
->pBihOut
->biSizeImage
;
233 TRACE("Connection accepted\n");
236 TRACE("Unable to find a suitable VFW decompressor\n");
240 AVIDec_Cleanup(pTransformFilter
);
242 TRACE("Connection refused\n");
246 static HRESULT
AVIDec_Cleanup(TransformFilterImpl
* pTransformFilter
)
248 AVIDecImpl
* This
= (AVIDecImpl
*)pTransformFilter
;
250 TRACE("(%p)->()\n", This
);
255 CoTaskMemFree(This
->pBihIn
);
257 CoTaskMemFree(This
->pBihOut
);
261 This
->pBihOut
= NULL
;
266 static const TransformFuncsTable AVIDec_FuncsTable
= {
268 AVIDec_ProcessSampleData
,
275 HRESULT
AVIDec_create(IUnknown
* pUnkOuter
, LPVOID
* ppv
)
280 TRACE("(%p, %p)\n", pUnkOuter
, ppv
);
285 return CLASS_E_NOAGGREGATION
;
287 /* Note: This memory is managed by the transform filter once created */
288 This
= CoTaskMemAlloc(sizeof(AVIDecImpl
));
292 This
->pBihOut
= NULL
;
294 hr
= TransformFilter_Create(&(This
->tf
), &CLSID_AVIDec
, &AVIDec_FuncsTable
);