5 Dec
2025
5 Dec
'25
8:16 a.m.
Nikolay Sivov (@nsivov) commented about dlls/mf/tests/mf.c:
ok(hr == S_OK, "Unexpected hr %#lx.\n", hr); }
+static void test_media_session_scrubbing(void) +{ + IMFClockStateSink test_seek_clock_sink = {&test_seek_clock_sink_vtbl};
This needs to be allocated and refcounted, it should be accessible when getting out of scope too. We had issues with tests like that, it can cause corruptions and random crashes. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/9646#note_124863