Commit f253e6cf authored by Anton Baskanov's avatar Anton Baskanov Committed by Alexandre Julliard

quartz: Set the result to 1.0 in FilterGraph::GetRate.

parent e0311318
......@@ -2632,6 +2632,11 @@ static HRESULT WINAPI MediaSeeking_GetRate(IMediaSeeking *iface, double *pdRate)
FIXME("(%p/%p)->(%p): stub !!!\n", This, iface, pdRate);
if (!pdRate)
return E_POINTER;
*pdRate = 1.0;
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