mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 11:26:10 +00:00
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:
parent
e0311318fc
commit
f253e6cf93
1 changed files with 5 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue