quartz: Downgrade a fixme to a warn in dsoundrender.
This commit is contained in:
parent
ed8d95b888
commit
3bda54bb04
|
@ -261,7 +261,7 @@ static HRESULT DSoundRender_Sample(LPVOID iface, IMediaSample * pSample)
|
||||||
ERR("Cannot get sample time (%x)\n", hr);
|
ERR("Cannot get sample time (%x)\n", hr);
|
||||||
|
|
||||||
if (This->rtLastStop != tStart && (IMediaSample_IsDiscontinuity(pSample) == S_FALSE))
|
if (This->rtLastStop != tStart && (IMediaSample_IsDiscontinuity(pSample) == S_FALSE))
|
||||||
FIXME("Unexpected discontinuity: Last: %u.%03u, tStart: %u.%03u\n",
|
WARN("Unexpected discontinuity: Last: %u.%03u, tStart: %u.%03u\n",
|
||||||
(DWORD)(This->rtLastStop / 10000000), (DWORD)((This->rtLastStop / 10000)%1000),
|
(DWORD)(This->rtLastStop / 10000000), (DWORD)((This->rtLastStop / 10000)%1000),
|
||||||
(DWORD)(tStart / 10000000), (DWORD)((tStart / 10000)%1000));
|
(DWORD)(tStart / 10000000), (DWORD)((tStart / 10000)%1000));
|
||||||
This->rtLastStop = tStop;
|
This->rtLastStop = tStop;
|
||||||
|
|
Loading…
Reference in New Issue