Maarten Lankhorst : quartz: Silence seeking fixmes on transform filter.

Alexandre Julliard julliard at winehq.org
Mon Apr 14 17:20:51 CDT 2008


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

Author: Maarten Lankhorst <m.b.lankhorst at gmail.com>
Date:   Sat Apr 12 19:15:34 2008 -0700

quartz: Silence seeking fixmes on transform filter.

---

 dlls/quartz/transform.c |   10 +++++++---
 1 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/dlls/quartz/transform.c b/dlls/quartz/transform.c
index df5c746..936d96d 100644
--- a/dlls/quartz/transform.c
+++ b/dlls/quartz/transform.c
@@ -139,21 +139,25 @@ static const IMediaSeekingVtbl TransformFilter_Seeking_Vtbl =
     MediaSeekingImpl_GetPreroll
 };
 
+/* These shouldn't be implemented by default.
+ * Usually only source filters should implement these
+ * and even it's not needed all of the time
+ */
 static HRESULT TransformFilter_ChangeCurrent(IBaseFilter *iface)
 {
-    FIXME("(%p) filter hasn't implemented current position change!\n", iface);
+    TRACE("(%p) filter hasn't implemented current position change!\n", iface);
     return S_OK;
 }
 
 static HRESULT TransformFilter_ChangeStop(IBaseFilter *iface)
 {
-    FIXME("(%p) filter hasn't implemented stop position change!\n", iface);
+    TRACE("(%p) filter hasn't implemented stop position change!\n", iface);
     return S_OK;
 }
 
 static HRESULT TransformFilter_ChangeRate(IBaseFilter *iface)
 {
-    FIXME("(%p) filter hasn't implemented rate change!\n", iface);
+    TRACE("(%p) filter hasn't implemented rate change!\n", iface);
     return S_OK;
 }
 




More information about the wine-cvs mailing list