4 * Copyright 2003 Robert Shearman
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 * - we don't do anything with indices yet (we could use them when seeking)
22 * - we don't support multiple RIFF sections (i.e. large AVI files > 2Gb)
25 #include "quartz_private.h"
26 #include "control_private.h"
37 #include "wine/unicode.h"
38 #include "wine/debug.h"
43 WINE_DEFAULT_DEBUG_CHANNEL(quartz);
45 static const WCHAR wcsInputPinName[] = {'i','n','p','u','t',' ','p','i','n',0};
46 static const struct IBaseFilterVtbl AVISplitter_Vtbl;
47 static const struct IMediaSeekingVtbl AVISplitter_Seeking_Vtbl;
48 static const struct IPinVtbl AVISplitter_OutputPin_Vtbl;
49 static const struct IPinVtbl AVISplitter_InputPin_Vtbl;
51 static HRESULT AVISplitter_Sample(LPVOID iface, IMediaSample * pSample);
52 static HRESULT AVISplitter_OutputPin_QueryAccept(LPVOID iface, const AM_MEDIA_TYPE * pmt);
53 static HRESULT AVISplitter_QueryAccept(LPVOID iface, const AM_MEDIA_TYPE * pmt);
54 static HRESULT AVISplitter_InputPin_PreConnect(IPin * iface, IPin * pConnectPin);
55 static HRESULT AVISplitter_ChangeStart(LPVOID iface);
56 static HRESULT AVISplitter_ChangeStop(LPVOID iface);
57 static HRESULT AVISplitter_ChangeRate(LPVOID iface);
59 static HRESULT AVISplitter_InputPin_Construct(const PIN_INFO * pPinInfo, SAMPLEPROC pSampleProc, LPVOID pUserData, QUERYACCEPTPROC pQueryAccept, LPCRITICAL_SECTION pCritSec, IPin ** ppPin);
61 typedef struct AVISplitter
63 const IBaseFilterVtbl * lpVtbl;
66 CRITICAL_SECTION csFilter;
68 REFERENCE_TIME rtStreamStart;
69 IReferenceClock * pClock;
70 FILTER_INFO filterInfo;
75 IMediaSample * pCurrentSample;
76 RIFFCHUNK CurrentChunk;
77 LONGLONG CurrentChunkOffset; /* in media time */
79 AVIMAINHEADER AviHeader;
82 typedef struct AVISplitter_OutputPin
88 DWORD dwSamplesProcessed;
91 MediaSeekingImpl mediaSeeking;
92 } AVISplitter_OutputPin;
95 #define _IMediaSeeking_Offset ((int)(&(((AVISplitter_OutputPin*)0)->mediaSeeking)))
96 #define ICOM_THIS_From_IMediaSeeking(impl, iface) impl* This = (impl*)(((char*)iface)-_IMediaSeeking_Offset);
98 HRESULT AVISplitter_create(IUnknown * pUnkOuter, LPVOID * ppv)
102 AVISplitter * pAviSplit;
104 TRACE("(%p, %p)\n", pUnkOuter, ppv);
109 return CLASS_E_NOAGGREGATION;
111 pAviSplit = CoTaskMemAlloc(sizeof(AVISplitter));
113 pAviSplit->lpVtbl = &AVISplitter_Vtbl;
114 pAviSplit->refCount = 1;
115 InitializeCriticalSection(&pAviSplit->csFilter);
116 pAviSplit->state = State_Stopped;
117 pAviSplit->pClock = NULL;
118 pAviSplit->pCurrentSample = NULL;
119 ZeroMemory(&pAviSplit->filterInfo, sizeof(FILTER_INFO));
121 pAviSplit->cStreams = 0;
122 pAviSplit->ppPins = CoTaskMemAlloc(1 * sizeof(IPin *));
124 /* construct input pin */
125 piInput.dir = PINDIR_INPUT;
126 piInput.pFilter = (IBaseFilter *)pAviSplit;
127 strncpyW(piInput.achName, wcsInputPinName, sizeof(piInput.achName) / sizeof(piInput.achName[0]));
129 hr = AVISplitter_InputPin_Construct(&piInput, AVISplitter_Sample, (LPVOID)pAviSplit, AVISplitter_QueryAccept, &pAviSplit->csFilter, (IPin **)&pAviSplit->pInputPin);
133 pAviSplit->ppPins[0] = (IPin *)pAviSplit->pInputPin;
134 pAviSplit->pInputPin->fnPreConnect = AVISplitter_InputPin_PreConnect;
135 *ppv = (LPVOID)pAviSplit;
139 CoTaskMemFree(pAviSplit->ppPins);
140 DeleteCriticalSection(&pAviSplit->csFilter);
141 CoTaskMemFree(pAviSplit);
147 static HRESULT AVISplitter_OutputPin_Init(const PIN_INFO * pPinInfo, ALLOCATOR_PROPERTIES * props, LPVOID pUserData, QUERYACCEPTPROC pQueryAccept, const AM_MEDIA_TYPE * pmt, float fSamplesPerSec, LPCRITICAL_SECTION pCritSec, AVISplitter_OutputPin * pPinImpl)
149 pPinImpl->pmt = CoTaskMemAlloc(sizeof(AM_MEDIA_TYPE));
150 CopyMediaType(pPinImpl->pmt, pmt);
151 pPinImpl->dwSamplesProcessed = 0;
152 pPinImpl->dwSampleSize = 0;
153 pPinImpl->fSamplesPerSec = fSamplesPerSec;
155 MediaSeekingImpl_Init((LPVOID)pPinInfo->pFilter, AVISplitter_ChangeStop, AVISplitter_ChangeStart, AVISplitter_ChangeRate, &pPinImpl->mediaSeeking);
156 pPinImpl->mediaSeeking.lpVtbl = &AVISplitter_Seeking_Vtbl;
158 return OutputPin_Init(pPinInfo, props, pUserData, pQueryAccept, pCritSec, &pPinImpl->pin);
161 static HRESULT AVISplitter_OutputPin_Construct(const PIN_INFO * pPinInfo, ALLOCATOR_PROPERTIES * props, LPVOID pUserData, QUERYACCEPTPROC pQueryAccept, const AM_MEDIA_TYPE * pmt, float fSamplesPerSec, LPCRITICAL_SECTION pCritSec, IPin ** ppPin)
163 AVISplitter_OutputPin * pPinImpl;
167 assert(pPinInfo->dir == PINDIR_OUTPUT);
169 pPinImpl = CoTaskMemAlloc(sizeof(AVISplitter_OutputPin));
172 return E_OUTOFMEMORY;
174 if (SUCCEEDED(AVISplitter_OutputPin_Init(pPinInfo, props, pUserData, pQueryAccept, pmt, fSamplesPerSec, pCritSec, pPinImpl)))
176 pPinImpl->pin.pin.lpVtbl = &AVISplitter_OutputPin_Vtbl;
178 *ppPin = (IPin *)pPinImpl;
184 static HRESULT WINAPI AVISplitter_QueryInterface(IBaseFilter * iface, REFIID riid, LPVOID * ppv)
186 ICOM_THIS(AVISplitter, iface);
187 TRACE("(%s, %p)\n", qzdebugstr_guid(riid), ppv);
191 if (IsEqualIID(riid, &IID_IUnknown))
193 else if (IsEqualIID(riid, &IID_IPersist))
195 else if (IsEqualIID(riid, &IID_IMediaFilter))
197 else if (IsEqualIID(riid, &IID_IBaseFilter))
202 IUnknown_AddRef((IUnknown *)(*ppv));
206 FIXME("No interface for %s!\n", qzdebugstr_guid(riid));
208 return E_NOINTERFACE;
211 static ULONG WINAPI AVISplitter_AddRef(IBaseFilter * iface)
213 ICOM_THIS(AVISplitter, iface);
215 return InterlockedIncrement(&This->refCount);
218 static ULONG WINAPI AVISplitter_Release(IBaseFilter * iface)
220 ICOM_THIS(AVISplitter, iface);
222 if (!InterlockedDecrement(&This->refCount))
226 DeleteCriticalSection(&This->csFilter);
227 IReferenceClock_Release(This->pClock);
229 for (i = 0; i < This->cStreams + 1; i++)
230 IPin_Release(This->ppPins[i]);
232 HeapFree(GetProcessHeap(), 0, This->ppPins);
235 TRACE("Destroying AVI splitter\n");
241 return This->refCount;
244 /** IPersist methods **/
246 static HRESULT WINAPI AVISplitter_GetClassID(IBaseFilter * iface, CLSID * pClsid)
248 TRACE("(%p)\n", pClsid);
250 *pClsid = CLSID_AviSplitter;
255 /** IMediaFilter methods **/
257 static HRESULT WINAPI AVISplitter_Stop(IBaseFilter * iface)
260 ICOM_THIS(AVISplitter, iface);
264 EnterCriticalSection(&This->csFilter);
266 hr = PullPin_StopProcessing(This->pInputPin);
268 This->state = State_Stopped;
270 LeaveCriticalSection(&This->csFilter);
275 static HRESULT WINAPI AVISplitter_Pause(IBaseFilter * iface)
279 ICOM_THIS(AVISplitter, iface);
283 EnterCriticalSection(&This->csFilter);
285 bInit = (This->state == State_Stopped);
286 This->state = State_Paused;
288 LeaveCriticalSection(&This->csFilter);
294 hr = PullPin_Seek(This->pInputPin, This->CurrentChunkOffset, This->EndOfFile);
297 hr = PullPin_InitProcessing(This->pInputPin);
301 for (i = 1; i < This->cStreams + 1; i++)
303 OutputPin_DeliverNewSegment((OutputPin *)This->ppPins[i], 0, (LONGLONG)ceil(10000000.0 * (float)((AVISplitter_OutputPin *)This->ppPins[i])->dwLength / ((AVISplitter_OutputPin *)This->ppPins[i])->fSamplesPerSec), 1.0);
304 ((AVISplitter_OutputPin *)This->ppPins[i])->mediaSeeking.llDuration = (LONGLONG)ceil(10000000.0 * (float)((AVISplitter_OutputPin *)This->ppPins[i])->dwLength / ((AVISplitter_OutputPin *)This->ppPins[i])->fSamplesPerSec);
305 ((AVISplitter_OutputPin *)This->ppPins[i])->mediaSeeking.llStop = (LONGLONG)ceil(10000000.0 * (float)((AVISplitter_OutputPin *)This->ppPins[i])->dwLength / ((AVISplitter_OutputPin *)This->ppPins[i])->fSamplesPerSec);
306 OutputPin_CommitAllocator((OutputPin *)This->ppPins[i]);
309 /* FIXME: this is a little hacky: we have to deliver (at least?) one sample
310 * to each renderer before they will complete their transitions. We should probably
311 * seek through the stream for the first of each, rather than do it this way which is
312 * probably a bit prone to deadlocking */
313 hr = PullPin_StartProcessing(This->pInputPin);
316 /* FIXME: else pause thread */
321 static HRESULT WINAPI AVISplitter_Run(IBaseFilter * iface, REFERENCE_TIME tStart)
324 ICOM_THIS(AVISplitter, iface);
326 TRACE("(%s)\n", wine_dbgstr_longlong(tStart));
328 EnterCriticalSection(&This->csFilter);
330 This->rtStreamStart = tStart;
332 This->state = State_Running;
334 LeaveCriticalSection(&This->csFilter);
339 static HRESULT WINAPI AVISplitter_GetState(IBaseFilter * iface, DWORD dwMilliSecsTimeout, FILTER_STATE *pState)
341 ICOM_THIS(AVISplitter, iface);
343 TRACE("(%ld, %p)\n", dwMilliSecsTimeout, pState);
345 EnterCriticalSection(&This->csFilter);
347 *pState = This->state;
349 LeaveCriticalSection(&This->csFilter);
351 /* FIXME: this is a little bit unsafe, but I don't see that we can do this
352 * while in the critical section. Maybe we could copy the pointer and addref in the
353 * critical section and then release after this.
355 if (This->pInputPin && (PullPin_WaitForStateChange(This->pInputPin, dwMilliSecsTimeout) == S_FALSE))
356 return VFW_S_STATE_INTERMEDIATE;
361 static HRESULT WINAPI AVISplitter_SetSyncSource(IBaseFilter * iface, IReferenceClock *pClock)
363 ICOM_THIS(AVISplitter, iface);
365 TRACE("(%p)\n", pClock);
367 EnterCriticalSection(&This->csFilter);
370 IReferenceClock_Release(This->pClock);
371 This->pClock = pClock;
373 IReferenceClock_AddRef(This->pClock);
375 LeaveCriticalSection(&This->csFilter);
380 static HRESULT WINAPI AVISplitter_GetSyncSource(IBaseFilter * iface, IReferenceClock **ppClock)
382 ICOM_THIS(AVISplitter, iface);
384 TRACE("(%p)\n", ppClock);
386 EnterCriticalSection(&This->csFilter);
388 *ppClock = This->pClock;
389 IReferenceClock_AddRef(This->pClock);
391 LeaveCriticalSection(&This->csFilter);
396 /** IBaseFilter implementation **/
398 static HRESULT WINAPI AVISplitter_EnumPins(IBaseFilter * iface, IEnumPins **ppEnum)
401 ICOM_THIS(AVISplitter, iface);
403 TRACE("(%p)\n", ppEnum);
405 epd.cPins = This->cStreams + 1; /* +1 for input pin */
406 epd.ppPins = This->ppPins;
407 return IEnumPinsImpl_Construct(&epd, ppEnum);
410 static HRESULT WINAPI AVISplitter_FindPin(IBaseFilter * iface, LPCWSTR Id, IPin **ppPin)
412 FIXME("AVISplitter::FindPin(...)\n");
414 /* FIXME: critical section */
419 static HRESULT WINAPI AVISplitter_QueryFilterInfo(IBaseFilter * iface, FILTER_INFO *pInfo)
421 ICOM_THIS(AVISplitter, iface);
423 TRACE("(%p)\n", pInfo);
425 strcpyW(pInfo->achName, This->filterInfo.achName);
426 pInfo->pGraph = This->filterInfo.pGraph;
429 IFilterGraph_AddRef(pInfo->pGraph);
434 static HRESULT WINAPI AVISplitter_JoinFilterGraph(IBaseFilter * iface, IFilterGraph *pGraph, LPCWSTR pName)
437 ICOM_THIS(AVISplitter, iface);
439 TRACE("(%p, %s)\n", pGraph, debugstr_w(pName));
441 EnterCriticalSection(&This->csFilter);
444 strcpyW(This->filterInfo.achName, pName);
446 *This->filterInfo.achName = '\0';
447 This->filterInfo.pGraph = pGraph; /* NOTE: do NOT increase ref. count */
449 LeaveCriticalSection(&This->csFilter);
454 static HRESULT WINAPI AVISplitter_QueryVendorInfo(IBaseFilter * iface, LPWSTR *pVendorInfo)
456 TRACE("(%p)\n", pVendorInfo);
460 static const IBaseFilterVtbl AVISplitter_Vtbl =
462 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
463 AVISplitter_QueryInterface,
466 AVISplitter_GetClassID,
470 AVISplitter_GetState,
471 AVISplitter_SetSyncSource,
472 AVISplitter_GetSyncSource,
473 AVISplitter_EnumPins,
475 AVISplitter_QueryFilterInfo,
476 AVISplitter_JoinFilterGraph,
477 AVISplitter_QueryVendorInfo
480 static HRESULT AVISplitter_NextChunk(LONGLONG * pllCurrentChunkOffset, RIFFCHUNK * pCurrentChunk, const REFERENCE_TIME * tStart, const REFERENCE_TIME * tStop, const BYTE * pbSrcStream)
482 *pllCurrentChunkOffset += MEDIATIME_FROM_BYTES(sizeof(RIFFCHUNK) + RIFFROUND(pCurrentChunk->cb));
484 if (*pllCurrentChunkOffset > *tStop)
485 return S_FALSE; /* no more data - we couldn't even get the next chunk header! */
486 else if (*pllCurrentChunkOffset + MEDIATIME_FROM_BYTES(sizeof(RIFFCHUNK)) >= *tStop)
488 memcpy(pCurrentChunk, pbSrcStream + (DWORD)BYTES_FROM_MEDIATIME(*pllCurrentChunkOffset - *tStart), (DWORD)BYTES_FROM_MEDIATIME(*tStop - *pllCurrentChunkOffset));
489 return S_FALSE; /* no more data */
492 memcpy(pCurrentChunk, pbSrcStream + (DWORD)BYTES_FROM_MEDIATIME(*pllCurrentChunkOffset - *tStart), sizeof(RIFFCHUNK));
497 static HRESULT AVISplitter_Sample(LPVOID iface, IMediaSample * pSample)
499 ICOM_THIS(AVISplitter, iface);
500 LPBYTE pbSrcStream = NULL;
501 long cbSrcStream = 0;
502 REFERENCE_TIME tStart, tStop;
504 BOOL bMoreData = TRUE;
506 hr = IMediaSample_GetPointer(pSample, &pbSrcStream);
508 hr = IMediaSample_GetTime(pSample, &tStart, &tStop);
510 cbSrcStream = IMediaSample_GetActualDataLength(pSample);
512 /* trace removed for performance reasons */
513 /* TRACE("(%p)\n", pSample); */
515 assert(BYTES_FROM_MEDIATIME(tStop - tStart) == cbSrcStream);
517 if (This->CurrentChunkOffset <= tStart && This->CurrentChunkOffset + MEDIATIME_FROM_BYTES(sizeof(RIFFCHUNK)) > tStart)
519 DWORD offset = (DWORD)BYTES_FROM_MEDIATIME(tStart - This->CurrentChunkOffset);
520 assert(offset <= sizeof(RIFFCHUNK));
521 memcpy((BYTE *)&This->CurrentChunk + offset, pbSrcStream, sizeof(RIFFCHUNK) - offset);
523 else if (This->CurrentChunkOffset > tStart)
525 DWORD offset = (DWORD)BYTES_FROM_MEDIATIME(This->CurrentChunkOffset - tStart);
526 if (offset >= (DWORD)cbSrcStream)
528 FIXME("large offset\n");
532 memcpy(&This->CurrentChunk, pbSrcStream + offset, sizeof(RIFFCHUNK));
535 assert(This->CurrentChunkOffset + MEDIATIME_FROM_BYTES(sizeof(RIFFCHUNK)) < tStop);
541 long chunk_remaining_bytes = 0;
544 AVISplitter_OutputPin * pOutputPin;
545 BOOL bSyncPoint = TRUE;
547 if (This->CurrentChunkOffset >= tStart)
548 offset_src = (long)BYTES_FROM_MEDIATIME(This->CurrentChunkOffset - tStart) + sizeof(RIFFCHUNK);
552 switch (This->CurrentChunk.fcc)
555 /* silently ignore */
556 if (S_FALSE == AVISplitter_NextChunk(&This->CurrentChunkOffset, &This->CurrentChunk, &tStart, &tStop, pbSrcStream))
560 switch (TWOCCFromFOURCC(This->CurrentChunk.fcc))
562 case cktypeDIBcompressed:
566 /* FIXME: check that pin is of type video */
568 case cktypeWAVEbytes:
569 /* FIXME: check that pin is of type audio */
571 case cktypePALchange:
572 FIXME("handle palette change\n");
575 FIXME("Skipping unknown chunk type: %s at file offset 0x%lx\n", debugstr_an((LPSTR)&This->CurrentChunk.fcc, 4), (DWORD)BYTES_FROM_MEDIATIME(This->CurrentChunkOffset));
576 if (S_FALSE == AVISplitter_NextChunk(&This->CurrentChunkOffset, &This->CurrentChunk, &tStart, &tStop, pbSrcStream))
582 streamId = StreamFromFOURCC(This->CurrentChunk.fcc);
584 if (streamId > This->cStreams)
586 ERR("Corrupted AVI file (contains stream id %d, but supposed to only have %ld streams)\n", streamId, This->cStreams);
590 pOutputPin = (AVISplitter_OutputPin *)This->ppPins[streamId + 1];
592 if (!This->pCurrentSample)
594 /* cache media sample until it is ready to be despatched
595 * (i.e. we reach the end of the chunk) */
596 hr = OutputPin_GetDeliveryBuffer(&pOutputPin->pin, &This->pCurrentSample, NULL, NULL, 0);
600 hr = IMediaSample_SetActualDataLength(This->pCurrentSample, 0);
605 TRACE("Skipping sending sample for stream %02d due to error (%lx)\n", streamId, hr);
606 This->pCurrentSample = NULL;
607 if (S_FALSE == AVISplitter_NextChunk(&This->CurrentChunkOffset, &This->CurrentChunk, &tStart, &tStop, pbSrcStream))
613 hr = IMediaSample_GetPointer(This->pCurrentSample, &pbDstStream);
617 cbDstStream = IMediaSample_GetSize(This->pCurrentSample);
619 chunk_remaining_bytes = (long)BYTES_FROM_MEDIATIME(This->CurrentChunkOffset + MEDIATIME_FROM_BYTES(This->CurrentChunk.cb + sizeof(RIFFCHUNK)) - tStart) - offset_src;
621 assert(chunk_remaining_bytes >= 0);
622 assert(chunk_remaining_bytes <= cbDstStream - IMediaSample_GetActualDataLength(This->pCurrentSample));
624 /* trace removed for performance reasons */
625 /* TRACE("chunk_remaining_bytes: 0x%lx, cbSrcStream: 0x%lx, offset_src: 0x%lx\n", chunk_remaining_bytes, cbSrcStream, offset_src); */
628 if (chunk_remaining_bytes <= cbSrcStream - offset_src)
632 memcpy(pbDstStream + IMediaSample_GetActualDataLength(This->pCurrentSample), pbSrcStream + offset_src, chunk_remaining_bytes);
633 hr = IMediaSample_SetActualDataLength(This->pCurrentSample, chunk_remaining_bytes + IMediaSample_GetActualDataLength(This->pCurrentSample));
639 REFERENCE_TIME tAviStart, tAviStop;
642 if (pOutputPin->dwSamplesProcessed == 0)
643 IMediaSample_SetDiscontinuity(This->pCurrentSample, TRUE);
645 IMediaSample_SetSyncPoint(This->pCurrentSample, bSyncPoint);
647 pOutputPin->dwSamplesProcessed++;
649 if (pOutputPin->dwSampleSize)
650 tAviStart = (LONGLONG)ceil(10000000.0 * (float)(pOutputPin->dwSamplesProcessed - 1) * (float)IMediaSample_GetActualDataLength(This->pCurrentSample) / ((float)pOutputPin->dwSampleSize * pOutputPin->fSamplesPerSec));
652 tAviStart = (LONGLONG)ceil(10000000.0 * (float)(pOutputPin->dwSamplesProcessed - 1) / (float)pOutputPin->fSamplesPerSec);
653 if (pOutputPin->dwSampleSize)
654 tAviStop = (LONGLONG)ceil(10000000.0 * (float)pOutputPin->dwSamplesProcessed * (float)IMediaSample_GetActualDataLength(This->pCurrentSample) / ((float)pOutputPin->dwSampleSize * pOutputPin->fSamplesPerSec));
656 tAviStop = (LONGLONG)ceil(10000000.0 * (float)pOutputPin->dwSamplesProcessed / (float)pOutputPin->fSamplesPerSec);
658 IMediaSample_SetTime(This->pCurrentSample, &tAviStart, &tAviStop);
661 hr = OutputPin_SendSample(&pOutputPin->pin, This->pCurrentSample);
662 if (hr != S_OK && hr != VFW_E_NOT_CONNECTED)
663 ERR("Error sending sample (%lx)\n", hr);
666 if (This->pCurrentSample)
667 IMediaSample_Release(This->pCurrentSample);
669 This->pCurrentSample = NULL;
671 if (S_FALSE == AVISplitter_NextChunk(&This->CurrentChunkOffset, &This->CurrentChunk, &tStart, &tStop, pbSrcStream))
678 memcpy(pbDstStream + IMediaSample_GetActualDataLength(This->pCurrentSample), pbSrcStream + offset_src, cbSrcStream - offset_src);
679 IMediaSample_SetActualDataLength(This->pCurrentSample, cbSrcStream - offset_src + IMediaSample_GetActualDataLength(This->pCurrentSample));
687 static HRESULT AVISplitter_QueryAccept(LPVOID iface, const AM_MEDIA_TYPE * pmt)
689 if (IsEqualIID(&pmt->majortype, &MEDIATYPE_Stream) && IsEqualIID(&pmt->subtype, &MEDIASUBTYPE_Avi))
694 static HRESULT AVISplitter_ProcessStreamList(AVISplitter * This, const BYTE * pData, DWORD cb)
701 float fSamplesPerSec = 0.0f;
702 DWORD dwSampleSize = 0;
704 ALLOCATOR_PROPERTIES props;
705 static const WCHAR wszStreamTemplate[] = {'S','t','r','e','a','m',' ','%','0','2','d',0};
709 props.cbBuffer = 0x20000;
712 ZeroMemory(&amt, sizeof(amt));
713 piOutput.dir = PINDIR_OUTPUT;
714 piOutput.pFilter = (IBaseFilter *)This;
715 wsprintfW(piOutput.achName, wszStreamTemplate, This->cStreams);
717 for (pChunk = (RIFFCHUNK *)pData; ((BYTE *)pChunk >= pData) && ((BYTE *)pChunk + sizeof(RIFFCHUNK) < pData + cb) && (pChunk->cb > 0); pChunk = (RIFFCHUNK *)((BYTE*)pChunk + sizeof(RIFFCHUNK) + pChunk->cb))
721 case ckidSTREAMHEADER:
723 const AVISTREAMHEADER * pStrHdr = (const AVISTREAMHEADER *)pChunk;
724 TRACE("processing stream header\n");
726 fSamplesPerSec = (float)pStrHdr->dwRate / (float)pStrHdr->dwScale;
728 switch (pStrHdr->fccType)
730 case streamtypeVIDEO:
731 memcpy(&amt.formattype, &FORMAT_VideoInfo, sizeof(GUID));
735 case streamtypeAUDIO:
736 memcpy(&amt.formattype, &FORMAT_WaveFormatEx, sizeof(GUID));
739 memcpy(&amt.formattype, &FORMAT_None, sizeof(GUID));
741 memcpy(&amt.majortype, &MEDIATYPE_Video, sizeof(GUID));
742 amt.majortype.Data1 = pStrHdr->fccType;
743 memcpy(&amt.subtype, &MEDIATYPE_Video, sizeof(GUID));
744 amt.subtype.Data1 = pStrHdr->fccHandler;
745 TRACE("Subtype FCC: %.04s\n", (LPSTR)&pStrHdr->fccHandler);
746 amt.lSampleSize = pStrHdr->dwSampleSize;
747 amt.bFixedSizeSamples = (amt.lSampleSize != 0);
749 /* FIXME: Is this right? */
750 if (!amt.lSampleSize)
756 amt.bTemporalCompression = IsEqualGUID(&amt.majortype, &MEDIATYPE_Video); /* FIXME? */
757 dwSampleSize = pStrHdr->dwSampleSize;
758 dwLength = pStrHdr->dwLength;
760 dwLength = This->AviHeader.dwTotalFrames;
762 if (pStrHdr->dwSuggestedBufferSize)
763 props.cbBuffer = pStrHdr->dwSuggestedBufferSize;
767 case ckidSTREAMFORMAT:
768 TRACE("processing stream format data\n");
769 if (IsEqualIID(&amt.formattype, &FORMAT_VideoInfo))
771 VIDEOINFOHEADER * pvi;
772 /* biCompression member appears to override the value in the stream header.
773 * i.e. the stream header can say something completely contradictory to what
774 * is in the BITMAPINFOHEADER! */
775 if (pChunk->cb < sizeof(BITMAPINFOHEADER))
777 ERR("Not enough bytes for BITMAPINFOHEADER\n");
780 amt.cbFormat = sizeof(VIDEOINFOHEADER) - sizeof(BITMAPINFOHEADER) + pChunk->cb;
781 amt.pbFormat = CoTaskMemAlloc(amt.cbFormat);
782 ZeroMemory(amt.pbFormat, amt.cbFormat);
783 pvi = (VIDEOINFOHEADER *)amt.pbFormat;
784 pvi->AvgTimePerFrame = (LONGLONG)(10000000.0 / fSamplesPerSec);
785 CopyMemory(&pvi->bmiHeader, (const BYTE *)(pChunk + 1), pChunk->cb);
786 if (pvi->bmiHeader.biCompression)
787 amt.subtype.Data1 = pvi->bmiHeader.biCompression;
791 amt.cbFormat = pChunk->cb;
792 amt.pbFormat = CoTaskMemAlloc(amt.cbFormat);
793 CopyMemory(amt.pbFormat, (const BYTE *)(pChunk + 1), amt.cbFormat);
797 TRACE("processing stream name\n");
798 /* FIXME: this doesn't exactly match native version (we omit the "##)" prefix), but hey... */
799 MultiByteToWideChar(CP_ACP, 0, (LPCSTR)(pChunk + 1), pChunk->cb, piOutput.achName, sizeof(piOutput.achName) / sizeof(piOutput.achName[0]));
801 case ckidSTREAMHANDLERDATA:
802 FIXME("process stream handler data\n");
805 TRACE("JUNK chunk ignored\n");
808 FIXME("unknown chunk type \"%.04s\" ignored\n", (LPSTR)&pChunk->fcc);
812 if (IsEqualGUID(&amt.formattype, &FORMAT_WaveFormatEx))
814 memcpy(&amt.subtype, &MEDIATYPE_Video, sizeof(GUID));
815 amt.subtype.Data1 = ((WAVEFORMATEX *)amt.pbFormat)->wFormatTag;
818 dump_AM_MEDIA_TYPE(&amt);
819 FIXME("fSamplesPerSec = %f\n", (double)fSamplesPerSec);
820 FIXME("dwSampleSize = %lx\n", dwSampleSize);
821 FIXME("dwLength = %lx\n", dwLength);
823 ppOldPins = This->ppPins;
825 This->ppPins = HeapAlloc(GetProcessHeap(), 0, (This->cStreams + 2) * sizeof(IPin *));
826 memcpy(This->ppPins, ppOldPins, (This->cStreams + 1) * sizeof(IPin *));
828 hr = AVISplitter_OutputPin_Construct(&piOutput, &props, NULL, AVISplitter_OutputPin_QueryAccept, &amt, fSamplesPerSec, &This->csFilter, This->ppPins + This->cStreams + 1);
832 ((AVISplitter_OutputPin *)(This->ppPins[This->cStreams + 1]))->dwSampleSize = dwSampleSize;
833 ((AVISplitter_OutputPin *)(This->ppPins[This->cStreams + 1]))->dwLength = dwLength;
834 ((AVISplitter_OutputPin *)(This->ppPins[This->cStreams + 1]))->pin.pin.pUserData = (LPVOID)This->ppPins[This->cStreams + 1];
836 HeapFree(GetProcessHeap(), 0, ppOldPins);
840 HeapFree(GetProcessHeap(), 0, This->ppPins);
841 This->ppPins = ppOldPins;
842 ERR("Failed with error %lx\n", hr);
848 static HRESULT AVISplitter_RemoveOutputPins(AVISplitter * This)
850 /* NOTE: should be in critical section when calling this function */
853 IPin ** ppOldPins = This->ppPins;
855 /* reduce the pin array down to 1 (just our input pin) */
856 This->ppPins = HeapAlloc(GetProcessHeap(), 0, sizeof(IPin *) * 1);
857 memcpy(This->ppPins, ppOldPins, sizeof(IPin *) * 1);
859 for (i = 0; i < This->cStreams; i++)
861 OutputPin_DeliverDisconnect((OutputPin *)ppOldPins[i + 1]);
862 IPin_Release(ppOldPins[i + 1]);
866 HeapFree(GetProcessHeap(), 0, ppOldPins);
871 /* FIXME: fix leaks on failure here */
872 static HRESULT AVISplitter_InputPin_PreConnect(IPin * iface, IPin * pConnectPin)
874 ICOM_THIS(PullPin, iface);
877 LONGLONG pos = 0; /* in bytes */
879 RIFFCHUNK * pCurrentChunk;
880 AVISplitter * pAviSplit = (AVISplitter *)This->pin.pinInfo.pFilter;
882 hr = IAsyncReader_SyncRead(This->pReader, pos, sizeof(list), (BYTE *)&list);
885 if (list.fcc != ckidRIFF)
887 ERR("Input stream not a RIFF file\n");
890 if (list.cb > 1 * 1024 * 1024 * 1024) /* cannot be more than 1Gb in size */
892 ERR("Input stream violates RIFF spec\n");
895 if (list.fccListType != ckidAVI)
897 ERR("Input stream not an AVI RIFF file\n");
901 hr = IAsyncReader_SyncRead(This->pReader, pos, sizeof(list), (BYTE *)&list);
902 if (list.fcc != ckidLIST)
904 ERR("Expected LIST chunk, but got %.04s\n", (LPSTR)&list.fcc);
907 if (list.fccListType != ckidHEADERLIST)
909 ERR("Header list expected. Got: %.04s\n", (LPSTR)&list.fccListType);
913 pBuffer = HeapAlloc(GetProcessHeap(), 0, list.cb - sizeof(RIFFLIST) + sizeof(RIFFCHUNK));
914 hr = IAsyncReader_SyncRead(This->pReader, pos + sizeof(list), list.cb - sizeof(RIFFLIST) + sizeof(RIFFCHUNK), pBuffer);
916 pAviSplit->AviHeader.cb = 0;
918 for (pCurrentChunk = (RIFFCHUNK *)pBuffer; (BYTE *)pCurrentChunk + sizeof(*pCurrentChunk) < pBuffer + list.cb; pCurrentChunk = (RIFFCHUNK *)(((BYTE *)pCurrentChunk) + sizeof(*pCurrentChunk) + pCurrentChunk->cb))
922 switch (pCurrentChunk->fcc)
924 case ckidMAINAVIHEADER:
925 /* AVIMAINHEADER includes the structure that is pCurrentChunk at the moment */
926 memcpy(&pAviSplit->AviHeader, pCurrentChunk, sizeof(pAviSplit->AviHeader));
929 pList = (RIFFLIST *)pCurrentChunk;
930 switch (pList->fccListType)
933 hr = AVISplitter_ProcessStreamList(pAviSplit, (BYTE *)pCurrentChunk + sizeof(RIFFLIST), pCurrentChunk->cb + sizeof(RIFFCHUNK) - sizeof(RIFFLIST));
936 FIXME("process ODML header\n");
944 FIXME("unrecognised header list type: %.04s\n", (LPSTR)&pCurrentChunk->fcc);
947 HeapFree(GetProcessHeap(), 0, pBuffer);
949 if (pAviSplit->AviHeader.cb != sizeof(pAviSplit->AviHeader) - sizeof(RIFFCHUNK))
951 ERR("Avi Header wrong size!\n");
955 pos += sizeof(RIFFCHUNK) + list.cb;
956 hr = IAsyncReader_SyncRead(This->pReader, pos, sizeof(list), (BYTE *)&list);
958 if (list.fcc == ckidJUNK)
960 pos += sizeof(RIFFCHUNK) + list.cb;
961 hr = IAsyncReader_SyncRead(This->pReader, pos, sizeof(list), (BYTE *)&list);
964 if (list.fcc != ckidLIST)
966 ERR("Expected LIST, but got %.04s\n", (LPSTR)&list.fcc);
969 if (list.fccListType != ckidAVIMOVIE)
971 ERR("Expected AVI movie list, but got %.04s\n", (LPSTR)&list.fccListType);
977 pAviSplit->CurrentChunkOffset = MEDIATIME_FROM_BYTES(pos + sizeof(RIFFLIST));
978 pAviSplit->EndOfFile = MEDIATIME_FROM_BYTES(pos + list.cb + sizeof(RIFFLIST));
979 hr = IAsyncReader_SyncRead(This->pReader, BYTES_FROM_MEDIATIME(pAviSplit->CurrentChunkOffset), sizeof(pAviSplit->CurrentChunk), (BYTE *)&pAviSplit->CurrentChunk);
985 TRACE("AVI File ok\n");
990 static HRESULT AVISplitter_ChangeStart(LPVOID iface)
992 FIXME("(%p)\n", iface);
996 static HRESULT AVISplitter_ChangeStop(LPVOID iface)
998 FIXME("(%p)\n", iface);
1002 static HRESULT AVISplitter_ChangeRate(LPVOID iface)
1004 FIXME("(%p)\n", iface);
1009 static HRESULT WINAPI AVISplitter_Seeking_QueryInterface(IMediaSeeking * iface, REFIID riid, LPVOID * ppv)
1011 ICOM_THIS_From_IMediaSeeking(AVISplitter_OutputPin, iface);
1013 return IUnknown_QueryInterface((IUnknown *)This, riid, ppv);
1016 static ULONG WINAPI AVISplitter_Seeking_AddRef(IMediaSeeking * iface)
1018 ICOM_THIS_From_IMediaSeeking(AVISplitter_OutputPin, iface);
1020 return IUnknown_AddRef((IUnknown *)This);
1023 static ULONG WINAPI AVISplitter_Seeking_Release(IMediaSeeking * iface)
1025 ICOM_THIS_From_IMediaSeeking(AVISplitter_OutputPin, iface);
1027 return IUnknown_Release((IUnknown *)This);
1030 static const IMediaSeekingVtbl AVISplitter_Seeking_Vtbl =
1032 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
1033 AVISplitter_Seeking_QueryInterface,
1034 AVISplitter_Seeking_AddRef,
1035 AVISplitter_Seeking_Release,
1036 MediaSeekingImpl_GetCapabilities,
1037 MediaSeekingImpl_CheckCapabilities,
1038 MediaSeekingImpl_IsFormatSupported,
1039 MediaSeekingImpl_QueryPreferredFormat,
1040 MediaSeekingImpl_GetTimeFormat,
1041 MediaSeekingImpl_IsUsingTimeFormat,
1042 MediaSeekingImpl_SetTimeFormat,
1043 MediaSeekingImpl_GetDuration,
1044 MediaSeekingImpl_GetStopPosition,
1045 MediaSeekingImpl_GetCurrentPosition,
1046 MediaSeekingImpl_ConvertTimeFormat,
1047 MediaSeekingImpl_SetPositions,
1048 MediaSeekingImpl_GetPositions,
1049 MediaSeekingImpl_GetAvailable,
1050 MediaSeekingImpl_SetRate,
1051 MediaSeekingImpl_GetRate,
1052 MediaSeekingImpl_GetPreroll
1055 HRESULT WINAPI AVISplitter_OutputPin_QueryInterface(IPin * iface, REFIID riid, LPVOID * ppv)
1057 ICOM_THIS(AVISplitter_OutputPin, iface);
1059 TRACE("(%s, %p)\n", qzdebugstr_guid(riid), ppv);
1063 if (IsEqualIID(riid, &IID_IUnknown))
1064 *ppv = (LPVOID)iface;
1065 else if (IsEqualIID(riid, &IID_IPin))
1066 *ppv = (LPVOID)iface;
1067 else if (IsEqualIID(riid, &IID_IMediaSeeking))
1068 *ppv = (LPVOID)&This->mediaSeeking;
1072 IUnknown_AddRef((IUnknown *)(*ppv));
1076 FIXME("No interface for %s!\n", qzdebugstr_guid(riid));
1078 return E_NOINTERFACE;
1081 static ULONG WINAPI AVISplitter_OutputPin_Release(IPin * iface)
1083 ICOM_THIS(AVISplitter_OutputPin, iface);
1087 if (!InterlockedDecrement(&This->pin.pin.refCount))
1089 DeleteMediaType(This->pmt);
1090 CoTaskMemFree(This->pmt);
1091 DeleteMediaType(&This->pin.pin.mtCurrent);
1092 CoTaskMemFree(This);
1095 return This->pin.pin.refCount;
1098 static HRESULT WINAPI AVISplitter_OutputPin_EnumMediaTypes(IPin * iface, IEnumMediaTypes ** ppEnum)
1100 ENUMMEDIADETAILS emd;
1101 ICOM_THIS(AVISplitter_OutputPin, iface);
1103 TRACE("(%p)\n", ppEnum);
1105 /* override this method to allow enumeration of your types */
1106 emd.cMediaTypes = 1;
1107 emd.pMediaTypes = This->pmt;
1109 return IEnumMediaTypesImpl_Construct(&emd, ppEnum);
1112 static HRESULT AVISplitter_OutputPin_QueryAccept(LPVOID iface, const AM_MEDIA_TYPE * pmt)
1114 ICOM_THIS(AVISplitter_OutputPin, iface);
1117 dump_AM_MEDIA_TYPE(pmt);
1119 return (memcmp(This->pmt, pmt, sizeof(AM_MEDIA_TYPE)) == 0);
1122 static const IPinVtbl AVISplitter_OutputPin_Vtbl =
1124 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
1125 AVISplitter_OutputPin_QueryInterface,
1127 AVISplitter_OutputPin_Release,
1129 OutputPin_ReceiveConnection,
1130 OutputPin_Disconnect,
1131 IPinImpl_ConnectedTo,
1132 IPinImpl_ConnectionMediaType,
1133 IPinImpl_QueryPinInfo,
1134 IPinImpl_QueryDirection,
1136 IPinImpl_QueryAccept,
1137 AVISplitter_OutputPin_EnumMediaTypes,
1138 IPinImpl_QueryInternalConnections,
1139 OutputPin_EndOfStream,
1140 OutputPin_BeginFlush,
1142 OutputPin_NewSegment
1145 static HRESULT AVISplitter_InputPin_Construct(const PIN_INFO * pPinInfo, SAMPLEPROC pSampleProc, LPVOID pUserData, QUERYACCEPTPROC pQueryAccept, LPCRITICAL_SECTION pCritSec, IPin ** ppPin)
1151 if (pPinInfo->dir != PINDIR_INPUT)
1153 ERR("Pin direction(%x) != PINDIR_INPUT\n", pPinInfo->dir);
1154 return E_INVALIDARG;
1157 pPinImpl = CoTaskMemAlloc(sizeof(*pPinImpl));
1160 return E_OUTOFMEMORY;
1162 if (SUCCEEDED(PullPin_Init(pPinInfo, pSampleProc, pUserData, pQueryAccept, pCritSec, pPinImpl)))
1164 pPinImpl->pin.lpVtbl = &AVISplitter_InputPin_Vtbl;
1166 *ppPin = (IPin *)(&pPinImpl->pin.lpVtbl);
1172 static HRESULT WINAPI AVISplitter_InputPin_Disconnect(IPin * iface)
1175 ICOM_THIS(IPinImpl, iface);
1179 EnterCriticalSection(This->pCritSec);
1181 if (This->pConnectedTo)
1185 hr = IBaseFilter_GetState(This->pinInfo.pFilter, 0, &state);
1187 if (SUCCEEDED(hr) && (state == State_Stopped))
1189 IPin_Release(This->pConnectedTo);
1190 This->pConnectedTo = NULL;
1191 hr = AVISplitter_RemoveOutputPins((AVISplitter *)This->pinInfo.pFilter);
1194 hr = VFW_E_NOT_STOPPED;
1199 LeaveCriticalSection(This->pCritSec);
1204 static const IPinVtbl AVISplitter_InputPin_Vtbl =
1206 ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
1207 PullPin_QueryInterface,
1211 PullPin_ReceiveConnection,
1212 AVISplitter_InputPin_Disconnect,
1213 IPinImpl_ConnectedTo,
1214 IPinImpl_ConnectionMediaType,
1215 IPinImpl_QueryPinInfo,
1216 IPinImpl_QueryDirection,
1218 IPinImpl_QueryAccept,
1219 IPinImpl_EnumMediaTypes,
1220 IPinImpl_QueryInternalConnections,
1221 PullPin_EndOfStream,