Christian Costa : quartz: Remove unused IMemInputPin vtables.

Alexandre Julliard julliard at winehq.org
Tue Dec 30 06:57:06 CST 2008


Module: wine
Branch: master
Commit: fa8cd7435fb38900024f40762580947c797bb4e6
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=fa8cd7435fb38900024f40762580947c797bb4e6

Author: Christian Costa <titan.costa at wanadoo.fr>
Date:   Tue Dec 30 13:25:32 2008 +0100

quartz: Remove unused IMemInputPin vtables.

---

 dlls/quartz/nullrenderer.c  |   13 -------------
 dlls/quartz/transform.c     |   14 --------------
 dlls/quartz/videorenderer.c |   13 -------------
 3 files changed, 0 insertions(+), 40 deletions(-)

diff --git a/dlls/quartz/nullrenderer.c b/dlls/quartz/nullrenderer.c
index 2f9ec94..b64e1d1 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 57e02b8..77ca4d7 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 0d9896e..ac948d5 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;




More information about the wine-cvs mailing list