Module: wine Branch: master Commit: ba10e6104a8f485ed40345212a325b94369525d1 URL: http://source.winehq.org/git/wine.git/?a=commit;h=ba10e6104a8f485ed40345212a...
Author: Maarten Lankhorst m.b.lankhorst@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; }