Zebediah Figura (@zfigura) commented about dlls/quartz/tests/mpegsplit.c:
HRESULT hr; hr = IMediaSample_GetTime(sample, &start, &end);
- todo_wine_if (hr == VFW_S_NO_STOP_TIME) ok(hr == S_OK, "Got hr %#lx.\n", hr);
- todo_wine_if (hr == VFW_S_NO_STOP_TIME) {
ok(hr == S_OK || (filter->sample_count > 0 && hr == VFW_E_SAMPLE_TIME_NOT_SET), "Got hr %#lx.\n", hr);
- }
If Windows never sets the sample time for video samples after the first then we should probably make this check more restrictive to explicitly check that.