mirror of
https://github.com/reactos/wine.git
synced 2024-11-29 22:50:43 +00:00
quartz: Add sanity check to mediaseeking setrate.
This commit is contained in:
parent
b0c6a34358
commit
c423511d2e
@ -426,6 +426,12 @@ HRESULT WINAPI MediaSeekingImpl_SetRate(IMediaSeeking * iface, double dRate)
|
||||
|
||||
TRACE("(%e)\n", dRate);
|
||||
|
||||
if (dRate > 100 || dRate < .001)
|
||||
{
|
||||
FIXME("Excessive rate %e, ignoring\n", dRate);
|
||||
return VFW_E_UNSUPPORTED_AUDIO;
|
||||
}
|
||||
|
||||
EnterCriticalSection(This->crst);
|
||||
This->dRate = dRate;
|
||||
if (bChangeRate)
|
||||
|
Loading…
Reference in New Issue
Block a user