Module: wine Branch: master Commit: f253e6cf9395c5895920ea4f09bd0994d253483e URL: http://source.winehq.org/git/wine.git/?a=commit;h=f253e6cf9395c5895920ea4f09...
Author: Anton Baskanov baskanov@gmail.com Date: Sat Feb 13 22:12:56 2016 +0600
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
---
dlls/quartz/filtergraph.c | 5 +++++ 1 file changed, 5 insertions(+)
diff --git a/dlls/quartz/filtergraph.c b/dlls/quartz/filtergraph.c index 5cb670e..39fa783 100644 --- a/dlls/quartz/filtergraph.c +++ b/dlls/quartz/filtergraph.c @@ -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; }