quartz: Use correct scale for quality control proportion.
Signed-off-by: Andrew Eikum <aeikum@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
db316c1243
commit
b5f2833dbe
|
@ -405,7 +405,7 @@ static HRESULT WINAPI DSoundRender_DoRenderSample(BaseRenderer *iface, IMediaSam
|
|||
else if (jitter < 0)
|
||||
jitter = 0;
|
||||
q.Type = (jitter > 0 ? Famine : Flood);
|
||||
q.Proportion = 1.;
|
||||
q.Proportion = 1000;
|
||||
q.Late = jitter;
|
||||
q.TimeStamp = tStart;
|
||||
IQualityControl_Notify((IQualityControl *)This->renderer.qcimpl, (IBaseFilter*)This, q);
|
||||
|
|
Loading…
Reference in New Issue