2003-08-06 22:04:45 +00:00
|
|
|
/*
|
|
|
|
* Generic Implementation of IPin Interface
|
|
|
|
*
|
|
|
|
* Copyright 2003 Robert Shearman
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 12:49:52 +00:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2003-08-06 22:04:45 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "quartz_private.h"
|
|
|
|
#include "pin.h"
|
|
|
|
|
|
|
|
#include "wine/debug.h"
|
|
|
|
#include "wine/unicode.h"
|
|
|
|
#include "uuids.h"
|
|
|
|
#include "vfwmsgs.h"
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(quartz);
|
|
|
|
|
2005-06-06 19:50:35 +00:00
|
|
|
static const IPinVtbl InputPin_Vtbl;
|
|
|
|
static const IPinVtbl OutputPin_Vtbl;
|
|
|
|
static const IMemInputPinVtbl MemInputPin_Vtbl;
|
|
|
|
static const IPinVtbl PullPin_Vtbl;
|
2003-09-25 23:50:06 +00:00
|
|
|
|
2007-04-07 14:05:33 +00:00
|
|
|
#define ALIGNDOWN(value,boundary) ((value)/(boundary)*(boundary))
|
|
|
|
#define ALIGNUP(value,boundary) (ALIGNDOWN((value)+(boundary)-1, (boundary)))
|
2003-08-06 22:04:45 +00:00
|
|
|
|
2005-07-27 15:14:18 +00:00
|
|
|
static inline InputPin *impl_from_IMemInputPin( IMemInputPin *iface )
|
|
|
|
{
|
|
|
|
return (InputPin *)((char*)iface - FIELD_OFFSET(InputPin, lpVtblMemInput));
|
|
|
|
}
|
|
|
|
|
2003-08-06 22:04:45 +00:00
|
|
|
|
|
|
|
static void Copy_PinInfo(PIN_INFO * pDest, const PIN_INFO * pSrc)
|
|
|
|
{
|
|
|
|
/* Tempting to just do a memcpy, but the name field is
|
|
|
|
128 characters long! We will probably never exceed 10
|
|
|
|
most of the time, so we are better off copying
|
|
|
|
each field manually */
|
|
|
|
strcpyW(pDest->achName, pSrc->achName);
|
|
|
|
pDest->dir = pSrc->dir;
|
|
|
|
pDest->pFilter = pSrc->pFilter;
|
|
|
|
}
|
|
|
|
|
2004-08-19 02:33:00 +00:00
|
|
|
/* Function called as a helper to IPin_Connect */
|
2003-08-06 22:04:45 +00:00
|
|
|
/* specific AM_MEDIA_TYPE - it cannot be NULL */
|
|
|
|
/* NOTE: not part of standard interface */
|
|
|
|
static HRESULT OutputPin_ConnectSpecific(IPin * iface, IPin * pReceivePin, const AM_MEDIA_TYPE * pmt)
|
|
|
|
{
|
2004-09-08 01:50:37 +00:00
|
|
|
OutputPin *This = (OutputPin *)iface;
|
2003-09-25 23:50:06 +00:00
|
|
|
HRESULT hr;
|
|
|
|
IMemAllocator * pMemAlloc = NULL;
|
|
|
|
ALLOCATOR_PROPERTIES actual; /* FIXME: should we put the actual props back in to This? */
|
2003-08-06 22:04:45 +00:00
|
|
|
|
|
|
|
TRACE("(%p, %p)\n", pReceivePin, pmt);
|
|
|
|
dump_AM_MEDIA_TYPE(pmt);
|
|
|
|
|
2003-09-25 23:50:06 +00:00
|
|
|
/* FIXME: call queryacceptproc */
|
|
|
|
|
|
|
|
This->pin.pConnectedTo = pReceivePin;
|
|
|
|
IPin_AddRef(pReceivePin);
|
|
|
|
CopyMediaType(&This->pin.mtCurrent, pmt);
|
|
|
|
|
2003-08-06 22:04:45 +00:00
|
|
|
hr = IPin_ReceiveConnection(pReceivePin, iface, pmt);
|
|
|
|
|
2003-09-25 23:50:06 +00:00
|
|
|
/* get the IMemInputPin interface we will use to deliver samples to the
|
|
|
|
* connected pin */
|
2003-08-06 22:04:45 +00:00
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
2007-03-14 13:42:37 +00:00
|
|
|
This->pMemInputPin = NULL;
|
2003-09-25 23:50:06 +00:00
|
|
|
hr = IPin_QueryInterface(pReceivePin, &IID_IMemInputPin, (LPVOID)&This->pMemInputPin);
|
|
|
|
|
|
|
|
if (SUCCEEDED(hr))
|
2005-01-03 20:23:14 +00:00
|
|
|
{
|
2007-03-14 13:42:37 +00:00
|
|
|
hr = IMemInputPin_GetAllocator(This->pMemInputPin, &pMemAlloc);
|
2005-01-03 20:23:14 +00:00
|
|
|
|
2007-03-14 13:42:37 +00:00
|
|
|
if (hr == VFW_E_NO_ALLOCATOR)
|
2005-01-03 20:23:14 +00:00
|
|
|
{
|
2007-03-14 13:42:37 +00:00
|
|
|
/* Input pin provides no allocator, use standard memory allocator */
|
|
|
|
hr = CoCreateInstance(&CLSID_MemoryAllocator, NULL, CLSCTX_INPROC_SERVER, &IID_IMemAllocator, (LPVOID*)&pMemAlloc);
|
|
|
|
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
hr = IMemInputPin_NotifyAllocator(This->pMemInputPin, pMemAlloc, FALSE);
|
|
|
|
}
|
2005-01-03 20:23:14 +00:00
|
|
|
}
|
|
|
|
|
2007-03-14 13:42:37 +00:00
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
hr = IMemAllocator_SetProperties(pMemAlloc, &This->allocProps, &actual);
|
2003-09-25 23:50:06 +00:00
|
|
|
|
2007-03-14 13:42:37 +00:00
|
|
|
if (pMemAlloc)
|
|
|
|
IMemAllocator_Release(pMemAlloc);
|
|
|
|
}
|
2003-09-25 23:50:06 +00:00
|
|
|
|
|
|
|
/* break connection if we couldn't get the allocator */
|
|
|
|
if (FAILED(hr))
|
2007-03-14 13:42:37 +00:00
|
|
|
{
|
|
|
|
if (This->pMemInputPin)
|
|
|
|
IMemInputPin_Release(This->pMemInputPin);
|
|
|
|
This->pMemInputPin = NULL;
|
|
|
|
|
2003-09-25 23:50:06 +00:00
|
|
|
IPin_Disconnect(pReceivePin);
|
2007-03-14 13:42:37 +00:00
|
|
|
}
|
2003-08-06 22:04:45 +00:00
|
|
|
}
|
2003-09-25 23:50:06 +00:00
|
|
|
|
|
|
|
if (FAILED(hr))
|
|
|
|
{
|
|
|
|
IPin_Release(This->pin.pConnectedTo);
|
2003-08-06 22:04:45 +00:00
|
|
|
This->pin.pConnectedTo = NULL;
|
2005-06-05 19:18:34 +00:00
|
|
|
FreeMediaType(&This->pin.mtCurrent);
|
2003-09-25 23:50:06 +00:00
|
|
|
}
|
2003-08-06 22:04:45 +00:00
|
|
|
|
2006-10-12 18:57:23 +00:00
|
|
|
TRACE(" -- %x\n", hr);
|
2003-08-06 22:04:45 +00:00
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT InputPin_Construct(const PIN_INFO * pPinInfo, SAMPLEPROC pSampleProc, LPVOID pUserData, QUERYACCEPTPROC pQueryAccept, LPCRITICAL_SECTION pCritSec, IPin ** ppPin)
|
|
|
|
{
|
|
|
|
InputPin * pPinImpl;
|
|
|
|
|
|
|
|
*ppPin = NULL;
|
|
|
|
|
|
|
|
if (pPinInfo->dir != PINDIR_INPUT)
|
|
|
|
{
|
|
|
|
ERR("Pin direction(%x) != PINDIR_INPUT\n", pPinInfo->dir);
|
|
|
|
return E_INVALIDARG;
|
|
|
|
}
|
|
|
|
|
|
|
|
pPinImpl = CoTaskMemAlloc(sizeof(*pPinImpl));
|
|
|
|
|
|
|
|
if (!pPinImpl)
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
|
|
|
|
if (SUCCEEDED(InputPin_Init(pPinInfo, pSampleProc, pUserData, pQueryAccept, pCritSec, pPinImpl)))
|
|
|
|
{
|
|
|
|
pPinImpl->pin.lpVtbl = &InputPin_Vtbl;
|
|
|
|
pPinImpl->lpVtblMemInput = &MemInputPin_Vtbl;
|
|
|
|
|
|
|
|
*ppPin = (IPin *)(&pPinImpl->pin.lpVtbl);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Note that we don't init the vtables here (like C++ constructor) */
|
|
|
|
HRESULT InputPin_Init(const PIN_INFO * pPinInfo, SAMPLEPROC pSampleProc, LPVOID pUserData, QUERYACCEPTPROC pQueryAccept, LPCRITICAL_SECTION pCritSec, InputPin * pPinImpl)
|
|
|
|
{
|
2003-11-18 20:47:48 +00:00
|
|
|
TRACE("\n");
|
|
|
|
|
2003-08-06 22:04:45 +00:00
|
|
|
/* Common attributes */
|
|
|
|
pPinImpl->pin.refCount = 1;
|
|
|
|
pPinImpl->pin.pConnectedTo = NULL;
|
2003-09-25 23:50:06 +00:00
|
|
|
pPinImpl->pin.fnQueryAccept = pQueryAccept;
|
2003-08-06 22:04:45 +00:00
|
|
|
pPinImpl->pin.pUserData = pUserData;
|
|
|
|
pPinImpl->pin.pCritSec = pCritSec;
|
|
|
|
Copy_PinInfo(&pPinImpl->pin.pinInfo, pPinInfo);
|
2005-06-05 19:18:34 +00:00
|
|
|
ZeroMemory(&pPinImpl->pin.mtCurrent, sizeof(AM_MEDIA_TYPE));
|
2003-08-06 22:04:45 +00:00
|
|
|
|
|
|
|
/* Input pin attributes */
|
2003-09-25 23:50:06 +00:00
|
|
|
pPinImpl->fnSampleProc = pSampleProc;
|
2003-08-06 22:04:45 +00:00
|
|
|
pPinImpl->pAllocator = NULL;
|
|
|
|
pPinImpl->tStart = 0;
|
|
|
|
pPinImpl->tStop = 0;
|
|
|
|
pPinImpl->dRate = 0;
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2003-09-25 23:50:06 +00:00
|
|
|
HRESULT OutputPin_Init(const PIN_INFO * pPinInfo, ALLOCATOR_PROPERTIES * props, LPVOID pUserData, QUERYACCEPTPROC pQueryAccept, LPCRITICAL_SECTION pCritSec, OutputPin * pPinImpl)
|
2003-08-06 22:04:45 +00:00
|
|
|
{
|
2003-11-18 20:47:48 +00:00
|
|
|
TRACE("\n");
|
|
|
|
|
2003-08-06 22:04:45 +00:00
|
|
|
/* Common attributes */
|
|
|
|
pPinImpl->pin.lpVtbl = &OutputPin_Vtbl;
|
|
|
|
pPinImpl->pin.refCount = 1;
|
|
|
|
pPinImpl->pin.pConnectedTo = NULL;
|
2003-09-25 23:50:06 +00:00
|
|
|
pPinImpl->pin.fnQueryAccept = pQueryAccept;
|
2003-08-06 22:04:45 +00:00
|
|
|
pPinImpl->pin.pUserData = pUserData;
|
|
|
|
pPinImpl->pin.pCritSec = pCritSec;
|
|
|
|
Copy_PinInfo(&pPinImpl->pin.pinInfo, pPinInfo);
|
2005-06-05 19:18:34 +00:00
|
|
|
ZeroMemory(&pPinImpl->pin.mtCurrent, sizeof(AM_MEDIA_TYPE));
|
2003-08-06 22:04:45 +00:00
|
|
|
|
|
|
|
/* Output pin attributes */
|
|
|
|
pPinImpl->pMemInputPin = NULL;
|
|
|
|
pPinImpl->pConnectSpecific = OutputPin_ConnectSpecific;
|
2003-09-25 23:50:06 +00:00
|
|
|
if (props)
|
|
|
|
{
|
|
|
|
memcpy(&pPinImpl->allocProps, props, sizeof(pPinImpl->allocProps));
|
|
|
|
if (pPinImpl->allocProps.cbAlign == 0)
|
|
|
|
pPinImpl->allocProps.cbAlign = 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ZeroMemory(&pPinImpl->allocProps, sizeof(pPinImpl->allocProps));
|
|
|
|
|
2003-08-06 22:04:45 +00:00
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2003-09-25 23:50:06 +00:00
|
|
|
HRESULT OutputPin_Construct(const PIN_INFO * pPinInfo, ALLOCATOR_PROPERTIES *props, LPVOID pUserData, QUERYACCEPTPROC pQueryAccept, LPCRITICAL_SECTION pCritSec, IPin ** ppPin)
|
2003-08-06 22:04:45 +00:00
|
|
|
{
|
|
|
|
OutputPin * pPinImpl;
|
|
|
|
|
|
|
|
*ppPin = NULL;
|
|
|
|
|
|
|
|
if (pPinInfo->dir != PINDIR_OUTPUT)
|
|
|
|
{
|
|
|
|
ERR("Pin direction(%x) != PINDIR_OUTPUT\n", pPinInfo->dir);
|
|
|
|
return E_INVALIDARG;
|
|
|
|
}
|
|
|
|
|
|
|
|
pPinImpl = CoTaskMemAlloc(sizeof(*pPinImpl));
|
|
|
|
|
|
|
|
if (!pPinImpl)
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
|
2003-09-25 23:50:06 +00:00
|
|
|
if (SUCCEEDED(OutputPin_Init(pPinInfo, props, pUserData, pQueryAccept, pCritSec, pPinImpl)))
|
2003-08-06 22:04:45 +00:00
|
|
|
{
|
|
|
|
pPinImpl->pin.lpVtbl = &OutputPin_Vtbl;
|
|
|
|
|
|
|
|
*ppPin = (IPin *)(&pPinImpl->pin.lpVtbl);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*** Common pin functions ***/
|
|
|
|
|
|
|
|
ULONG WINAPI IPinImpl_AddRef(IPin * iface)
|
|
|
|
{
|
2004-09-08 01:50:37 +00:00
|
|
|
IPinImpl *This = (IPinImpl *)iface;
|
2005-01-06 19:36:47 +00:00
|
|
|
ULONG refCount = InterlockedIncrement(&This->refCount);
|
2003-08-06 22:04:45 +00:00
|
|
|
|
2006-10-12 18:57:23 +00:00
|
|
|
TRACE("(%p)->() AddRef from %d\n", iface, refCount - 1);
|
2003-08-06 22:04:45 +00:00
|
|
|
|
2005-01-06 19:36:47 +00:00
|
|
|
return refCount;
|
2003-08-06 22:04:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI IPinImpl_Disconnect(IPin * iface)
|
|
|
|
{
|
|
|
|
HRESULT hr;
|
2004-09-08 01:50:37 +00:00
|
|
|
IPinImpl *This = (IPinImpl *)iface;
|
2003-08-06 22:04:45 +00:00
|
|
|
|
|
|
|
TRACE("()\n");
|
|
|
|
|
|
|
|
EnterCriticalSection(This->pCritSec);
|
|
|
|
{
|
|
|
|
if (This->pConnectedTo)
|
|
|
|
{
|
|
|
|
IPin_Release(This->pConnectedTo);
|
|
|
|
This->pConnectedTo = NULL;
|
|
|
|
hr = S_OK;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
hr = S_FALSE;
|
|
|
|
}
|
|
|
|
LeaveCriticalSection(This->pCritSec);
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI IPinImpl_ConnectedTo(IPin * iface, IPin ** ppPin)
|
|
|
|
{
|
2004-08-16 21:07:22 +00:00
|
|
|
HRESULT hr;
|
2004-09-08 01:50:37 +00:00
|
|
|
IPinImpl *This = (IPinImpl *)iface;
|
2003-08-06 22:04:45 +00:00
|
|
|
|
|
|
|
/* TRACE("(%p)\n", ppPin);*/
|
|
|
|
|
2004-08-16 21:07:22 +00:00
|
|
|
EnterCriticalSection(This->pCritSec);
|
2003-08-06 22:04:45 +00:00
|
|
|
{
|
2004-08-16 21:07:22 +00:00
|
|
|
if (This->pConnectedTo)
|
|
|
|
{
|
|
|
|
*ppPin = This->pConnectedTo;
|
|
|
|
IPin_AddRef(*ppPin);
|
|
|
|
hr = S_OK;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
hr = VFW_E_NOT_CONNECTED;
|
2003-08-06 22:04:45 +00:00
|
|
|
}
|
2004-08-16 21:07:22 +00:00
|
|
|
LeaveCriticalSection(This->pCritSec);
|
|
|
|
|
|
|
|
return hr;
|
2003-08-06 22:04:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI IPinImpl_ConnectionMediaType(IPin * iface, AM_MEDIA_TYPE * pmt)
|
|
|
|
{
|
|
|
|
HRESULT hr;
|
2004-09-08 01:50:37 +00:00
|
|
|
IPinImpl *This = (IPinImpl *)iface;
|
2003-08-06 22:04:45 +00:00
|
|
|
|
2004-08-16 19:49:46 +00:00
|
|
|
TRACE("(%p/%p)->(%p)\n", This, iface, pmt);
|
2003-08-06 22:04:45 +00:00
|
|
|
|
|
|
|
EnterCriticalSection(This->pCritSec);
|
|
|
|
{
|
|
|
|
if (This->pConnectedTo)
|
|
|
|
{
|
|
|
|
CopyMediaType(pmt, &This->mtCurrent);
|
|
|
|
hr = S_OK;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ZeroMemory(pmt, sizeof(*pmt));
|
|
|
|
hr = VFW_E_NOT_CONNECTED;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
LeaveCriticalSection(This->pCritSec);
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI IPinImpl_QueryPinInfo(IPin * iface, PIN_INFO * pInfo)
|
|
|
|
{
|
2004-09-08 01:50:37 +00:00
|
|
|
IPinImpl *This = (IPinImpl *)iface;
|
2003-08-06 22:04:45 +00:00
|
|
|
|
2004-08-16 19:49:46 +00:00
|
|
|
TRACE("(%p/%p)->(%p)\n", This, iface, pInfo);
|
2003-08-06 22:04:45 +00:00
|
|
|
|
|
|
|
Copy_PinInfo(pInfo, &This->pinInfo);
|
2005-05-06 14:34:44 +00:00
|
|
|
IBaseFilter_AddRef(pInfo->pFilter);
|
2003-08-06 22:04:45 +00:00
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI IPinImpl_QueryDirection(IPin * iface, PIN_DIRECTION * pPinDir)
|
|
|
|
{
|
2004-09-08 01:50:37 +00:00
|
|
|
IPinImpl *This = (IPinImpl *)iface;
|
2003-08-06 22:04:45 +00:00
|
|
|
|
2004-08-16 19:49:46 +00:00
|
|
|
TRACE("(%p/%p)->(%p)\n", This, iface, pPinDir);
|
2003-08-06 22:04:45 +00:00
|
|
|
|
|
|
|
*pPinDir = This->pinInfo.dir;
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI IPinImpl_QueryId(IPin * iface, LPWSTR * Id)
|
|
|
|
{
|
2004-09-08 01:50:37 +00:00
|
|
|
IPinImpl *This = (IPinImpl *)iface;
|
2003-08-06 22:04:45 +00:00
|
|
|
|
2004-08-16 19:49:46 +00:00
|
|
|
TRACE("(%p/%p)->(%p)\n", This, iface, Id);
|
2003-08-06 22:04:45 +00:00
|
|
|
|
|
|
|
*Id = CoTaskMemAlloc((strlenW(This->pinInfo.achName) + 1) * sizeof(WCHAR));
|
2007-02-02 17:47:54 +00:00
|
|
|
if (!*Id)
|
2003-08-06 22:04:45 +00:00
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
|
|
|
|
strcpyW(*Id, This->pinInfo.achName);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI IPinImpl_QueryAccept(IPin * iface, const AM_MEDIA_TYPE * pmt)
|
|
|
|
{
|
2004-09-08 01:50:37 +00:00
|
|
|
IPinImpl *This = (IPinImpl *)iface;
|
2003-08-06 22:04:45 +00:00
|
|
|
|
2004-08-16 19:49:46 +00:00
|
|
|
TRACE("(%p/%p)->(%p)\n", This, iface, pmt);
|
2003-08-06 22:04:45 +00:00
|
|
|
|
2003-09-25 23:50:06 +00:00
|
|
|
return (This->fnQueryAccept(This->pUserData, pmt) == S_OK ? S_OK : S_FALSE);
|
2003-08-06 22:04:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI IPinImpl_EnumMediaTypes(IPin * iface, IEnumMediaTypes ** ppEnum)
|
|
|
|
{
|
2004-09-08 01:50:37 +00:00
|
|
|
IPinImpl *This = (IPinImpl *)iface;
|
2003-08-06 22:04:45 +00:00
|
|
|
ENUMMEDIADETAILS emd;
|
|
|
|
|
2004-08-16 19:49:46 +00:00
|
|
|
TRACE("(%p/%p)->(%p)\n", This, iface, ppEnum);
|
2003-08-06 22:04:45 +00:00
|
|
|
|
|
|
|
/* override this method to allow enumeration of your types */
|
|
|
|
emd.cMediaTypes = 0;
|
|
|
|
emd.pMediaTypes = NULL;
|
|
|
|
|
|
|
|
return IEnumMediaTypesImpl_Construct(&emd, ppEnum);
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI IPinImpl_QueryInternalConnections(IPin * iface, IPin ** apPin, ULONG * cPin)
|
|
|
|
{
|
2004-09-08 01:50:37 +00:00
|
|
|
IPinImpl *This = (IPinImpl *)iface;
|
2004-08-16 19:49:46 +00:00
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p, %p)\n", This, iface, apPin, cPin);
|
2003-08-06 22:04:45 +00:00
|
|
|
|
|
|
|
return E_NOTIMPL; /* to tell caller that all input pins connected to all output pins */
|
|
|
|
}
|
|
|
|
|
|
|
|
/*** IPin implementation for an input pin ***/
|
|
|
|
|
|
|
|
HRESULT WINAPI InputPin_QueryInterface(IPin * iface, REFIID riid, LPVOID * ppv)
|
|
|
|
{
|
2004-09-08 01:50:37 +00:00
|
|
|
InputPin *This = (InputPin *)iface;
|
2003-08-06 22:04:45 +00:00
|
|
|
|
2004-08-16 19:49:46 +00:00
|
|
|
TRACE("(%p)->(%s, %p)\n", iface, qzdebugstr_guid(riid), ppv);
|
2003-08-06 22:04:45 +00:00
|
|
|
|
|
|
|
*ppv = NULL;
|
|
|
|
|
|
|
|
if (IsEqualIID(riid, &IID_IUnknown))
|
|
|
|
*ppv = (LPVOID)iface;
|
|
|
|
else if (IsEqualIID(riid, &IID_IPin))
|
|
|
|
*ppv = (LPVOID)iface;
|
|
|
|
else if (IsEqualIID(riid, &IID_IMemInputPin))
|
|
|
|
*ppv = (LPVOID)&This->lpVtblMemInput;
|
|
|
|
|
|
|
|
if (*ppv)
|
|
|
|
{
|
|
|
|
IUnknown_AddRef((IUnknown *)(*ppv));
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
FIXME("No interface for %s!\n", qzdebugstr_guid(riid));
|
|
|
|
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
ULONG WINAPI InputPin_Release(IPin * iface)
|
|
|
|
{
|
2004-09-08 01:50:37 +00:00
|
|
|
InputPin *This = (InputPin *)iface;
|
2005-01-06 19:36:47 +00:00
|
|
|
ULONG refCount = InterlockedDecrement(&This->pin.refCount);
|
2003-08-06 22:04:45 +00:00
|
|
|
|
2006-10-12 18:57:23 +00:00
|
|
|
TRACE("(%p)->() Release from %d\n", iface, refCount + 1);
|
2003-08-06 22:04:45 +00:00
|
|
|
|
2005-01-06 19:36:47 +00:00
|
|
|
if (!refCount)
|
2003-08-06 22:04:45 +00:00
|
|
|
{
|
2005-06-05 19:18:34 +00:00
|
|
|
FreeMediaType(&This->pin.mtCurrent);
|
2003-08-06 22:04:45 +00:00
|
|
|
if (This->pAllocator)
|
|
|
|
IMemAllocator_Release(This->pAllocator);
|
|
|
|
CoTaskMemFree(This);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else
|
2005-01-06 19:36:47 +00:00
|
|
|
return refCount;
|
2003-08-06 22:04:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI InputPin_Connect(IPin * iface, IPin * pConnector, const AM_MEDIA_TYPE * pmt)
|
|
|
|
{
|
|
|
|
ERR("Outgoing connection on an input pin! (%p, %p)\n", pConnector, pmt);
|
|
|
|
|
|
|
|
return E_UNEXPECTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
HRESULT WINAPI InputPin_ReceiveConnection(IPin * iface, IPin * pReceivePin, const AM_MEDIA_TYPE * pmt)
|
|
|
|
{
|
2004-09-08 01:50:37 +00:00
|
|
|
InputPin *This = (InputPin *)iface;
|
2003-09-25 23:50:06 +00:00
|
|
|
PIN_DIRECTION pindirReceive;
|
2003-08-06 22:04:45 +00:00
|
|
|
HRESULT hr = S_OK;
|
|
|
|
|
|
|
|
TRACE("(%p, %p)\n", pReceivePin, pmt);
|
|
|
|
dump_AM_MEDIA_TYPE(pmt);
|
|
|
|
|
|
|
|
EnterCriticalSection(This->pin.pCritSec);
|
|
|
|
{
|
|
|
|
if (This->pin.pConnectedTo)
|
|
|
|
hr = VFW_E_ALREADY_CONNECTED;
|
|
|
|
|
2003-09-25 23:50:06 +00:00
|
|
|
if (SUCCEEDED(hr) && This->pin.fnQueryAccept(This->pin.pUserData, pmt) != S_OK)
|
|
|
|
hr = VFW_E_TYPE_NOT_ACCEPTED; /* FIXME: shouldn't we just map common errors onto
|
2003-08-06 22:04:45 +00:00
|
|
|
* VFW_E_TYPE_NOT_ACCEPTED and pass the value on otherwise? */
|
|
|
|
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
IPin_QueryDirection(pReceivePin, &pindirReceive);
|
|
|
|
|
|
|
|
if (pindirReceive != PINDIR_OUTPUT)
|
|
|
|
{
|
|
|
|
ERR("Can't connect from non-output pin\n");
|
|
|
|
hr = VFW_E_INVALID_DIRECTION;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
CopyMediaType(&This->pin.mtCurrent, pmt);
|
|
|
|
This->pin.pConnectedTo = pReceivePin;
|
|
|
|
IPin_AddRef(pReceivePin);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
LeaveCriticalSection(This->pin.pCritSec);
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI InputPin_EndOfStream(IPin * iface)
|
|
|
|
{
|
|
|
|
TRACE("()\n");
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI InputPin_BeginFlush(IPin * iface)
|
|
|
|
{
|
|
|
|
FIXME("()\n");
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI InputPin_EndFlush(IPin * iface)
|
|
|
|
{
|
|
|
|
FIXME("()\n");
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI InputPin_NewSegment(IPin * iface, REFERENCE_TIME tStart, REFERENCE_TIME tStop, double dRate)
|
|
|
|
{
|
2004-09-08 01:50:37 +00:00
|
|
|
InputPin *This = (InputPin *)iface;
|
2003-08-06 22:04:45 +00:00
|
|
|
|
2006-10-12 18:57:23 +00:00
|
|
|
TRACE("(%x%08x, %x%08x, %e)\n", (ULONG)(tStart >> 32), (ULONG)tStart, (ULONG)(tStop >> 32), (ULONG)tStop, dRate);
|
2003-08-06 22:04:45 +00:00
|
|
|
|
|
|
|
This->tStart = tStart;
|
|
|
|
This->tStop = tStop;
|
|
|
|
This->dRate = dRate;
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const IPinVtbl InputPin_Vtbl =
|
|
|
|
{
|
|
|
|
InputPin_QueryInterface,
|
|
|
|
IPinImpl_AddRef,
|
|
|
|
InputPin_Release,
|
|
|
|
InputPin_Connect,
|
|
|
|
InputPin_ReceiveConnection,
|
|
|
|
IPinImpl_Disconnect,
|
|
|
|
IPinImpl_ConnectedTo,
|
|
|
|
IPinImpl_ConnectionMediaType,
|
|
|
|
IPinImpl_QueryPinInfo,
|
|
|
|
IPinImpl_QueryDirection,
|
|
|
|
IPinImpl_QueryId,
|
|
|
|
IPinImpl_QueryAccept,
|
|
|
|
IPinImpl_EnumMediaTypes,
|
|
|
|
IPinImpl_QueryInternalConnections,
|
|
|
|
InputPin_EndOfStream,
|
|
|
|
InputPin_BeginFlush,
|
|
|
|
InputPin_EndFlush,
|
|
|
|
InputPin_NewSegment
|
|
|
|
};
|
|
|
|
|
|
|
|
/*** IMemInputPin implementation ***/
|
|
|
|
|
|
|
|
HRESULT WINAPI MemInputPin_QueryInterface(IMemInputPin * iface, REFIID riid, LPVOID * ppv)
|
|
|
|
{
|
2005-07-27 15:14:18 +00:00
|
|
|
InputPin *This = impl_from_IMemInputPin(iface);
|
2003-08-06 22:04:45 +00:00
|
|
|
|
|
|
|
return IPin_QueryInterface((IPin *)&This->pin, riid, ppv);
|
|
|
|
}
|
|
|
|
|
|
|
|
ULONG WINAPI MemInputPin_AddRef(IMemInputPin * iface)
|
|
|
|
{
|
2005-07-27 15:14:18 +00:00
|
|
|
InputPin *This = impl_from_IMemInputPin(iface);
|
2003-08-06 22:04:45 +00:00
|
|
|
|
|
|
|
return IPin_AddRef((IPin *)&This->pin);
|
|
|
|
}
|
|
|
|
|
|
|
|
ULONG WINAPI MemInputPin_Release(IMemInputPin * iface)
|
|
|
|
{
|
2005-07-27 15:14:18 +00:00
|
|
|
InputPin *This = impl_from_IMemInputPin(iface);
|
2003-08-06 22:04:45 +00:00
|
|
|
|
|
|
|
return IPin_Release((IPin *)&This->pin);
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI MemInputPin_GetAllocator(IMemInputPin * iface, IMemAllocator ** ppAllocator)
|
|
|
|
{
|
2005-07-27 15:14:18 +00:00
|
|
|
InputPin *This = impl_from_IMemInputPin(iface);
|
2003-08-06 22:04:45 +00:00
|
|
|
|
2004-08-16 19:49:46 +00:00
|
|
|
TRACE("(%p/%p)->(%p)\n", This, iface, ppAllocator);
|
2003-08-06 22:04:45 +00:00
|
|
|
|
|
|
|
*ppAllocator = This->pAllocator;
|
|
|
|
if (*ppAllocator)
|
|
|
|
IMemAllocator_AddRef(*ppAllocator);
|
|
|
|
|
|
|
|
return *ppAllocator ? S_OK : VFW_E_NO_ALLOCATOR;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI MemInputPin_NotifyAllocator(IMemInputPin * iface, IMemAllocator * pAllocator, BOOL bReadOnly)
|
|
|
|
{
|
2005-07-27 15:14:18 +00:00
|
|
|
InputPin *This = impl_from_IMemInputPin(iface);
|
2003-08-06 22:04:45 +00:00
|
|
|
|
2004-08-16 19:49:46 +00:00
|
|
|
TRACE("(%p/%p)->(%p, %d)\n", This, iface, pAllocator, bReadOnly);
|
2003-08-06 22:04:45 +00:00
|
|
|
|
|
|
|
if (This->pAllocator)
|
|
|
|
IMemAllocator_Release(This->pAllocator);
|
|
|
|
This->pAllocator = pAllocator;
|
|
|
|
if (This->pAllocator)
|
|
|
|
IMemAllocator_AddRef(This->pAllocator);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI MemInputPin_GetAllocatorRequirements(IMemInputPin * iface, ALLOCATOR_PROPERTIES * pProps)
|
|
|
|
{
|
2005-07-27 15:14:18 +00:00
|
|
|
InputPin *This = impl_from_IMemInputPin(iface);
|
2004-08-16 19:49:46 +00:00
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p)\n", This, iface, pProps);
|
2003-08-06 22:04:45 +00:00
|
|
|
|
|
|
|
/* override this method if you have any specific requirements */
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI MemInputPin_Receive(IMemInputPin * iface, IMediaSample * pSample)
|
|
|
|
{
|
2005-07-27 15:14:18 +00:00
|
|
|
InputPin *This = impl_from_IMemInputPin(iface);
|
2003-08-06 22:04:45 +00:00
|
|
|
|
|
|
|
/* this trace commented out for performance reasons */
|
2004-08-16 19:49:46 +00:00
|
|
|
/*TRACE("(%p/%p)->(%p)\n", This, iface, pSample);*/
|
2003-08-06 22:04:45 +00:00
|
|
|
|
2003-09-25 23:50:06 +00:00
|
|
|
return This->fnSampleProc(This->pin.pUserData, pSample);
|
2003-08-06 22:04:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI MemInputPin_ReceiveMultiple(IMemInputPin * iface, IMediaSample ** pSamples, long nSamples, long *nSamplesProcessed)
|
|
|
|
{
|
|
|
|
HRESULT hr = S_OK;
|
2005-07-27 15:14:18 +00:00
|
|
|
InputPin *This = impl_from_IMemInputPin(iface);
|
2004-08-16 19:49:46 +00:00
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%p, %ld, %p)\n", This, iface, pSamples, nSamples, nSamplesProcessed);
|
2003-08-06 22:04:45 +00:00
|
|
|
|
|
|
|
for (*nSamplesProcessed = 0; *nSamplesProcessed < nSamples; (*nSamplesProcessed)++)
|
|
|
|
{
|
|
|
|
hr = IMemInputPin_Receive(iface, pSamples[*nSamplesProcessed]);
|
|
|
|
if (hr != S_OK)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI MemInputPin_ReceiveCanBlock(IMemInputPin * iface)
|
|
|
|
{
|
2005-07-27 15:14:18 +00:00
|
|
|
InputPin *This = impl_from_IMemInputPin(iface);
|
2004-08-16 19:49:46 +00:00
|
|
|
|
|
|
|
FIXME("(%p/%p)->()\n", This, iface);
|
2003-08-06 22:04:45 +00:00
|
|
|
|
|
|
|
/* FIXME: we should check whether any output pins will block */
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const IMemInputPinVtbl MemInputPin_Vtbl =
|
|
|
|
{
|
|
|
|
MemInputPin_QueryInterface,
|
|
|
|
MemInputPin_AddRef,
|
|
|
|
MemInputPin_Release,
|
|
|
|
MemInputPin_GetAllocator,
|
|
|
|
MemInputPin_NotifyAllocator,
|
|
|
|
MemInputPin_GetAllocatorRequirements,
|
|
|
|
MemInputPin_Receive,
|
|
|
|
MemInputPin_ReceiveMultiple,
|
|
|
|
MemInputPin_ReceiveCanBlock
|
|
|
|
};
|
|
|
|
|
|
|
|
HRESULT WINAPI OutputPin_QueryInterface(IPin * iface, REFIID riid, LPVOID * ppv)
|
|
|
|
{
|
2004-09-08 01:50:37 +00:00
|
|
|
OutputPin *This = (OutputPin *)iface;
|
2004-08-16 19:49:46 +00:00
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%s, %p)\n", This, iface, qzdebugstr_guid(riid), ppv);
|
2003-08-06 22:04:45 +00:00
|
|
|
|
|
|
|
*ppv = NULL;
|
|
|
|
|
|
|
|
if (IsEqualIID(riid, &IID_IUnknown))
|
|
|
|
*ppv = (LPVOID)iface;
|
|
|
|
else if (IsEqualIID(riid, &IID_IPin))
|
|
|
|
*ppv = (LPVOID)iface;
|
|
|
|
|
|
|
|
if (*ppv)
|
|
|
|
{
|
|
|
|
IUnknown_AddRef((IUnknown *)(*ppv));
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
FIXME("No interface for %s!\n", qzdebugstr_guid(riid));
|
|
|
|
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
ULONG WINAPI OutputPin_Release(IPin * iface)
|
|
|
|
{
|
2004-09-08 01:50:37 +00:00
|
|
|
OutputPin *This = (OutputPin *)iface;
|
2005-01-06 19:36:47 +00:00
|
|
|
ULONG refCount = InterlockedDecrement(&This->pin.refCount);
|
2003-08-06 22:04:45 +00:00
|
|
|
|
2006-10-12 18:57:23 +00:00
|
|
|
TRACE("(%p)->() Release from %d\n", iface, refCount + 1);
|
2003-08-06 22:04:45 +00:00
|
|
|
|
2005-01-06 19:36:47 +00:00
|
|
|
if (!refCount)
|
2003-08-06 22:04:45 +00:00
|
|
|
{
|
2005-06-05 19:18:34 +00:00
|
|
|
FreeMediaType(&This->pin.mtCurrent);
|
2003-08-06 22:04:45 +00:00
|
|
|
CoTaskMemFree(This);
|
|
|
|
return 0;
|
|
|
|
}
|
2005-01-06 19:36:47 +00:00
|
|
|
return refCount;
|
2003-08-06 22:04:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI OutputPin_Connect(IPin * iface, IPin * pReceivePin, const AM_MEDIA_TYPE * pmt)
|
|
|
|
{
|
|
|
|
HRESULT hr;
|
2004-09-08 01:50:37 +00:00
|
|
|
OutputPin *This = (OutputPin *)iface;
|
2003-08-06 22:04:45 +00:00
|
|
|
|
2004-08-16 19:49:46 +00:00
|
|
|
TRACE("(%p/%p)->(%p, %p)\n", This, iface, pReceivePin, pmt);
|
2003-08-06 22:04:45 +00:00
|
|
|
dump_AM_MEDIA_TYPE(pmt);
|
|
|
|
|
|
|
|
/* If we try to connect to ourself, we will definitely deadlock.
|
|
|
|
* There are other cases where we could deadlock too, but this
|
|
|
|
* catches the obvious case */
|
|
|
|
assert(pReceivePin != iface);
|
|
|
|
|
|
|
|
EnterCriticalSection(This->pin.pCritSec);
|
|
|
|
{
|
|
|
|
/* if we have been a specific type to connect with, then we can either connect
|
|
|
|
* with that or fail. We cannot choose different AM_MEDIA_TYPE */
|
2003-09-25 23:50:06 +00:00
|
|
|
if (pmt && !IsEqualGUID(&pmt->majortype, &GUID_NULL) && !IsEqualGUID(&pmt->subtype, &GUID_NULL))
|
|
|
|
hr = This->pConnectSpecific(iface, pReceivePin, pmt);
|
|
|
|
else
|
2003-08-06 22:04:45 +00:00
|
|
|
{
|
2003-09-25 23:50:06 +00:00
|
|
|
/* negotiate media type */
|
2003-08-06 22:04:45 +00:00
|
|
|
|
2003-09-25 23:50:06 +00:00
|
|
|
IEnumMediaTypes * pEnumCandidates;
|
|
|
|
AM_MEDIA_TYPE * pmtCandidate; /* Candidate media type */
|
2003-08-06 22:04:45 +00:00
|
|
|
|
2003-09-25 23:50:06 +00:00
|
|
|
if (SUCCEEDED(hr = IPin_EnumMediaTypes(iface, &pEnumCandidates)))
|
|
|
|
{
|
|
|
|
hr = VFW_E_NO_ACCEPTABLE_TYPES; /* Assume the worst, but set to S_OK if connected successfully */
|
2003-08-06 22:04:45 +00:00
|
|
|
|
2003-09-25 23:50:06 +00:00
|
|
|
/* try this filter's media types first */
|
|
|
|
while (S_OK == IEnumMediaTypes_Next(pEnumCandidates, 1, &pmtCandidate, NULL))
|
|
|
|
{
|
|
|
|
if (( !pmt || CompareMediaTypes(pmt, pmtCandidate, TRUE) ) &&
|
|
|
|
(This->pConnectSpecific(iface, pReceivePin, pmtCandidate) == S_OK))
|
2003-08-06 22:04:45 +00:00
|
|
|
{
|
2003-09-25 23:50:06 +00:00
|
|
|
hr = S_OK;
|
2003-08-06 22:04:45 +00:00
|
|
|
CoTaskMemFree(pmtCandidate);
|
2003-09-25 23:50:06 +00:00
|
|
|
break;
|
2003-08-06 22:04:45 +00:00
|
|
|
}
|
2003-09-25 23:50:06 +00:00
|
|
|
CoTaskMemFree(pmtCandidate);
|
2003-08-06 22:04:45 +00:00
|
|
|
}
|
2003-09-25 23:50:06 +00:00
|
|
|
IEnumMediaTypes_Release(pEnumCandidates);
|
|
|
|
}
|
2003-08-06 22:04:45 +00:00
|
|
|
|
2003-09-25 23:50:06 +00:00
|
|
|
/* then try receiver filter's media types */
|
|
|
|
if (hr != S_OK && SUCCEEDED(hr = IPin_EnumMediaTypes(pReceivePin, &pEnumCandidates))) /* if we haven't already connected successfully */
|
|
|
|
{
|
2004-08-16 19:49:46 +00:00
|
|
|
hr = VFW_E_NO_ACCEPTABLE_TYPES; /* Assume the worst, but set to S_OK if connected successfully */
|
|
|
|
|
2003-09-25 23:50:06 +00:00
|
|
|
while (S_OK == IEnumMediaTypes_Next(pEnumCandidates, 1, &pmtCandidate, NULL))
|
2003-08-06 22:04:45 +00:00
|
|
|
{
|
2003-09-25 23:50:06 +00:00
|
|
|
if (( !pmt || CompareMediaTypes(pmt, pmtCandidate, TRUE) ) &&
|
|
|
|
(This->pConnectSpecific(iface, pReceivePin, pmtCandidate) == S_OK))
|
2003-08-06 22:04:45 +00:00
|
|
|
{
|
2003-09-25 23:50:06 +00:00
|
|
|
hr = S_OK;
|
2003-08-06 22:04:45 +00:00
|
|
|
CoTaskMemFree(pmtCandidate);
|
2003-09-25 23:50:06 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
CoTaskMemFree(pmtCandidate);
|
|
|
|
} /* while */
|
|
|
|
IEnumMediaTypes_Release(pEnumCandidates);
|
|
|
|
} /* if not found */
|
|
|
|
} /* if negotiate media type */
|
2003-08-06 22:04:45 +00:00
|
|
|
} /* if succeeded */
|
|
|
|
LeaveCriticalSection(This->pin.pCritSec);
|
|
|
|
|
2006-10-12 18:57:23 +00:00
|
|
|
TRACE(" -- %x\n", hr);
|
2003-08-06 22:04:45 +00:00
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI OutputPin_ReceiveConnection(IPin * iface, IPin * pReceivePin, const AM_MEDIA_TYPE * pmt)
|
|
|
|
{
|
|
|
|
ERR("Incoming connection on an output pin! (%p, %p)\n", pReceivePin, pmt);
|
|
|
|
|
|
|
|
return E_UNEXPECTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI OutputPin_Disconnect(IPin * iface)
|
|
|
|
{
|
|
|
|
HRESULT hr;
|
2004-09-08 01:50:37 +00:00
|
|
|
OutputPin *This = (OutputPin *)iface;
|
2003-08-06 22:04:45 +00:00
|
|
|
|
|
|
|
TRACE("()\n");
|
|
|
|
|
|
|
|
EnterCriticalSection(This->pin.pCritSec);
|
|
|
|
{
|
|
|
|
if (This->pMemInputPin)
|
|
|
|
{
|
|
|
|
IMemInputPin_Release(This->pMemInputPin);
|
|
|
|
This->pMemInputPin = NULL;
|
|
|
|
}
|
|
|
|
if (This->pin.pConnectedTo)
|
|
|
|
{
|
|
|
|
IPin_Release(This->pin.pConnectedTo);
|
|
|
|
This->pin.pConnectedTo = NULL;
|
|
|
|
hr = S_OK;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
hr = S_FALSE;
|
|
|
|
}
|
|
|
|
LeaveCriticalSection(This->pin.pCritSec);
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI OutputPin_EndOfStream(IPin * iface)
|
|
|
|
{
|
|
|
|
TRACE("()\n");
|
|
|
|
|
|
|
|
/* not supposed to do anything in an output pin */
|
|
|
|
|
|
|
|
return E_UNEXPECTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI OutputPin_BeginFlush(IPin * iface)
|
|
|
|
{
|
2004-08-16 19:49:46 +00:00
|
|
|
TRACE("(%p)->()\n", iface);
|
2003-08-06 22:04:45 +00:00
|
|
|
|
|
|
|
/* not supposed to do anything in an output pin */
|
|
|
|
|
|
|
|
return E_UNEXPECTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI OutputPin_EndFlush(IPin * iface)
|
|
|
|
{
|
2004-08-16 19:49:46 +00:00
|
|
|
TRACE("(%p)->()\n", iface);
|
2003-08-06 22:04:45 +00:00
|
|
|
|
|
|
|
/* not supposed to do anything in an output pin */
|
|
|
|
|
|
|
|
return E_UNEXPECTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI OutputPin_NewSegment(IPin * iface, REFERENCE_TIME tStart, REFERENCE_TIME tStop, double dRate)
|
|
|
|
{
|
2006-10-12 18:57:23 +00:00
|
|
|
TRACE("(%p)->(%x%08x, %x%08x, %e)\n", iface, (ULONG)(tStart >> 32), (ULONG)tStart, (ULONG)(tStop >> 32), (ULONG)tStop, dRate);
|
2003-08-06 22:04:45 +00:00
|
|
|
|
|
|
|
/* not supposed to do anything in an output pin */
|
|
|
|
|
|
|
|
return E_UNEXPECTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const IPinVtbl OutputPin_Vtbl =
|
|
|
|
{
|
|
|
|
OutputPin_QueryInterface,
|
|
|
|
IPinImpl_AddRef,
|
|
|
|
OutputPin_Release,
|
|
|
|
OutputPin_Connect,
|
|
|
|
OutputPin_ReceiveConnection,
|
|
|
|
OutputPin_Disconnect,
|
|
|
|
IPinImpl_ConnectedTo,
|
|
|
|
IPinImpl_ConnectionMediaType,
|
|
|
|
IPinImpl_QueryPinInfo,
|
|
|
|
IPinImpl_QueryDirection,
|
|
|
|
IPinImpl_QueryId,
|
|
|
|
IPinImpl_QueryAccept,
|
|
|
|
IPinImpl_EnumMediaTypes,
|
|
|
|
IPinImpl_QueryInternalConnections,
|
|
|
|
OutputPin_EndOfStream,
|
|
|
|
OutputPin_BeginFlush,
|
|
|
|
OutputPin_EndFlush,
|
|
|
|
OutputPin_NewSegment
|
|
|
|
};
|
2003-09-25 23:50:06 +00:00
|
|
|
|
2006-11-11 11:03:30 +00:00
|
|
|
HRESULT OutputPin_GetDeliveryBuffer(OutputPin * This, IMediaSample ** ppSample, REFERENCE_TIME * tStart, REFERENCE_TIME * tStop, DWORD dwFlags)
|
2003-09-25 23:50:06 +00:00
|
|
|
{
|
|
|
|
HRESULT hr;
|
|
|
|
|
2006-10-12 18:57:23 +00:00
|
|
|
TRACE("(%p, %p, %p, %x)\n", ppSample, tStart, tStop, dwFlags);
|
2003-09-25 23:50:06 +00:00
|
|
|
|
|
|
|
EnterCriticalSection(This->pin.pCritSec);
|
|
|
|
{
|
|
|
|
if (!This->pin.pConnectedTo)
|
|
|
|
hr = VFW_E_NOT_CONNECTED;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
IMemAllocator * pAlloc = NULL;
|
|
|
|
|
2004-08-19 02:33:00 +00:00
|
|
|
hr = IMemInputPin_GetAllocator(This->pMemInputPin, &pAlloc);
|
2003-09-25 23:50:06 +00:00
|
|
|
|
|
|
|
if (SUCCEEDED(hr))
|
2006-11-11 11:03:30 +00:00
|
|
|
hr = IMemAllocator_GetBuffer(pAlloc, ppSample, tStart, tStop, dwFlags);
|
2003-09-25 23:50:06 +00:00
|
|
|
|
|
|
|
if (SUCCEEDED(hr))
|
2006-11-11 11:03:30 +00:00
|
|
|
hr = IMediaSample_SetTime(*ppSample, tStart, tStop);
|
2003-09-25 23:50:06 +00:00
|
|
|
|
|
|
|
if (pAlloc)
|
|
|
|
IMemAllocator_Release(pAlloc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
LeaveCriticalSection(This->pin.pCritSec);
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT OutputPin_SendSample(OutputPin * This, IMediaSample * pSample)
|
|
|
|
{
|
2004-08-19 02:33:00 +00:00
|
|
|
HRESULT hr = S_OK;
|
2003-09-25 23:50:06 +00:00
|
|
|
IMemInputPin * pMemConnected = NULL;
|
2007-03-14 13:39:58 +00:00
|
|
|
PIN_INFO pinInfo;
|
2003-09-25 23:50:06 +00:00
|
|
|
|
|
|
|
EnterCriticalSection(This->pin.pCritSec);
|
|
|
|
{
|
2004-08-19 02:33:00 +00:00
|
|
|
if (!This->pin.pConnectedTo || !This->pMemInputPin)
|
2003-09-25 23:50:06 +00:00
|
|
|
hr = VFW_E_NOT_CONNECTED;
|
|
|
|
else
|
|
|
|
{
|
2004-08-19 02:33:00 +00:00
|
|
|
/* we don't have the lock held when using This->pMemInputPin,
|
|
|
|
* so we need to AddRef it to stop it being deleted while we are
|
2007-03-14 13:39:58 +00:00
|
|
|
* using it. Same with its filter. */
|
2004-08-19 02:33:00 +00:00
|
|
|
pMemConnected = This->pMemInputPin;
|
|
|
|
IMemInputPin_AddRef(pMemConnected);
|
2007-03-14 13:39:58 +00:00
|
|
|
hr = IPin_QueryPinInfo(This->pin.pConnectedTo, &pinInfo);
|
2003-09-25 23:50:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
LeaveCriticalSection(This->pin.pCritSec);
|
|
|
|
|
2004-08-19 02:33:00 +00:00
|
|
|
if (SUCCEEDED(hr))
|
2003-09-25 23:50:06 +00:00
|
|
|
{
|
|
|
|
/* NOTE: if we are in a critical section when Receive is called
|
|
|
|
* then it causes some problems (most notably with the native Video
|
|
|
|
* Renderer) if we are re-entered for whatever reason */
|
|
|
|
hr = IMemInputPin_Receive(pMemConnected, pSample);
|
2007-04-03 18:04:59 +00:00
|
|
|
|
|
|
|
/* If the filter's destroyed, tell upstream to stop sending data */
|
|
|
|
if(IBaseFilter_Release(pinInfo.pFilter) == 0 && SUCCEEDED(hr))
|
|
|
|
hr = S_FALSE;
|
2003-09-25 23:50:06 +00:00
|
|
|
}
|
2007-03-14 13:39:58 +00:00
|
|
|
if (pMemConnected)
|
|
|
|
IMemInputPin_Release(pMemConnected);
|
|
|
|
|
2003-09-25 23:50:06 +00:00
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT OutputPin_DeliverNewSegment(OutputPin * This, REFERENCE_TIME tStart, REFERENCE_TIME tStop, double dRate)
|
|
|
|
{
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
EnterCriticalSection(This->pin.pCritSec);
|
|
|
|
{
|
|
|
|
if (!This->pin.pConnectedTo)
|
|
|
|
hr = VFW_E_NOT_CONNECTED;
|
|
|
|
else
|
|
|
|
hr = IPin_NewSegment(This->pin.pConnectedTo, tStart, tStop, dRate);
|
|
|
|
}
|
|
|
|
LeaveCriticalSection(This->pin.pCritSec);
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT OutputPin_CommitAllocator(OutputPin * This)
|
|
|
|
{
|
|
|
|
HRESULT hr;
|
|
|
|
|
2004-08-16 19:49:46 +00:00
|
|
|
TRACE("(%p)->()\n", This);
|
2003-09-25 23:50:06 +00:00
|
|
|
|
|
|
|
EnterCriticalSection(This->pin.pCritSec);
|
|
|
|
{
|
2004-08-19 02:33:00 +00:00
|
|
|
if (!This->pin.pConnectedTo || !This->pMemInputPin)
|
2003-09-25 23:50:06 +00:00
|
|
|
hr = VFW_E_NOT_CONNECTED;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
IMemAllocator * pAlloc = NULL;
|
|
|
|
|
2004-08-19 02:33:00 +00:00
|
|
|
hr = IMemInputPin_GetAllocator(This->pMemInputPin, &pAlloc);
|
2003-09-25 23:50:06 +00:00
|
|
|
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
hr = IMemAllocator_Commit(pAlloc);
|
|
|
|
|
|
|
|
if (pAlloc)
|
|
|
|
IMemAllocator_Release(pAlloc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
LeaveCriticalSection(This->pin.pCritSec);
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT OutputPin_DeliverDisconnect(OutputPin * This)
|
|
|
|
{
|
|
|
|
HRESULT hr;
|
|
|
|
|
2004-08-16 19:49:46 +00:00
|
|
|
TRACE("(%p)->()\n", This);
|
2003-09-25 23:50:06 +00:00
|
|
|
|
|
|
|
EnterCriticalSection(This->pin.pCritSec);
|
|
|
|
{
|
2004-08-19 02:33:00 +00:00
|
|
|
if (!This->pin.pConnectedTo || !This->pMemInputPin)
|
2003-09-25 23:50:06 +00:00
|
|
|
hr = VFW_E_NOT_CONNECTED;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
IMemAllocator * pAlloc = NULL;
|
|
|
|
|
2004-08-19 02:33:00 +00:00
|
|
|
hr = IMemInputPin_GetAllocator(This->pMemInputPin, &pAlloc);
|
2003-09-25 23:50:06 +00:00
|
|
|
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
hr = IMemAllocator_Decommit(pAlloc);
|
|
|
|
|
|
|
|
if (pAlloc)
|
|
|
|
IMemAllocator_Release(pAlloc);
|
|
|
|
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
hr = IPin_Disconnect(This->pin.pConnectedTo);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
LeaveCriticalSection(This->pin.pCritSec);
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
HRESULT PullPin_Construct(const PIN_INFO * pPinInfo, SAMPLEPROC pSampleProc, LPVOID pUserData, QUERYACCEPTPROC pQueryAccept, LPCRITICAL_SECTION pCritSec, IPin ** ppPin)
|
|
|
|
{
|
|
|
|
PullPin * pPinImpl;
|
|
|
|
|
|
|
|
*ppPin = NULL;
|
|
|
|
|
|
|
|
if (pPinInfo->dir != PINDIR_INPUT)
|
|
|
|
{
|
|
|
|
ERR("Pin direction(%x) != PINDIR_INPUT\n", pPinInfo->dir);
|
|
|
|
return E_INVALIDARG;
|
|
|
|
}
|
|
|
|
|
|
|
|
pPinImpl = CoTaskMemAlloc(sizeof(*pPinImpl));
|
|
|
|
|
|
|
|
if (!pPinImpl)
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
|
|
|
|
if (SUCCEEDED(PullPin_Init(pPinInfo, pSampleProc, pUserData, pQueryAccept, pCritSec, pPinImpl)))
|
|
|
|
{
|
|
|
|
pPinImpl->pin.lpVtbl = &PullPin_Vtbl;
|
|
|
|
|
|
|
|
*ppPin = (IPin *)(&pPinImpl->pin.lpVtbl);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT PullPin_Init(const PIN_INFO * pPinInfo, SAMPLEPROC pSampleProc, LPVOID pUserData, QUERYACCEPTPROC pQueryAccept, LPCRITICAL_SECTION pCritSec, PullPin * pPinImpl)
|
|
|
|
{
|
|
|
|
/* Common attributes */
|
|
|
|
pPinImpl->pin.refCount = 1;
|
|
|
|
pPinImpl->pin.pConnectedTo = NULL;
|
|
|
|
pPinImpl->pin.fnQueryAccept = pQueryAccept;
|
|
|
|
pPinImpl->pin.pUserData = pUserData;
|
|
|
|
pPinImpl->pin.pCritSec = pCritSec;
|
|
|
|
Copy_PinInfo(&pPinImpl->pin.pinInfo, pPinInfo);
|
2005-06-05 19:18:34 +00:00
|
|
|
ZeroMemory(&pPinImpl->pin.mtCurrent, sizeof(AM_MEDIA_TYPE));
|
2003-09-25 23:50:06 +00:00
|
|
|
|
|
|
|
/* Input pin attributes */
|
|
|
|
pPinImpl->fnSampleProc = pSampleProc;
|
|
|
|
pPinImpl->fnPreConnect = NULL;
|
|
|
|
pPinImpl->pAlloc = NULL;
|
|
|
|
pPinImpl->pReader = NULL;
|
|
|
|
pPinImpl->hThread = NULL;
|
|
|
|
pPinImpl->hEventStateChanged = CreateEventW(NULL, FALSE, TRUE, NULL);
|
|
|
|
|
|
|
|
pPinImpl->rtStart = 0;
|
2007-03-25 22:18:49 +00:00
|
|
|
pPinImpl->rtCurrent = 0;
|
2003-09-25 23:50:06 +00:00
|
|
|
pPinImpl->rtStop = ((LONGLONG)0x7fffffff << 32) | 0xffffffff;
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI PullPin_ReceiveConnection(IPin * iface, IPin * pReceivePin, const AM_MEDIA_TYPE * pmt)
|
|
|
|
{
|
|
|
|
PIN_DIRECTION pindirReceive;
|
|
|
|
HRESULT hr = S_OK;
|
2004-09-08 01:50:37 +00:00
|
|
|
PullPin *This = (PullPin *)iface;
|
2003-09-25 23:50:06 +00:00
|
|
|
|
2004-08-16 19:49:46 +00:00
|
|
|
TRACE("(%p/%p)->(%p, %p)\n", This, iface, pReceivePin, pmt);
|
2003-09-25 23:50:06 +00:00
|
|
|
dump_AM_MEDIA_TYPE(pmt);
|
|
|
|
|
|
|
|
EnterCriticalSection(This->pin.pCritSec);
|
|
|
|
{
|
|
|
|
if (This->pin.pConnectedTo)
|
|
|
|
hr = VFW_E_ALREADY_CONNECTED;
|
|
|
|
|
|
|
|
if (SUCCEEDED(hr) && (This->pin.fnQueryAccept(This->pin.pUserData, pmt) != S_OK))
|
|
|
|
hr = VFW_E_TYPE_NOT_ACCEPTED; /* FIXME: shouldn't we just map common errors onto
|
|
|
|
* VFW_E_TYPE_NOT_ACCEPTED and pass the value on otherwise? */
|
|
|
|
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
IPin_QueryDirection(pReceivePin, &pindirReceive);
|
|
|
|
|
|
|
|
if (pindirReceive != PINDIR_OUTPUT)
|
|
|
|
{
|
|
|
|
ERR("Can't connect from non-output pin\n");
|
|
|
|
hr = VFW_E_INVALID_DIRECTION;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-03-14 13:42:37 +00:00
|
|
|
This->pReader = NULL;
|
|
|
|
This->pAlloc = NULL;
|
2003-09-25 23:50:06 +00:00
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
hr = IPin_QueryInterface(pReceivePin, &IID_IAsyncReader, (LPVOID *)&This->pReader);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
ALLOCATOR_PROPERTIES props;
|
|
|
|
props.cBuffers = 3;
|
|
|
|
props.cbBuffer = 64 * 1024; /* 64k bytes */
|
|
|
|
props.cbAlign = 1;
|
|
|
|
props.cbPrefix = 0;
|
|
|
|
hr = IAsyncReader_RequestAllocator(This->pReader, NULL, &props, &This->pAlloc);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (SUCCEEDED(hr) && This->fnPreConnect)
|
|
|
|
{
|
|
|
|
hr = This->fnPreConnect(iface, pReceivePin);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
CopyMediaType(&This->pin.mtCurrent, pmt);
|
|
|
|
This->pin.pConnectedTo = pReceivePin;
|
|
|
|
IPin_AddRef(pReceivePin);
|
|
|
|
}
|
2007-03-14 13:42:37 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (This->pReader)
|
|
|
|
IAsyncReader_Release(This->pReader);
|
|
|
|
This->pReader = NULL;
|
|
|
|
if (This->pAlloc)
|
|
|
|
IMemAllocator_Release(This->pAlloc);
|
|
|
|
This->pAlloc = NULL;
|
|
|
|
}
|
2003-09-25 23:50:06 +00:00
|
|
|
}
|
|
|
|
LeaveCriticalSection(This->pin.pCritSec);
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI PullPin_QueryInterface(IPin * iface, REFIID riid, LPVOID * ppv)
|
|
|
|
{
|
2004-09-08 01:50:37 +00:00
|
|
|
PullPin *This = (PullPin *)iface;
|
2004-08-16 19:49:46 +00:00
|
|
|
|
|
|
|
TRACE("(%p/%p)->(%s, %p)\n", This, iface, qzdebugstr_guid(riid), ppv);
|
2003-09-25 23:50:06 +00:00
|
|
|
|
|
|
|
*ppv = NULL;
|
|
|
|
|
|
|
|
if (IsEqualIID(riid, &IID_IUnknown))
|
|
|
|
*ppv = (LPVOID)iface;
|
|
|
|
else if (IsEqualIID(riid, &IID_IPin))
|
|
|
|
*ppv = (LPVOID)iface;
|
|
|
|
|
|
|
|
if (*ppv)
|
|
|
|
{
|
|
|
|
IUnknown_AddRef((IUnknown *)(*ppv));
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
FIXME("No interface for %s!\n", qzdebugstr_guid(riid));
|
|
|
|
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
ULONG WINAPI PullPin_Release(IPin * iface)
|
|
|
|
{
|
2004-09-08 01:50:37 +00:00
|
|
|
PullPin *This = (PullPin *)iface;
|
2005-01-06 19:36:47 +00:00
|
|
|
ULONG refCount = InterlockedDecrement(&This->pin.refCount);
|
2003-09-25 23:50:06 +00:00
|
|
|
|
2007-03-05 04:46:04 +00:00
|
|
|
TRACE("(%p)->() Release from %d\n", This, refCount + 1);
|
2003-09-25 23:50:06 +00:00
|
|
|
|
2005-01-06 19:36:47 +00:00
|
|
|
if (!refCount)
|
2003-09-25 23:50:06 +00:00
|
|
|
{
|
2006-06-30 11:37:19 +00:00
|
|
|
if(This->pAlloc)
|
|
|
|
IMemAllocator_Release(This->pAlloc);
|
|
|
|
if(This->pReader)
|
|
|
|
IAsyncReader_Release(This->pReader);
|
2003-09-25 23:50:06 +00:00
|
|
|
CloseHandle(This->hEventStateChanged);
|
|
|
|
CoTaskMemFree(This);
|
|
|
|
return 0;
|
|
|
|
}
|
2005-01-06 19:36:47 +00:00
|
|
|
return refCount;
|
2003-09-25 23:50:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static DWORD WINAPI PullPin_Thread_Main(LPVOID pv)
|
|
|
|
{
|
|
|
|
for (;;)
|
|
|
|
SleepEx(INFINITE, TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void CALLBACK PullPin_Thread_Process(ULONG_PTR iface)
|
|
|
|
{
|
2004-09-08 01:50:37 +00:00
|
|
|
PullPin *This = (PullPin *)iface;
|
2003-09-25 23:50:06 +00:00
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
ALLOCATOR_PROPERTIES allocProps;
|
|
|
|
|
2004-12-27 17:15:58 +00:00
|
|
|
CoInitializeEx(NULL, COINIT_MULTITHREADED);
|
|
|
|
|
2003-09-25 23:50:06 +00:00
|
|
|
SetEvent(This->hEventStateChanged);
|
|
|
|
|
|
|
|
hr = IMemAllocator_GetProperties(This->pAlloc, &allocProps);
|
|
|
|
|
2007-03-25 22:18:49 +00:00
|
|
|
if (This->rtCurrent < This->rtStart)
|
|
|
|
This->rtCurrent = MEDIATIME_FROM_BYTES(ALIGNDOWN(BYTES_FROM_MEDIATIME(This->rtStart), allocProps.cbAlign));
|
2003-09-25 23:50:06 +00:00
|
|
|
|
2005-01-03 20:23:14 +00:00
|
|
|
TRACE("Start\n");
|
|
|
|
|
2007-03-25 22:18:49 +00:00
|
|
|
while (This->rtCurrent < This->rtStop && hr == S_OK)
|
2003-09-25 23:50:06 +00:00
|
|
|
{
|
|
|
|
/* FIXME: to improve performance by quite a bit this should be changed
|
|
|
|
* so that one sample is processed while one sample is fetched. However,
|
|
|
|
* it is harder to debug so for the moment it will stay as it is */
|
|
|
|
IMediaSample * pSample = NULL;
|
2007-04-01 02:31:27 +00:00
|
|
|
REFERENCE_TIME rtSampleStart;
|
2003-09-25 23:50:06 +00:00
|
|
|
REFERENCE_TIME rtSampleStop;
|
2006-10-12 18:57:23 +00:00
|
|
|
DWORD_PTR dwUser;
|
2003-09-25 23:50:06 +00:00
|
|
|
|
2005-01-03 20:23:14 +00:00
|
|
|
TRACE("Process sample\n");
|
|
|
|
|
2003-09-25 23:50:06 +00:00
|
|
|
hr = IMemAllocator_GetBuffer(This->pAlloc, &pSample, NULL, NULL, 0);
|
|
|
|
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
2007-04-01 02:31:27 +00:00
|
|
|
rtSampleStart = This->rtCurrent;
|
|
|
|
rtSampleStop = rtSampleStart + MEDIATIME_FROM_BYTES(IMediaSample_GetSize(pSample));
|
2003-09-25 23:50:06 +00:00
|
|
|
if (rtSampleStop > This->rtStop)
|
|
|
|
rtSampleStop = MEDIATIME_FROM_BYTES(ALIGNUP(BYTES_FROM_MEDIATIME(This->rtStop), allocProps.cbAlign));
|
2007-04-01 02:31:27 +00:00
|
|
|
hr = IMediaSample_SetTime(pSample, &rtSampleStart, &rtSampleStop);
|
2007-03-25 22:18:49 +00:00
|
|
|
This->rtCurrent = rtSampleStop;
|
2003-09-25 23:50:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
hr = IAsyncReader_Request(This->pReader, pSample, (ULONG_PTR)0);
|
|
|
|
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
hr = IAsyncReader_WaitForNext(This->pReader, 10000, &pSample, &dwUser);
|
|
|
|
|
2007-04-01 02:31:27 +00:00
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
{
|
|
|
|
rtSampleStop = rtSampleStart + MEDIATIME_FROM_BYTES(IMediaSample_GetActualDataLength(pSample));
|
|
|
|
if (rtSampleStop > This->rtStop)
|
|
|
|
rtSampleStop = MEDIATIME_FROM_BYTES(ALIGNUP(BYTES_FROM_MEDIATIME(This->rtStop), allocProps.cbAlign));
|
|
|
|
hr = IMediaSample_SetTime(pSample, &rtSampleStart, &rtSampleStop);
|
|
|
|
}
|
|
|
|
|
2003-09-25 23:50:06 +00:00
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
hr = This->fnSampleProc(This->pin.pUserData, pSample);
|
|
|
|
else
|
2006-10-12 18:57:23 +00:00
|
|
|
ERR("Processing error: %x\n", hr);
|
2007-03-14 13:39:58 +00:00
|
|
|
|
2003-09-25 23:50:06 +00:00
|
|
|
if (pSample)
|
2004-08-16 19:49:46 +00:00
|
|
|
IMediaSample_Release(pSample);
|
2003-09-25 23:50:06 +00:00
|
|
|
}
|
2004-12-27 17:15:58 +00:00
|
|
|
|
|
|
|
CoUninitialize();
|
2005-01-03 20:23:14 +00:00
|
|
|
|
|
|
|
TRACE("End\n");
|
2003-09-25 23:50:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void CALLBACK PullPin_Thread_Stop(ULONG_PTR iface)
|
|
|
|
{
|
2004-09-08 01:50:37 +00:00
|
|
|
PullPin *This = (PullPin *)iface;
|
2003-09-25 23:50:06 +00:00
|
|
|
|
2004-08-16 19:49:46 +00:00
|
|
|
TRACE("(%p/%p)->()\n", This, (LPVOID)iface);
|
2003-09-25 23:50:06 +00:00
|
|
|
|
|
|
|
EnterCriticalSection(This->pin.pCritSec);
|
|
|
|
{
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
CloseHandle(This->hThread);
|
|
|
|
This->hThread = NULL;
|
|
|
|
if (FAILED(hr = IMemAllocator_Decommit(This->pAlloc)))
|
2006-10-12 18:57:23 +00:00
|
|
|
ERR("Allocator decommit failed with error %x. Possible memory leak\n", hr);
|
2003-09-25 23:50:06 +00:00
|
|
|
}
|
|
|
|
LeaveCriticalSection(This->pin.pCritSec);
|
|
|
|
|
|
|
|
SetEvent(This->hEventStateChanged);
|
|
|
|
|
2007-04-03 12:55:29 +00:00
|
|
|
IBaseFilter_Release(This->pin.pinInfo.pFilter);
|
|
|
|
|
2003-09-25 23:50:06 +00:00
|
|
|
ExitThread(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT PullPin_InitProcessing(PullPin * This)
|
|
|
|
{
|
|
|
|
HRESULT hr = S_OK;
|
|
|
|
|
2004-08-16 19:49:46 +00:00
|
|
|
TRACE("(%p)->()\n", This);
|
2003-09-25 23:50:06 +00:00
|
|
|
|
|
|
|
assert(!This->hThread);
|
|
|
|
|
|
|
|
/* if we are connected */
|
|
|
|
if (This->pAlloc)
|
|
|
|
{
|
|
|
|
EnterCriticalSection(This->pin.pCritSec);
|
|
|
|
{
|
|
|
|
DWORD dwThreadId;
|
|
|
|
assert(!This->hThread);
|
|
|
|
|
2007-04-03 12:55:29 +00:00
|
|
|
/* AddRef the filter to make sure it and it's pins will be around
|
|
|
|
* as long as the thread */
|
|
|
|
IBaseFilter_AddRef(This->pin.pinInfo.pFilter);
|
|
|
|
|
2003-09-25 23:50:06 +00:00
|
|
|
This->hThread = CreateThread(NULL, 0, PullPin_Thread_Main, NULL, 0, &dwThreadId);
|
|
|
|
if (!This->hThread)
|
2007-04-03 12:55:29 +00:00
|
|
|
{
|
2003-09-25 23:50:06 +00:00
|
|
|
hr = HRESULT_FROM_WIN32(GetLastError());
|
2007-04-03 12:55:29 +00:00
|
|
|
IBaseFilter_Release(This->pin.pinInfo.pFilter);
|
|
|
|
}
|
2003-09-25 23:50:06 +00:00
|
|
|
|
|
|
|
if (SUCCEEDED(hr))
|
|
|
|
hr = IMemAllocator_Commit(This->pAlloc);
|
|
|
|
}
|
|
|
|
LeaveCriticalSection(This->pin.pCritSec);
|
|
|
|
}
|
|
|
|
|
2006-10-12 18:57:23 +00:00
|
|
|
TRACE(" -- %x\n", hr);
|
2003-09-25 23:50:06 +00:00
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT PullPin_StartProcessing(PullPin * This)
|
|
|
|
{
|
|
|
|
/* if we are connected */
|
2004-08-16 19:49:46 +00:00
|
|
|
TRACE("(%p)->()\n", This);
|
2003-09-25 23:50:06 +00:00
|
|
|
if(This->pAlloc)
|
|
|
|
{
|
|
|
|
assert(This->hThread);
|
|
|
|
|
|
|
|
ResetEvent(This->hEventStateChanged);
|
2007-04-03 12:55:29 +00:00
|
|
|
|
2003-09-25 23:50:06 +00:00
|
|
|
if (!QueueUserAPC(PullPin_Thread_Process, This->hThread, (ULONG_PTR)This))
|
|
|
|
return HRESULT_FROM_WIN32(GetLastError());
|
|
|
|
}
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT PullPin_PauseProcessing(PullPin * This)
|
|
|
|
{
|
|
|
|
/* make the processing function exit its loop */
|
|
|
|
This->rtStop = 0;
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT PullPin_StopProcessing(PullPin * This)
|
|
|
|
{
|
|
|
|
/* if we are connected */
|
|
|
|
if (This->pAlloc)
|
|
|
|
{
|
|
|
|
assert(This->hThread);
|
|
|
|
|
|
|
|
ResetEvent(This->hEventStateChanged);
|
|
|
|
|
|
|
|
PullPin_PauseProcessing(This);
|
|
|
|
|
|
|
|
if (!QueueUserAPC(PullPin_Thread_Stop, This->hThread, (ULONG_PTR)This))
|
|
|
|
return HRESULT_FROM_WIN32(GetLastError());
|
|
|
|
}
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT PullPin_WaitForStateChange(PullPin * This, DWORD dwMilliseconds)
|
|
|
|
{
|
|
|
|
if (WaitForSingleObject(This->hEventStateChanged, dwMilliseconds) == WAIT_TIMEOUT)
|
|
|
|
return S_FALSE;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT PullPin_Seek(PullPin * This, REFERENCE_TIME rtStart, REFERENCE_TIME rtStop)
|
|
|
|
{
|
2006-10-12 18:57:23 +00:00
|
|
|
FIXME("(%p)->(%x%08x, %x%08x)\n", This, (LONG)(rtStart >> 32), (LONG)rtStart, (LONG)(rtStop >> 32), (LONG)rtStop);
|
2003-09-25 23:50:06 +00:00
|
|
|
|
|
|
|
PullPin_BeginFlush((IPin *)This);
|
|
|
|
/* FIXME: need critical section? */
|
|
|
|
This->rtStart = rtStart;
|
|
|
|
This->rtStop = rtStop;
|
|
|
|
PullPin_EndFlush((IPin *)This);
|
|
|
|
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI PullPin_EndOfStream(IPin * iface)
|
|
|
|
{
|
2004-08-16 19:49:46 +00:00
|
|
|
FIXME("(%p)->()\n", iface);
|
2003-09-25 23:50:06 +00:00
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI PullPin_BeginFlush(IPin * iface)
|
|
|
|
{
|
2004-08-16 19:49:46 +00:00
|
|
|
FIXME("(%p)->()\n", iface);
|
2003-09-25 23:50:06 +00:00
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI PullPin_EndFlush(IPin * iface)
|
|
|
|
{
|
2004-08-16 19:49:46 +00:00
|
|
|
FIXME("(%p)->()\n", iface);
|
2003-09-25 23:50:06 +00:00
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT WINAPI PullPin_NewSegment(IPin * iface, REFERENCE_TIME tStart, REFERENCE_TIME tStop, double dRate)
|
|
|
|
{
|
2004-08-16 19:49:46 +00:00
|
|
|
FIXME("(%p)->(%s, %s, %g)\n", iface, wine_dbgstr_longlong(tStart), wine_dbgstr_longlong(tStop), dRate);
|
2003-09-25 23:50:06 +00:00
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const IPinVtbl PullPin_Vtbl =
|
|
|
|
{
|
|
|
|
PullPin_QueryInterface,
|
|
|
|
IPinImpl_AddRef,
|
|
|
|
PullPin_Release,
|
|
|
|
OutputPin_Connect,
|
|
|
|
PullPin_ReceiveConnection,
|
|
|
|
IPinImpl_Disconnect,
|
|
|
|
IPinImpl_ConnectedTo,
|
|
|
|
IPinImpl_ConnectionMediaType,
|
|
|
|
IPinImpl_QueryPinInfo,
|
|
|
|
IPinImpl_QueryDirection,
|
|
|
|
IPinImpl_QueryId,
|
|
|
|
IPinImpl_QueryAccept,
|
|
|
|
IPinImpl_EnumMediaTypes,
|
|
|
|
IPinImpl_QueryInternalConnections,
|
|
|
|
PullPin_EndOfStream,
|
|
|
|
PullPin_BeginFlush,
|
|
|
|
PullPin_EndFlush,
|
|
|
|
PullPin_NewSegment
|
|
|
|
};
|