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"
30 #include "wine/unicode.h"
31 #include "wine/debug.h"
38 WINE_DEFAULT_DEBUG_CHANNEL(quartz
);
40 static const WCHAR wcsOutputPinName
[] = {'o','u','t','p','u','t',' ','p','i','n',0};
42 typedef struct WAVEParserImpl
45 LONGLONG StartOfFile
; /* in media time */
52 static inline WAVEParserImpl
*impl_from_IMediaSeeking( IMediaSeeking
*iface
)
54 return (WAVEParserImpl
*)((char*)iface
- FIELD_OFFSET(WAVEParserImpl
, Parser
.sourceSeeking
.lpVtbl
));
57 static LONGLONG
bytepos_to_duration(WAVEParserImpl
*This
, LONGLONG bytepos
)
59 LONGLONG duration
= BYTES_FROM_MEDIATIME(bytepos
- This
->StartOfFile
);
61 duration
/= (This
->dwSampleSize
* This
->nSamplesPerSec
);
66 static LONGLONG
duration_to_bytepos(WAVEParserImpl
*This
, LONGLONG duration
)
70 bytepos
= (This
->dwSampleSize
* This
->nSamplesPerSec
);
73 bytepos
+= BYTES_FROM_MEDIATIME(This
->StartOfFile
);
74 bytepos
-= bytepos
% This
->dwSampleSize
;
76 return MEDIATIME_FROM_BYTES(bytepos
);
79 static HRESULT
WAVEParser_Sample(LPVOID iface
, IMediaSample
* pSample
, DWORD_PTR cookie
)
81 WAVEParserImpl
*This
= iface
;
82 LPBYTE pbSrcStream
= NULL
;
83 ULONG cbSrcStream
= 0;
84 REFERENCE_TIME tStart
, tStop
;
86 IMediaSample
*newsample
= NULL
;
87 Parser_OutputPin
*pOutputPin
;
88 PullPin
*pin
= This
->Parser
.pInputPin
;
90 IMediaSample_GetPointer(pSample
, &pbSrcStream
);
91 hr
= IMediaSample_GetTime(pSample
, &tStart
, &tStop
);
93 cbSrcStream
= IMediaSample_GetActualDataLength(pSample
);
98 TRACE(".. Why do I need you?\n");
102 pOutputPin
= (Parser_OutputPin
*)This
->Parser
.ppPins
[1];
105 hr
= IMemAllocator_GetBuffer(pin
->pAlloc
, &newsample
, NULL
, NULL
, 0);
109 LONGLONG rtSampleStart
= pin
->rtNext
;
110 /* Add 4 for the next header, which should hopefully work */
111 LONGLONG rtSampleStop
= rtSampleStart
+ MEDIATIME_FROM_BYTES(IMediaSample_GetSize(newsample
));
113 if (rtSampleStop
> pin
->rtStop
)
114 rtSampleStop
= MEDIATIME_FROM_BYTES(ALIGNUP(BYTES_FROM_MEDIATIME(pin
->rtStop
), pin
->cbAlign
));
116 hr
= IMediaSample_SetTime(newsample
, &rtSampleStart
, &rtSampleStop
);
118 pin
->rtCurrent
= pin
->rtNext
;
119 pin
->rtNext
= rtSampleStop
;
121 IMediaSample_SetPreroll(newsample
, 0);
122 IMediaSample_SetDiscontinuity(newsample
, 0);
123 IMediaSample_SetSyncPoint(newsample
, 1);
125 hr
= IAsyncReader_Request(pin
->pReader
, newsample
, 0);
130 REFERENCE_TIME tAviStart
, tAviStop
;
132 IMediaSample_SetSyncPoint(pSample
, TRUE
);
133 pOutputPin
->dwSamplesProcessed
++;
135 tAviStart
= bytepos_to_duration(This
, tStart
);
136 tAviStop
= bytepos_to_duration(This
, tStart
+ MEDIATIME_FROM_BYTES(IMediaSample_GetActualDataLength(pSample
)));
138 IMediaSample_SetTime(pSample
, &tAviStart
, &tAviStop
);
140 hr
= BaseOutputPinImpl_Deliver(&pOutputPin
->pin
, pSample
);
141 if (hr
!= S_OK
&& hr
!= S_FALSE
&& hr
!= VFW_E_WRONG_STATE
)
142 ERR("Error sending sample (%x)\n", hr
);
144 /* Unset progression if denied! */
145 This
->Parser
.pInputPin
->rtCurrent
= tStart
;
148 if (tStop
>= This
->EndOfFile
|| (bytepos_to_duration(This
, tStop
) >= This
->Parser
.sourceSeeking
.llStop
) || hr
== VFW_E_NOT_CONNECTED
)
152 TRACE("End of file reached\n");
154 for (i
= 0; i
< This
->Parser
.cStreams
; i
++)
159 TRACE("Send End Of Stream to output pin %u\n", i
);
161 hr
= IPin_ConnectedTo(This
->Parser
.ppPins
[i
+1], &ppin
);
164 hr
= IPin_EndOfStream(ppin
);
174 /* Force the pullpin thread to stop */
181 static HRESULT
WAVEParser_QueryAccept(LPVOID iface
, const AM_MEDIA_TYPE
* pmt
)
183 if (!IsEqualIID(&pmt
->majortype
, &MEDIATYPE_Stream
))
185 if (IsEqualIID(&pmt
->subtype
, &MEDIASUBTYPE_WAVE
))
187 if (IsEqualIID(&pmt
->subtype
, &MEDIASUBTYPE_AU
) || IsEqualIID(&pmt
->subtype
, &MEDIASUBTYPE_AIFF
))
188 FIXME("AU and AIFF files not supported yet!\n");
192 static HRESULT WINAPI
WAVEParserImpl_seek(IMediaSeeking
*iface
)
194 WAVEParserImpl
*This
= impl_from_IMediaSeeking(iface
);
195 PullPin
*pPin
= This
->Parser
.pInputPin
;
197 LONGLONG newpos
, curpos
, endpos
, bytepos
;
199 newpos
= This
->Parser
.sourceSeeking
.llCurrent
;
200 curpos
= bytepos_to_duration(This
, pPin
->rtCurrent
);
201 endpos
= bytepos_to_duration(This
, This
->EndOfFile
);
202 bytepos
= duration_to_bytepos(This
, newpos
);
206 WARN("Requesting position %x%08x beyond end of stream %x%08x\n", (DWORD
)(newpos
>>32), (DWORD
)newpos
, (DWORD
)(endpos
>>32), (DWORD
)endpos
);
210 if (curpos
/1000000 == newpos
/1000000)
212 TRACE("Requesting position %x%08x same as current position %x%08x\n", (DWORD
)(newpos
>>32), (DWORD
)newpos
, (DWORD
)(curpos
>>32), (DWORD
)curpos
);
216 TRACE("Moving sound to %08u bytes!\n", (DWORD
)BYTES_FROM_MEDIATIME(bytepos
));
218 EnterCriticalSection(&pPin
->thread_lock
);
219 IPin_BeginFlush((IPin
*)pPin
);
221 /* Make sure this is done while stopped, BeginFlush takes care of this */
222 EnterCriticalSection(&This
->Parser
.filter
.csFilter
);
223 IPin_ConnectedTo(This
->Parser
.ppPins
[1], &victim
);
226 IPin_NewSegment(victim
, newpos
, endpos
, pPin
->dRate
);
227 IPin_Release(victim
);
230 pPin
->rtStart
= pPin
->rtCurrent
= bytepos
;
231 ((Parser_OutputPin
*)This
->Parser
.ppPins
[1])->dwSamplesProcessed
= 0;
232 LeaveCriticalSection(&This
->Parser
.filter
.csFilter
);
234 TRACE("Done flushing\n");
235 IPin_EndFlush((IPin
*)pPin
);
236 LeaveCriticalSection(&pPin
->thread_lock
);
241 static HRESULT
WAVEParser_InputPin_PreConnect(IPin
* iface
, IPin
* pConnectPin
, ALLOCATOR_PROPERTIES
*props
)
243 PullPin
*This
= (PullPin
*)iface
;
247 LONGLONG pos
= 0; /* in bytes */
250 WAVEParserImpl
* pWAVEParser
= (WAVEParserImpl
*)This
->pin
.pinInfo
.pFilter
;
251 LONGLONG length
, avail
;
253 piOutput
.dir
= PINDIR_OUTPUT
;
254 piOutput
.pFilter
= (IBaseFilter
*)This
;
255 lstrcpynW(piOutput
.achName
, wcsOutputPinName
, sizeof(piOutput
.achName
) / sizeof(piOutput
.achName
[0]));
257 hr
= IAsyncReader_SyncRead(This
->pReader
, pos
, sizeof(list
), (BYTE
*)&list
);
260 if (list
.fcc
!= FOURCC_RIFF
)
262 ERR("Input stream not a RIFF file\n");
265 if (list
.cb
> 1 * 1024 * 1024 * 1024) /* cannot be more than 1Gb in size */
267 ERR("Input stream violates RIFF spec\n");
270 if (list
.fccListType
!= mmioFOURCC('W','A','V','E'))
272 ERR("Input stream not an WAVE RIFF file\n");
276 hr
= IAsyncReader_SyncRead(This
->pReader
, pos
, sizeof(chunk
), (BYTE
*)&chunk
);
277 pos
+= sizeof(chunk
);
278 if (chunk
.fcc
!= mmioFOURCC('f','m','t',' '))
280 ERR("Expected 'fmt ' chunk, but got %.04s\n", (LPSTR
)&chunk
.fcc
);
284 amt
.majortype
= MEDIATYPE_Audio
;
285 amt
.formattype
= FORMAT_WaveFormatEx
;
286 amt
.cbFormat
= chunk
.cb
;
287 amt
.pbFormat
= CoTaskMemAlloc(amt
.cbFormat
);
289 hr
= IAsyncReader_SyncRead(This
->pReader
, pos
, amt
.cbFormat
, amt
.pbFormat
);
290 amt
.subtype
= MEDIATYPE_Audio
;
291 amt
.subtype
.Data1
= ((WAVEFORMATEX
*)amt
.pbFormat
)->wFormatTag
;
294 hr
= IAsyncReader_SyncRead(This
->pReader
, pos
, sizeof(chunk
), (BYTE
*)&chunk
);
295 if (chunk
.fcc
== mmioFOURCC('f','a','c','t'))
297 FIXME("'fact' chunk not supported yet\n");
298 pos
+= sizeof(chunk
) + chunk
.cb
;
299 hr
= IAsyncReader_SyncRead(This
->pReader
, pos
, sizeof(chunk
), (BYTE
*)&chunk
);
301 if (chunk
.fcc
!= mmioFOURCC('d','a','t','a'))
303 ERR("Expected 'data' chunk, but got %.04s\n", (LPSTR
)&chunk
.fcc
);
309 pWAVEParser
->StartOfFile
= MEDIATIME_FROM_BYTES(pos
+ sizeof(RIFFCHUNK
));
310 pWAVEParser
->EndOfFile
= MEDIATIME_FROM_BYTES(pos
+ chunk
.cb
+ sizeof(RIFFCHUNK
));
316 props
->cbAlign
= ((WAVEFORMATEX
*)amt
.pbFormat
)->nBlockAlign
;
318 props
->cbBuffer
= 4096;
320 pWAVEParser
->dwSampleSize
= ((WAVEFORMATEX
*)amt
.pbFormat
)->nBlockAlign
;
321 IAsyncReader_Length(This
->pReader
, &length
, &avail
);
322 pWAVEParser
->dwLength
= length
/ (ULONGLONG
)pWAVEParser
->dwSampleSize
;
323 pWAVEParser
->nSamplesPerSec
= ((WAVEFORMATEX
*)amt
.pbFormat
)->nSamplesPerSec
;
324 hr
= Parser_AddPin(&(pWAVEParser
->Parser
), &piOutput
, props
, &amt
);
325 CoTaskMemFree(amt
.pbFormat
);
327 pWAVEParser
->Parser
.sourceSeeking
.llCurrent
= 0;
328 pWAVEParser
->Parser
.sourceSeeking
.llStop
= pWAVEParser
->Parser
.sourceSeeking
.llDuration
= bytepos_to_duration(pWAVEParser
, pWAVEParser
->EndOfFile
);
329 TRACE("Duration: %u seconds\n", (DWORD
)(pWAVEParser
->Parser
.sourceSeeking
.llDuration
/ (LONGLONG
)10000000));
331 This
->rtStop
= pWAVEParser
->EndOfFile
;
332 This
->rtStart
= pWAVEParser
->StartOfFile
;
334 TRACE("WAVE File ok\n");
339 static HRESULT
WAVEParser_Cleanup(LPVOID iface
)
341 WAVEParserImpl
*This
= iface
;
343 TRACE("(%p)->()\n", This
);
348 static HRESULT
WAVEParser_first_request(LPVOID iface
)
350 WAVEParserImpl
*This
= iface
;
351 PullPin
*pin
= This
->Parser
.pInputPin
;
353 IMediaSample
*sample
;
355 if (pin
->rtCurrent
>= pin
->rtStop
)
357 /* Last sample has already been queued, request nothing more */
362 hr
= IMemAllocator_GetBuffer(pin
->pAlloc
, &sample
, NULL
, NULL
, 0);
364 pin
->rtNext
= pin
->rtCurrent
;
367 LONGLONG rtSampleStart
= pin
->rtNext
;
368 /* Add 4 for the next header, which should hopefully work */
369 LONGLONG rtSampleStop
= rtSampleStart
+ MEDIATIME_FROM_BYTES(IMediaSample_GetSize(sample
));
370 Parser_OutputPin
*outpin
= (Parser_OutputPin
*)This
->Parser
.ppPins
[1];
372 if (rtSampleStop
> pin
->rtStop
)
373 rtSampleStop
= MEDIATIME_FROM_BYTES(ALIGNUP(BYTES_FROM_MEDIATIME(pin
->rtStop
), pin
->cbAlign
));
375 hr
= IMediaSample_SetTime(sample
, &rtSampleStart
, &rtSampleStop
);
377 pin
->rtCurrent
= pin
->rtNext
;
378 pin
->rtNext
= rtSampleStop
;
380 IMediaSample_SetPreroll(sample
, FALSE
);
381 if (!outpin
->dwSamplesProcessed
++)
382 IMediaSample_SetDiscontinuity(sample
, TRUE
);
384 IMediaSample_SetDiscontinuity(sample
, FALSE
);
386 hr
= IAsyncReader_Request(pin
->pReader
, sample
, 0);
389 ERR("Horsemen of the apocalypse came to bring error 0x%08x %p\n", hr
, sample
);
394 static HRESULT
WAVEParser_disconnect(LPVOID iface
)
396 /* TODO: Find and plug memory leaks */
400 static const IBaseFilterVtbl WAVEParser_Vtbl
=
402 Parser_QueryInterface
,
410 Parser_SetSyncSource
,
411 Parser_GetSyncSource
,
414 Parser_QueryFilterInfo
,
415 Parser_JoinFilterGraph
,
416 Parser_QueryVendorInfo
419 HRESULT
WAVEParser_create(IUnknown
* pUnkOuter
, LPVOID
* ppv
)
422 WAVEParserImpl
* This
;
424 TRACE("(%p, %p)\n", pUnkOuter
, ppv
);
429 return CLASS_E_NOAGGREGATION
;
431 /* Note: This memory is managed by the transform filter once created */
432 This
= CoTaskMemAlloc(sizeof(WAVEParserImpl
));
434 hr
= Parser_Create(&(This
->Parser
), &WAVEParser_Vtbl
, &CLSID_WAVEParser
, WAVEParser_Sample
, WAVEParser_QueryAccept
, WAVEParser_InputPin_PreConnect
, WAVEParser_Cleanup
, WAVEParser_disconnect
, WAVEParser_first_request
, NULL
, NULL
, WAVEParserImpl_seek
, NULL
);