Commit ba10e610 authored by Maarten Lankhorst's avatar Maarten Lankhorst Committed by Alexandre Julliard

quartz: Silence seeking fixmes on transform filter.

parent 5fb4224f
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment