wined3d: Move shader caps setting into the arb and glsl shader backends.
[wine] / dlls / quartz / acmwrapper.c
1 /*
2  * ACM Wrapper
3  *
4  * Copyright 2005 Christian Costa
5  *
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.
10  *
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.
15  *
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
19  */
20
21 #include "config.h"
22
23 #include "quartz_private.h"
24 #include "pin.h"
25
26 #include "uuids.h"
27 #include "mmreg.h"
28 #include "windef.h"
29 #include "winbase.h"
30 #include "dshow.h"
31 #include "strmif.h"
32 #include "vfwmsgs.h"
33 #include "msacm.h"
34
35 #include <assert.h>
36
37 #include "wine/unicode.h"
38 #include "wine/debug.h"
39
40 #include "transform.h"
41
42 WINE_DEFAULT_DEBUG_CHANNEL(quartz);
43
44 typedef struct ACMWrapperImpl
45 {
46     TransformFilterImpl tf;
47     HACMSTREAM has;
48     LPWAVEFORMATEX pWfIn;
49     LPWAVEFORMATEX pWfOut;
50     BOOL reinit_codec; /* FIXME: Should use sync points instead */
51 } ACMWrapperImpl;
52
53 static HRESULT ACMWrapper_ProcessSampleData(TransformFilterImpl* pTransformFilter, IMediaSample *pSample)
54 {
55     ACMWrapperImpl* This = (ACMWrapperImpl*)pTransformFilter;
56     AM_MEDIA_TYPE amt;
57     IMediaSample* pOutSample = NULL;
58     DWORD cbDstStream, cbSrcStream;
59     LPBYTE pbDstStream;
60     LPBYTE pbSrcStream = NULL;
61     ACMSTREAMHEADER ash;
62     BOOL unprepare_header = FALSE;
63     MMRESULT res;
64     HRESULT hr;
65     LONGLONG tStart = -1, tStop = -1, tMed;
66
67     hr = IMediaSample_GetPointer(pSample, &pbSrcStream);
68     if (FAILED(hr))
69     {
70         ERR("Cannot get pointer to sample data (%x)\n", hr);
71         return hr;
72     }
73
74     IMediaSample_GetTime(pSample, &tStart, &tStop);
75     cbSrcStream = IMediaSample_GetActualDataLength(pSample);
76
77     TRACE("Sample data ptr = %p, size = %ld\n", pbSrcStream, (long)cbSrcStream);
78
79     hr = IPin_ConnectionMediaType(This->tf.ppPins[0], &amt);
80     if (FAILED(hr)) {
81         ERR("Unable to retrieve media type\n");
82         return hr;
83     }
84
85     ash.pbSrc = pbSrcStream;
86     ash.cbSrcLength = cbSrcStream;
87
88     while(hr == S_OK && ash.cbSrcLength)
89     {
90         hr = OutputPin_GetDeliveryBuffer((OutputPin*)This->tf.ppPins[1], &pOutSample, NULL, NULL, 0);
91         if (FAILED(hr)) {
92             ERR("Unable to get delivery buffer (%x)\n", hr);
93             return hr;
94         }
95
96         hr = IMediaSample_SetActualDataLength(pOutSample, 0);
97         assert(hr == S_OK);
98
99         hr = IMediaSample_GetPointer(pOutSample, &pbDstStream);
100         if (FAILED(hr)) {
101             ERR("Unable to get pointer to buffer (%x)\n", hr);
102             goto error;
103         }
104         cbDstStream = IMediaSample_GetSize(pOutSample);
105
106         ash.cbStruct = sizeof(ash);
107         ash.fdwStatus = 0;
108         ash.dwUser = 0;
109         ash.pbDst = pbDstStream;
110         ash.cbDstLength = cbDstStream;
111
112         if ((res = acmStreamPrepareHeader(This->has, &ash, 0))) {
113             ERR("Cannot prepare header %d\n", res);
114             goto error;
115         }
116         unprepare_header = TRUE;
117
118         if ((res = acmStreamConvert(This->has, &ash, This->reinit_codec ? ACM_STREAMCONVERTF_START : 0))) {
119             if(res != MMSYSERR_MOREDATA)
120                 ERR("Cannot convert data header %d\n", res);
121             goto error;
122         }
123         This->reinit_codec = FALSE;
124
125         TRACE("used in %u/%u, used out %u/%u\n", ash.cbSrcLengthUsed, ash.cbSrcLength, ash.cbDstLengthUsed, ash.cbDstLength);
126
127         hr = IMediaSample_SetActualDataLength(pOutSample, ash.cbDstLengthUsed);
128         assert(hr == S_OK);
129
130         assert(ash.cbSrcLengthUsed);
131         TRACE("Sample start time: %lld.%03lld\n", (tStart/10000000), (tStart/10000)%1000);
132         if (ash.cbSrcLengthUsed == cbSrcStream)
133         {
134             IMediaSample_SetTime(pOutSample, &tStart, &tStop);
135             tStart = tStop;
136         }
137         else if (tStop != tStart)
138         {
139             tMed = tStop - tStart;
140             tMed = tStart + tMed * ash.cbSrcLengthUsed / cbSrcStream;
141             IMediaSample_SetTime(pOutSample, &tStart, &tMed);
142             tStart = tMed;
143         }
144         else
145         {
146             ERR("No valid timestamp found\n");
147             IMediaSample_SetTime(pOutSample, NULL, NULL);
148         }
149         TRACE("Sample stop time: %lld.%03lld\n", (tStart/10000000), (tStart/10000)%1000);
150
151         hr = OutputPin_SendSample((OutputPin*)This->tf.ppPins[1], pOutSample);
152         if (hr != S_OK && hr != VFW_E_NOT_CONNECTED) {
153             if (FAILED(hr))
154                 ERR("Error sending sample (%x)\n", hr);
155             goto error;
156         }
157
158 error:
159         if (unprepare_header && (res = acmStreamUnprepareHeader(This->has, &ash, 0)))
160             ERR("Cannot unprepare header %d\n", res);
161         unprepare_header = FALSE;
162         ash.pbSrc += ash.cbSrcLengthUsed;
163         ash.cbSrcLength -= ash.cbSrcLengthUsed;
164
165         if (pOutSample)
166             IMediaSample_Release(pOutSample);
167         pOutSample = NULL;
168     }
169
170     return hr;
171 }
172
173 static HRESULT ACMWrapper_ConnectInput(TransformFilterImpl* pTransformFilter, const AM_MEDIA_TYPE * pmt)
174 {
175     ACMWrapperImpl* This = (ACMWrapperImpl*)pTransformFilter;
176     MMRESULT res;
177
178     TRACE("(%p)->(%p)\n", This, pmt);
179
180     /* Check root (GUID w/o FOURCC) */
181     if ((IsEqualIID(&pmt->majortype, &MEDIATYPE_Audio)) &&
182         (!memcmp(((const char *)&pmt->subtype)+4, ((const char *)&MEDIATYPE_Audio)+4, sizeof(GUID)-4)) &&
183         (IsEqualIID(&pmt->formattype, &FORMAT_WaveFormatEx)))
184     {
185         HACMSTREAM drv;
186         AM_MEDIA_TYPE* outpmt = &((OutputPin*)This->tf.ppPins[1])->pin.mtCurrent;
187         This->pWfIn = (LPWAVEFORMATEX)pmt->pbFormat;
188
189         /* HACK */
190         /* TRACE("ALIGN = %d\n", pACMWrapper->pWfIn->nBlockAlign); */
191         /* pACMWrapper->pWfIn->nBlockAlign = 1; */
192
193         /* Set output audio data to PCM */
194         CopyMediaType(outpmt, pmt);
195         outpmt->subtype.Data1 = WAVE_FORMAT_PCM;
196         This->pWfOut = (WAVEFORMATEX*)outpmt->pbFormat;
197         This->pWfOut->wFormatTag = WAVE_FORMAT_PCM;
198         This->pWfOut->wBitsPerSample = 16;
199         This->pWfOut->nBlockAlign = 4;
200         This->pWfOut->cbSize = 0;
201         This->pWfOut->nAvgBytesPerSec = This->pWfOut->nChannels * This->pWfOut->nSamplesPerSec
202                                                 * (This->pWfOut->wBitsPerSample/8);
203
204         if (!(res = acmStreamOpen(&drv, NULL, This->pWfIn, This->pWfOut, NULL, 0, 0, 0)))
205         {
206             This->has = drv;
207
208             /* Update buffer size of media samples in output */
209             ((OutputPin*)This->tf.ppPins[1])->allocProps.cbBuffer = This->pWfOut->nAvgBytesPerSec / 2;
210             TRACE("Connection accepted\n");
211             return S_OK;
212         }
213         else
214             FIXME("acmStreamOpen returned %d\n", res);
215         FreeMediaType(outpmt);
216         TRACE("Unable to find a suitable ACM decompressor\n");
217     }
218
219     TRACE("Connection refused\n");
220     return VFW_E_TYPE_NOT_ACCEPTED;
221 }
222
223 static HRESULT ACMWrapper_Cleanup(TransformFilterImpl* pTransformFilter)
224 {
225     ACMWrapperImpl* This = (ACMWrapperImpl*)pTransformFilter;
226
227     TRACE("(%p)->()\n", This);
228     
229     if (This->has)
230         acmStreamClose(This->has, 0);
231
232     This->has = 0;
233     
234     return S_OK;
235 }
236
237 static const TransformFuncsTable ACMWrapper_FuncsTable = {
238     NULL,
239     ACMWrapper_ProcessSampleData,
240     NULL,
241     NULL,
242     ACMWrapper_ConnectInput,
243     ACMWrapper_Cleanup
244 };
245
246 HRESULT ACMWrapper_create(IUnknown * pUnkOuter, LPVOID * ppv)
247 {
248     HRESULT hr;
249     ACMWrapperImpl* This;
250
251     TRACE("(%p, %p)\n", pUnkOuter, ppv);
252
253     *ppv = NULL;
254
255     if (pUnkOuter)
256         return CLASS_E_NOAGGREGATION;
257
258     /* Note: This memory is managed by the transform filter once created */
259     This = CoTaskMemAlloc(sizeof(ACMWrapperImpl));
260     ZeroMemory(This, sizeof(ACMWrapperImpl));
261
262     This->reinit_codec = TRUE;
263
264     hr = TransformFilter_Create(&(This->tf), &CLSID_ACMWrapper, &ACMWrapper_FuncsTable);
265
266     if (FAILED(hr))
267         return hr;
268
269     *ppv = (LPVOID)This;
270
271     return hr;
272 }