30 May
2025
30 May
'25
11 p.m.
Nikolay Sivov (@nsivov) commented about dlls/mf/tests/mf.c:
+ LONGLONG first_sample_time = 0; + PROPVARIANT propvar; + float rate; + BOOL thin; + HRESULT hr; + + hr = MFStartup(MF_VERSION, MFSTARTUP_FULL); + ok(hr == S_OK, "Failed to start up, hr %#lx.\n", hr); + + if (!(source = create_media_source(L"thinning_test.mp4", L"video/mp4"))) + { + todo_wine /* Gitlab CI Debian runner */ + win_skip("MP4 media source is not supported, skipping tests.\n"); + MFShutdown(); + return; + } Why do we need a new file for this test?
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/8184#note_105009