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

Signed-off-by: Anton Baskanov <baskanov@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Anton Baskanov 2016-02-13 22:12:56 +06:00 committed by Alexandre Julliard
parent e0311318fc
commit f253e6cf93

View file

@ -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;
}