From fa8cd7435fb38900024f40762580947c797bb4e6 Mon Sep 17 00:00:00 2001 From: Christian Costa Date: Tue, 30 Dec 2008 13:25:32 +0100 Subject: [PATCH] quartz: Remove unused IMemInputPin vtables. --- dlls/quartz/nullrenderer.c | 13 ------------- dlls/quartz/transform.c | 14 -------------- dlls/quartz/videorenderer.c | 13 ------------- 3 files changed, 40 deletions(-) diff --git a/dlls/quartz/nullrenderer.c b/dlls/quartz/nullrenderer.c index 2f9ec94b4de..b64e1d15c5f 100644 --- a/dlls/quartz/nullrenderer.c +++ b/dlls/quartz/nullrenderer.c @@ -67,19 +67,6 @@ typedef struct NullRendererImpl MediaSeekingImpl mediaSeeking; } 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) { NullRendererImpl *This = (NullRendererImpl *)iface; diff --git a/dlls/quartz/transform.c b/dlls/quartz/transform.c index 57e02b8d49d..77ca4d742f9 100644 --- a/dlls/quartz/transform.c +++ b/dlls/quartz/transform.c @@ -45,7 +45,6 @@ static const WCHAR wcsOutputPinName[] = {'o','u','t','p','u','t',' ','p','i','n' static const IBaseFilterVtbl TransformFilter_Vtbl; static const IPinVtbl TransformFilter_InputPin_Vtbl; -static const IMemInputPinVtbl MemInputPin_Vtbl; static const IPinVtbl TransformFilter_OutputPin_Vtbl; 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_NewSegment }; - -static const IMemInputPinVtbl MemInputPin_Vtbl = -{ - MemInputPin_QueryInterface, - MemInputPin_AddRef, - MemInputPin_Release, - MemInputPin_GetAllocator, - MemInputPin_NotifyAllocator, - MemInputPin_GetAllocatorRequirements, - MemInputPin_Receive, - MemInputPin_ReceiveMultiple, - MemInputPin_ReceiveCanBlock -}; diff --git a/dlls/quartz/videorenderer.c b/dlls/quartz/videorenderer.c index 0d9896e5618..ac948d56dcd 100644 --- a/dlls/quartz/videorenderer.c +++ b/dlls/quartz/videorenderer.c @@ -256,19 +256,6 @@ static BOOL CreateRenderingSubsystem(VideoRendererImpl* This) 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) { AM_MEDIA_TYPE amt; -- 2.11.4.GIT