quartz: Remove unused IMemInputPin vtables.
This commit is contained in:
parent
95810a8999
commit
fa8cd7435f
|
@ -67,19 +67,6 @@ typedef struct NullRendererImpl
|
||||||
MediaSeekingImpl mediaSeeking;
|
MediaSeekingImpl mediaSeeking;
|
||||||
} NullRendererImpl;
|
} NullRendererImpl;
|
||||||
|
|
||||||
static const IMemInputPinVtbl MemInputPin_Vtbl =
|
|
||||||
{
|
|
||||||
MemInputPin_QueryInterface,
|
|
||||||
MemInputPin_AddRef,
|
|
||||||
MemInputPin_Release,
|
|
||||||
MemInputPin_GetAllocator,
|
|
||||||
MemInputPin_NotifyAllocator,
|
|
||||||
MemInputPin_GetAllocatorRequirements,
|
|
||||||
MemInputPin_Receive,
|
|
||||||
MemInputPin_ReceiveMultiple,
|
|
||||||
MemInputPin_ReceiveCanBlock
|
|
||||||
};
|
|
||||||
|
|
||||||
static HRESULT NullRenderer_Sample(LPVOID iface, IMediaSample * pSample)
|
static HRESULT NullRenderer_Sample(LPVOID iface, IMediaSample * pSample)
|
||||||
{
|
{
|
||||||
NullRendererImpl *This = (NullRendererImpl *)iface;
|
NullRendererImpl *This = (NullRendererImpl *)iface;
|
||||||
|
|
|
@ -45,7 +45,6 @@ static const WCHAR wcsOutputPinName[] = {'o','u','t','p','u','t',' ','p','i','n'
|
||||||
|
|
||||||
static const IBaseFilterVtbl TransformFilter_Vtbl;
|
static const IBaseFilterVtbl TransformFilter_Vtbl;
|
||||||
static const IPinVtbl TransformFilter_InputPin_Vtbl;
|
static const IPinVtbl TransformFilter_InputPin_Vtbl;
|
||||||
static const IMemInputPinVtbl MemInputPin_Vtbl;
|
|
||||||
static const IPinVtbl TransformFilter_OutputPin_Vtbl;
|
static const IPinVtbl TransformFilter_OutputPin_Vtbl;
|
||||||
|
|
||||||
static HRESULT TransformFilter_Input_QueryAccept(LPVOID iface, const AM_MEDIA_TYPE * pmt)
|
static HRESULT TransformFilter_Input_QueryAccept(LPVOID iface, const AM_MEDIA_TYPE * pmt)
|
||||||
|
@ -650,16 +649,3 @@ static const IPinVtbl TransformFilter_OutputPin_Vtbl =
|
||||||
OutputPin_EndFlush,
|
OutputPin_EndFlush,
|
||||||
OutputPin_NewSegment
|
OutputPin_NewSegment
|
||||||
};
|
};
|
||||||
|
|
||||||
static const IMemInputPinVtbl MemInputPin_Vtbl =
|
|
||||||
{
|
|
||||||
MemInputPin_QueryInterface,
|
|
||||||
MemInputPin_AddRef,
|
|
||||||
MemInputPin_Release,
|
|
||||||
MemInputPin_GetAllocator,
|
|
||||||
MemInputPin_NotifyAllocator,
|
|
||||||
MemInputPin_GetAllocatorRequirements,
|
|
||||||
MemInputPin_Receive,
|
|
||||||
MemInputPin_ReceiveMultiple,
|
|
||||||
MemInputPin_ReceiveCanBlock
|
|
||||||
};
|
|
||||||
|
|
|
@ -256,19 +256,6 @@ static BOOL CreateRenderingSubsystem(VideoRendererImpl* This)
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
static const IMemInputPinVtbl MemInputPin_Vtbl =
|
|
||||||
{
|
|
||||||
MemInputPin_QueryInterface,
|
|
||||||
MemInputPin_AddRef,
|
|
||||||
MemInputPin_Release,
|
|
||||||
MemInputPin_GetAllocator,
|
|
||||||
MemInputPin_NotifyAllocator,
|
|
||||||
MemInputPin_GetAllocatorRequirements,
|
|
||||||
MemInputPin_Receive,
|
|
||||||
MemInputPin_ReceiveMultiple,
|
|
||||||
MemInputPin_ReceiveCanBlock
|
|
||||||
};
|
|
||||||
|
|
||||||
static DWORD VideoRenderer_SendSampleData(VideoRendererImpl* This, LPBYTE data, DWORD size)
|
static DWORD VideoRenderer_SendSampleData(VideoRendererImpl* This, LPBYTE data, DWORD size)
|
||||||
{
|
{
|
||||||
AM_MEDIA_TYPE amt;
|
AM_MEDIA_TYPE amt;
|
||||||
|
|
Loading…
Reference in New Issue