Commit daf5fae8 authored by Anton Baskanov's avatar Anton Baskanov Committed by Michael Stefaniuc

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

Signed-off-by: 's avatarAnton Baskanov <baskanov@gmail.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org> (cherry picked from commit f253e6cf) Signed-off-by: 's avatarMichael Stefaniuc <mstefani@winehq.org>
parent ac418d52
......@@ -2610,6 +2610,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