quartz/avidec: Don't copy the media time to the output sample.
Signed-off-by: Zebediah Figura <z.figura12@gmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
f0a6cb9111
commit
cd3b23c13c
|
@ -204,11 +204,6 @@ static HRESULT WINAPI avi_decompressor_sink_Receive(struct strmbase_sink *iface,
|
||||||
else
|
else
|
||||||
IMediaSample_SetTime(pOutSample, NULL, NULL);
|
IMediaSample_SetTime(pOutSample, NULL, NULL);
|
||||||
|
|
||||||
if (IMediaSample_GetMediaTime(pSample, &tStart, &tStop) == S_OK)
|
|
||||||
IMediaSample_SetMediaTime(pOutSample, &tStart, &tStop);
|
|
||||||
else
|
|
||||||
IMediaSample_SetMediaTime(pOutSample, NULL, NULL);
|
|
||||||
|
|
||||||
hr = IMemInputPin_Receive(This->source.pMemInputPin, pOutSample);
|
hr = IMemInputPin_Receive(This->source.pMemInputPin, pOutSample);
|
||||||
if (hr != S_OK && hr != VFW_E_NOT_CONNECTED)
|
if (hr != S_OK && hr != VFW_E_NOT_CONNECTED)
|
||||||
ERR("Error sending sample (%x)\n", hr);
|
ERR("Error sending sample (%x)\n", hr);
|
||||||
|
|
|
@ -911,7 +911,7 @@ static HRESULT WINAPI testsink_Receive(struct strmbase_sink *iface, IMediaSample
|
||||||
}
|
}
|
||||||
|
|
||||||
hr = IMediaSample_GetMediaTime(sample, &start, &stop);
|
hr = IMediaSample_GetMediaTime(sample, &start, &stop);
|
||||||
todo_wine ok(hr == VFW_E_MEDIA_TIME_NOT_SET, "Got hr %#x.\n", hr);
|
ok(hr == VFW_E_MEDIA_TIME_NOT_SET, "Got hr %#x.\n", hr);
|
||||||
hr = IMediaSample_IsDiscontinuity(sample);
|
hr = IMediaSample_IsDiscontinuity(sample);
|
||||||
todo_wine_if (testmode == 5) ok(hr == (testmode == 4) ? S_OK : S_FALSE, "Got hr %#x.\n", hr);
|
todo_wine_if (testmode == 5) ok(hr == (testmode == 4) ? S_OK : S_FALSE, "Got hr %#x.\n", hr);
|
||||||
hr = IMediaSample_IsPreroll(sample);
|
hr = IMediaSample_IsPreroll(sample);
|
||||||
|
|
Loading…
Reference in New Issue