quartz: Downgrade a fixme to a warn in dsoundrender.

This commit is contained in:
Maarten Lankhorst 2008-06-23 20:10:19 -07:00 committed by Alexandre Julliard
parent ed8d95b888
commit 3bda54bb04
1 changed files with 1 additions and 1 deletions

View File

@ -261,7 +261,7 @@ static HRESULT DSoundRender_Sample(LPVOID iface, IMediaSample * pSample)
ERR("Cannot get sample time (%x)\n", hr);
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)(tStart / 10000000), (DWORD)((tStart / 10000)%1000));
This->rtLastStop = tStop;