comctl32: toolbar: Don't execute TB_GETBUTTONINFO if cbSize is invalid.
[wine/multimedia.git] / dlls / quartz / waveparser.c
blob3997782cf8bce8d01b8a3573e73c0487456befc3
1 /*
2 * WAVE Parser Filter
4 * Copyright 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 "quartz_private.h"
22 #include "control_private.h"
23 #include "pin.h"
25 #include "uuids.h"
26 #include "aviriff.h"
27 #include "mmreg.h"
28 #include "vfwmsgs.h"
29 #include "mmsystem.h"
31 #include "fourcc.h"
33 #include "wine/unicode.h"
34 #include "wine/debug.h"
36 #include <math.h>
37 #include <assert.h>
39 #include "parser.h"
41 WINE_DEFAULT_DEBUG_CHANNEL(quartz);
43 static const WCHAR wcsOutputPinName[] = {'o','u','t','p','u','t',' ','p','i','n',0};
45 typedef struct WAVEParserImpl
47 ParserImpl Parser;
48 IMediaSample * pCurrentSample;
49 LONGLONG StartOfFile; /* in media time */
50 LONGLONG EndOfFile;
51 } WAVEParserImpl;
53 static HRESULT WAVEParser_Sample(LPVOID iface, IMediaSample * pSample)
55 WAVEParserImpl *This = (WAVEParserImpl *)iface;
56 LPBYTE pbSrcStream = NULL;
57 long cbSrcStream = 0;
58 REFERENCE_TIME tStart, tStop;
59 HRESULT hr;
60 BOOL bMoreData = TRUE;
61 Parser_OutputPin * pOutputPin;
62 BYTE * pbDstStream;
63 long cbDstStream;
64 long chunk_remaining_bytes = 0;
65 long offset_src = 0;
67 hr = IMediaSample_GetPointer(pSample, &pbSrcStream);
69 hr = IMediaSample_GetTime(pSample, &tStart, &tStop);
71 cbSrcStream = IMediaSample_GetActualDataLength(pSample);
73 assert(BYTES_FROM_MEDIATIME(tStop - tStart) == cbSrcStream);
75 pOutputPin = (Parser_OutputPin *)This->Parser.ppPins[1];
77 if (tStop < This->StartOfFile)
78 return S_OK;
80 if (tStart < This->StartOfFile)
81 offset_src = BYTES_FROM_MEDIATIME(This->StartOfFile - tStart);
83 while (bMoreData)
85 if (!This->pCurrentSample)
87 /* cache media sample until it is ready to be despatched
88 * (i.e. we reach the end of the chunk) */
89 hr = OutputPin_GetDeliveryBuffer(&pOutputPin->pin, &This->pCurrentSample, NULL, NULL, 0);
91 if (SUCCEEDED(hr))
93 hr = IMediaSample_SetActualDataLength(This->pCurrentSample, 0);
94 assert(hr == S_OK);
96 else
98 TRACE("Skipping sending sample due to error (%x)\n", hr);
99 This->pCurrentSample = NULL;
100 break;
104 hr = IMediaSample_GetPointer(This->pCurrentSample, &pbDstStream);
106 if (SUCCEEDED(hr))
108 cbDstStream = IMediaSample_GetSize(This->pCurrentSample);
110 chunk_remaining_bytes = cbDstStream - IMediaSample_GetActualDataLength(This->pCurrentSample);
112 assert(chunk_remaining_bytes >= 0);
113 assert(chunk_remaining_bytes <= cbDstStream - IMediaSample_GetActualDataLength(This->pCurrentSample));
116 if (chunk_remaining_bytes <= cbSrcStream - offset_src)
118 if (SUCCEEDED(hr))
120 memcpy(pbDstStream + IMediaSample_GetActualDataLength(This->pCurrentSample), pbSrcStream + offset_src, chunk_remaining_bytes);
121 hr = IMediaSample_SetActualDataLength(This->pCurrentSample, chunk_remaining_bytes + IMediaSample_GetActualDataLength(This->pCurrentSample));
122 assert(hr == S_OK);
125 if (SUCCEEDED(hr))
127 REFERENCE_TIME tAviStart, tAviStop;
129 /* FIXME: hack */
130 if (pOutputPin->dwSamplesProcessed == 0) {
131 IMediaSample_SetDiscontinuity(This->pCurrentSample, TRUE);
132 IMediaSample_SetSyncPoint(This->pCurrentSample, TRUE);
135 pOutputPin->dwSamplesProcessed++;
137 if (pOutputPin->dwSampleSize)
138 tAviStart = (LONGLONG)ceil(10000000.0 * (float)(pOutputPin->dwSamplesProcessed - 1) * (float)IMediaSample_GetActualDataLength(This->pCurrentSample) / ((float)pOutputPin->dwSampleSize * pOutputPin->fSamplesPerSec));
139 else
140 tAviStart = (LONGLONG)ceil(10000000.0 * (float)(pOutputPin->dwSamplesProcessed - 1) / (float)pOutputPin->fSamplesPerSec);
141 if (pOutputPin->dwSampleSize)
142 tAviStop = (LONGLONG)ceil(10000000.0 * (float)pOutputPin->dwSamplesProcessed * (float)IMediaSample_GetActualDataLength(This->pCurrentSample) / ((float)pOutputPin->dwSampleSize * pOutputPin->fSamplesPerSec));
143 else
144 tAviStop = (LONGLONG)ceil(10000000.0 * (float)pOutputPin->dwSamplesProcessed / (float)pOutputPin->fSamplesPerSec);
146 IMediaSample_SetTime(This->pCurrentSample, &tAviStart, &tAviStop);
148 hr = OutputPin_SendSample(&pOutputPin->pin, This->pCurrentSample);
149 if (hr != S_OK && hr != VFW_E_NOT_CONNECTED)
150 ERR("Error sending sample (%x)\n", hr);
153 if (This->pCurrentSample)
154 IMediaSample_Release(This->pCurrentSample);
156 This->pCurrentSample = NULL;
158 else
160 if (SUCCEEDED(hr))
162 memcpy(pbDstStream + IMediaSample_GetActualDataLength(This->pCurrentSample), pbSrcStream + offset_src, cbSrcStream - offset_src);
163 IMediaSample_SetActualDataLength(This->pCurrentSample, cbSrcStream - offset_src + IMediaSample_GetActualDataLength(This->pCurrentSample));
165 bMoreData = FALSE;
167 offset_src += chunk_remaining_bytes;
170 if (tStop >= This->EndOfFile)
172 int i;
174 TRACE("End of file reached\n");
176 for (i = 0; i < This->Parser.cStreams; i++)
178 IPin* ppin;
179 HRESULT hr;
181 TRACE("Send End Of Stream to output pin %d\n", i);
183 hr = IPin_ConnectedTo(This->Parser.ppPins[i+1], &ppin);
184 if (SUCCEEDED(hr))
186 hr = IPin_EndOfStream(ppin);
187 IPin_Release(ppin);
189 if (FAILED(hr))
191 ERR("%x\n", hr);
192 break;
196 /* Force the pullpin thread to stop */
197 hr = S_FALSE;
200 return hr;
203 static HRESULT WAVEParser_QueryAccept(LPVOID iface, const AM_MEDIA_TYPE * pmt)
205 if (!IsEqualIID(&pmt->majortype, &MEDIATYPE_Stream))
206 return S_FALSE;
207 if (IsEqualIID(&pmt->subtype, &MEDIASUBTYPE_WAVE))
208 return S_OK;
209 if (IsEqualIID(&pmt->subtype, &MEDIASUBTYPE_AU) || IsEqualIID(&pmt->subtype, &MEDIASUBTYPE_AIFF))
210 FIXME("AU and AIFF files not supported yet!\n");
211 return S_FALSE;
214 static HRESULT WAVEParser_InputPin_PreConnect(IPin * iface, IPin * pConnectPin)
216 PullPin *This = (PullPin *)iface;
217 HRESULT hr;
218 RIFFLIST list;
219 RIFFCHUNK chunk;
220 LONGLONG pos = 0; /* in bytes */
221 PIN_INFO piOutput;
222 ALLOCATOR_PROPERTIES props;
223 AM_MEDIA_TYPE amt;
224 float fSamplesPerSec = 0.0f;
225 DWORD dwSampleSize = 0;
226 DWORD dwLength = 0;
227 WAVEParserImpl * pWAVEParser = (WAVEParserImpl *)This->pin.pinInfo.pFilter;
229 piOutput.dir = PINDIR_OUTPUT;
230 piOutput.pFilter = (IBaseFilter *)This;
231 lstrcpynW(piOutput.achName, wcsOutputPinName, sizeof(piOutput.achName) / sizeof(piOutput.achName[0]));
233 hr = IAsyncReader_SyncRead(This->pReader, pos, sizeof(list), (BYTE *)&list);
234 pos += sizeof(list);
236 if (list.fcc != ckidRIFF)
238 ERR("Input stream not a RIFF file\n");
239 return E_FAIL;
241 if (list.cb > 1 * 1024 * 1024 * 1024) /* cannot be more than 1Gb in size */
243 ERR("Input stream violates RIFF spec\n");
244 return E_FAIL;
246 if (list.fccListType != mmioFOURCC('W','A','V','E'))
248 ERR("Input stream not an WAVE RIFF file\n");
249 return E_FAIL;
252 hr = IAsyncReader_SyncRead(This->pReader, pos, sizeof(chunk), (BYTE *)&chunk);
253 pos += sizeof(chunk);
254 if (chunk.fcc != mmioFOURCC('f','m','t',' '))
256 ERR("Expected 'fmt ' chunk, but got %.04s\n", (LPSTR)&chunk.fcc);
257 return E_FAIL;
260 memcpy(&amt.majortype, &MEDIATYPE_Audio, sizeof(GUID));
261 memcpy(&amt.formattype, &FORMAT_WaveFormatEx, sizeof(GUID));
262 amt.cbFormat = chunk.cb;
263 amt.pbFormat = CoTaskMemAlloc(amt.cbFormat);
264 amt.pUnk = NULL;
265 hr = IAsyncReader_SyncRead(This->pReader, pos, amt.cbFormat, amt.pbFormat);
266 memcpy(&amt.subtype, &MEDIATYPE_Audio, sizeof(GUID));
267 amt.subtype.Data1 = ((WAVEFORMATEX*)amt.pbFormat)->wFormatTag;
269 pos += chunk.cb;
270 hr = IAsyncReader_SyncRead(This->pReader, pos, sizeof(chunk), (BYTE *)&chunk);
271 if (chunk.fcc == mmioFOURCC('f','a','c','t'))
273 FIXME("'fact' chunk not supported yet\n");
274 pos += sizeof(chunk) + chunk.cb;
275 hr = IAsyncReader_SyncRead(This->pReader, pos, sizeof(chunk), (BYTE *)&chunk);
277 if (chunk.fcc != mmioFOURCC('d','a','t','a'))
279 ERR("Expected 'data' chunk, but got %.04s\n", (LPSTR)&chunk.fcc);
280 return E_FAIL;
283 if (hr == S_OK)
285 pWAVEParser->StartOfFile = MEDIATIME_FROM_BYTES(pos + sizeof(RIFFCHUNK));
286 pWAVEParser->EndOfFile = MEDIATIME_FROM_BYTES(pos + chunk.cb + sizeof(RIFFCHUNK));
289 if (hr != S_OK)
290 return E_FAIL;
292 props.cbAlign = ((WAVEFORMATEX*)amt.pbFormat)->nBlockAlign;
293 props.cbPrefix = 0;
294 props.cbBuffer = 4096;
295 props.cBuffers = 2;
297 hr = Parser_AddPin(&(pWAVEParser->Parser), &piOutput, &props, &amt, fSamplesPerSec, dwSampleSize, dwLength);
299 TRACE("WAVE File ok\n");
301 return hr;
304 static HRESULT WAVEParser_Cleanup(LPVOID iface)
306 WAVEParserImpl *This = (WAVEParserImpl*)iface;
308 TRACE("(%p)->()\n", This);
310 if (This->pCurrentSample)
311 IMediaSample_Release(This->pCurrentSample);
312 This->pCurrentSample = NULL;
314 return S_OK;
317 HRESULT WAVEParser_create(IUnknown * pUnkOuter, LPVOID * ppv)
319 HRESULT hr;
320 WAVEParserImpl * This;
322 TRACE("(%p, %p)\n", pUnkOuter, ppv);
324 *ppv = NULL;
326 if (pUnkOuter)
327 return CLASS_E_NOAGGREGATION;
329 /* Note: This memory is managed by the transform filter once created */
330 This = CoTaskMemAlloc(sizeof(WAVEParserImpl));
332 This->pCurrentSample = NULL;
334 hr = Parser_Create(&(This->Parser), &CLSID_WAVEParser, WAVEParser_Sample, WAVEParser_QueryAccept, WAVEParser_InputPin_PreConnect, WAVEParser_Cleanup);
336 if (FAILED(hr))
337 return hr;
339 *ppv = (LPVOID)This;
341 return hr;