strmbase: Get rid of the no longer used pin constructor and destructor helpers.
Signed-off-by: Zebediah Figura <z.figura12@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
2732d74d99
commit
0a10566061
|
@ -731,31 +731,6 @@ void strmbase_source_init(BaseOutputPin *pin, const IPinVtbl *vtbl,
|
|||
pin->pFuncsTable = func_table;
|
||||
}
|
||||
|
||||
HRESULT WINAPI BaseOutputPin_Construct(const IPinVtbl *OutputPin_Vtbl, LONG outputpin_size, const PIN_INFO * pPinInfo, const BaseOutputPinFuncTable* vtbl, LPCRITICAL_SECTION pCritSec, IPin ** ppPin)
|
||||
{
|
||||
BaseOutputPin * pPinImpl;
|
||||
|
||||
*ppPin = NULL;
|
||||
|
||||
if (pPinInfo->dir != PINDIR_OUTPUT)
|
||||
{
|
||||
ERR("Pin direction(%x) != PINDIR_OUTPUT\n", pPinInfo->dir);
|
||||
return E_INVALIDARG;
|
||||
}
|
||||
|
||||
assert(outputpin_size >= sizeof(BaseOutputPin));
|
||||
assert(vtbl->pfnAttemptConnection);
|
||||
|
||||
pPinImpl = CoTaskMemAlloc(outputpin_size);
|
||||
|
||||
if (!pPinImpl)
|
||||
return E_OUTOFMEMORY;
|
||||
|
||||
strmbase_source_init(pPinImpl, OutputPin_Vtbl, pPinInfo, vtbl, pCritSec);
|
||||
*ppPin = &pPinImpl->pin.IPin_iface;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
void strmbase_source_cleanup(BaseOutputPin *pin)
|
||||
{
|
||||
FreeMediaType(&pin->pin.mtCurrent);
|
||||
|
@ -764,13 +739,6 @@ void strmbase_source_cleanup(BaseOutputPin *pin)
|
|||
pin->pAllocator = NULL;
|
||||
}
|
||||
|
||||
HRESULT WINAPI BaseOutputPin_Destroy(BaseOutputPin *This)
|
||||
{
|
||||
strmbase_source_cleanup(This);
|
||||
CoTaskMemFree(This);
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
/*** Input Pin implementation ***/
|
||||
|
||||
static inline BaseInputPin *impl_BaseInputPin_from_IPin( IPin *iface )
|
||||
|
@ -1090,34 +1058,6 @@ void strmbase_sink_init(BaseInputPin *pin, const IPinVtbl *vtbl,
|
|||
pin->IMemInputPin_iface.lpVtbl = &MemInputPin_Vtbl;
|
||||
}
|
||||
|
||||
HRESULT BaseInputPin_Construct(const IPinVtbl *InputPin_Vtbl, LONG inputpin_size, const PIN_INFO * pPinInfo,
|
||||
const BaseInputPinFuncTable* vtbl,
|
||||
LPCRITICAL_SECTION pCritSec, IMemAllocator *allocator, IPin ** ppPin)
|
||||
{
|
||||
BaseInputPin * pPinImpl;
|
||||
|
||||
*ppPin = NULL;
|
||||
|
||||
assert(inputpin_size >= sizeof(BaseInputPin));
|
||||
assert(vtbl->base.pfnCheckMediaType);
|
||||
|
||||
if (pPinInfo->dir != PINDIR_INPUT)
|
||||
{
|
||||
ERR("Pin direction(%x) != PINDIR_INPUT\n", pPinInfo->dir);
|
||||
return E_INVALIDARG;
|
||||
}
|
||||
|
||||
pPinImpl = CoTaskMemAlloc(inputpin_size);
|
||||
|
||||
if (!pPinImpl)
|
||||
return E_OUTOFMEMORY;
|
||||
|
||||
strmbase_sink_init(pPinImpl, InputPin_Vtbl, pPinInfo, vtbl, pCritSec, allocator);
|
||||
|
||||
*ppPin = &pPinImpl->pin.IPin_iface;
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
void strmbase_sink_cleanup(BaseInputPin *pin)
|
||||
{
|
||||
FreeMediaType(&pin->pin.mtCurrent);
|
||||
|
@ -1126,10 +1066,3 @@ void strmbase_sink_cleanup(BaseInputPin *pin)
|
|||
pin->pAllocator = NULL;
|
||||
pin->pin.IPin_iface.lpVtbl = NULL;
|
||||
}
|
||||
|
||||
HRESULT WINAPI BaseInputPin_Destroy(BaseInputPin *This)
|
||||
{
|
||||
strmbase_sink_cleanup(This);
|
||||
CoTaskMemFree(This);
|
||||
return S_OK;
|
||||
}
|
||||
|
|
|
@ -132,8 +132,6 @@ HRESULT WINAPI BaseOutputPinImpl_InitAllocator(BaseOutputPin *This, IMemAllocato
|
|||
HRESULT WINAPI BaseOutputPinImpl_DecideAllocator(BaseOutputPin *This, IMemInputPin *pPin, IMemAllocator **pAlloc);
|
||||
HRESULT WINAPI BaseOutputPinImpl_AttemptConnection(BaseOutputPin *pin, IPin *peer, const AM_MEDIA_TYPE *mt);
|
||||
|
||||
HRESULT WINAPI BaseOutputPin_Construct(const IPinVtbl *OutputPin_Vtbl, LONG outputpin_size, const PIN_INFO * pPinInfo, const BaseOutputPinFuncTable* pBaseOutputFuncsTable, LPCRITICAL_SECTION pCritSec, IPin ** ppPin);
|
||||
HRESULT WINAPI BaseOutputPin_Destroy(BaseOutputPin *This);
|
||||
void strmbase_source_cleanup(BaseOutputPin *pin);
|
||||
void strmbase_source_init(BaseOutputPin *pin, const IPinVtbl *vtbl, const PIN_INFO *info,
|
||||
const BaseOutputPinFuncTable *func_table, CRITICAL_SECTION *cs);
|
||||
|
@ -148,10 +146,6 @@ HRESULT WINAPI BaseInputPinImpl_BeginFlush(IPin * iface);
|
|||
HRESULT WINAPI BaseInputPinImpl_EndFlush(IPin * iface);
|
||||
HRESULT WINAPI BaseInputPinImpl_NewSegment(IPin * iface, REFERENCE_TIME tStart, REFERENCE_TIME tStop, double dRate);
|
||||
|
||||
HRESULT BaseInputPin_Construct(const IPinVtbl *InputPin_Vtbl, LONG inputpin_size, const PIN_INFO * pPinInfo,
|
||||
const BaseInputPinFuncTable* pBaseInputFuncsTable,
|
||||
LPCRITICAL_SECTION pCritSec, IMemAllocator *, IPin ** ppPin);
|
||||
HRESULT WINAPI BaseInputPin_Destroy(BaseInputPin *This);
|
||||
void strmbase_sink_init(BaseInputPin *pin, const IPinVtbl *vtbl, const PIN_INFO *info,
|
||||
const BaseInputPinFuncTable *func_table, CRITICAL_SECTION *cs, IMemAllocator *allocator);
|
||||
void strmbase_sink_cleanup(BaseInputPin *pin);
|
||||
|
|
Loading…
Reference in New Issue