Zebediah Figura : strmbase: Use CBaseFilter::FindPin().

Alexandre Julliard julliard at winehq.org
Fri Jul 6 15:52:09 CDT 2018


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

Author: Zebediah Figura <z.figura12 at gmail.com>
Date:   Thu Jul  5 00:34:42 2018 +0200

strmbase: Use CBaseFilter::FindPin().

Signed-off-by: Zebediah Figura <z.figura12 at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/strmbase/transform.c | 9 ---------
 include/wine/strmbase.h   | 1 -
 2 files changed, 10 deletions(-)

diff --git a/dlls/strmbase/transform.c b/dlls/strmbase/transform.c
index 139c581..4d7069d 100644
--- a/dlls/strmbase/transform.c
+++ b/dlls/strmbase/transform.c
@@ -427,15 +427,6 @@ HRESULT WINAPI TransformFilterImpl_Notify(TransformFilter *iface, IBaseFilter *s
 
 /** IBaseFilter implementation **/
 
-HRESULT WINAPI TransformFilterImpl_FindPin(IBaseFilter * iface, LPCWSTR Id, IPin **ppPin)
-{
-    TransformFilter *This = impl_from_IBaseFilter(iface);
-
-    TRACE("(%p/%p)->(%s,%p)\n", This, iface, debugstr_w(Id), ppPin);
-
-    return E_NOTIMPL;
-}
-
 static HRESULT WINAPI TransformFilter_InputPin_EndOfStream(IPin * iface)
 {
     BaseInputPin* This = impl_BaseInputPin_from_IPin(iface);
diff --git a/include/wine/strmbase.h b/include/wine/strmbase.h
index b07dfa2..83a9084 100644
--- a/include/wine/strmbase.h
+++ b/include/wine/strmbase.h
@@ -260,7 +260,6 @@ ULONG WINAPI TransformFilterImpl_Release(IBaseFilter * iface);
 HRESULT WINAPI TransformFilterImpl_Stop(IBaseFilter * iface);
 HRESULT WINAPI TransformFilterImpl_Pause(IBaseFilter * iface);
 HRESULT WINAPI TransformFilterImpl_Run(IBaseFilter * iface, REFERENCE_TIME tStart);
-HRESULT WINAPI TransformFilterImpl_FindPin(IBaseFilter * iface, LPCWSTR Id, IPin **ppPin);
 HRESULT WINAPI TransformFilterImpl_Notify(TransformFilter *iface, IBaseFilter *sender, Quality qm);
 
 HRESULT TransformFilter_Construct( const IBaseFilterVtbl *filterVtbl, LONG filter_size, const CLSID* pClsid, const TransformFilterFuncTable* pFuncsTable, IBaseFilter ** ppTransformFilter);




More information about the wine-cvs mailing list