quartz: Unset time in dsoundrender if it cannot be obtained.
This commit is contained in:
parent
5b40a664a9
commit
f4a0ca85af
|
@ -342,8 +342,10 @@ static HRESULT WINAPI DSoundRender_Receive(BaseInputPin *pin, IMediaSample * pSa
|
||||||
if (IMediaSample_GetMediaTime(pSample, &tStart, &tStop) == S_OK)
|
if (IMediaSample_GetMediaTime(pSample, &tStart, &tStop) == S_OK)
|
||||||
MediaSeekingPassThru_RegisterMediaTime(This->seekthru_unk, tStart);
|
MediaSeekingPassThru_RegisterMediaTime(This->seekthru_unk, tStart);
|
||||||
hr = IMediaSample_GetTime(pSample, &tStart, &tStop);
|
hr = IMediaSample_GetTime(pSample, &tStart, &tStop);
|
||||||
if (FAILED(hr))
|
if (FAILED(hr)) {
|
||||||
ERR("Cannot get sample time (%x)\n", hr);
|
ERR("Cannot get sample time (%x)\n", hr);
|
||||||
|
tStart = tStop = -1;
|
||||||
|
}
|
||||||
|
|
||||||
IMediaSample_IsDiscontinuity(pSample);
|
IMediaSample_IsDiscontinuity(pSample);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue