24 Feb
2025
24 Feb
'25
1:48 p.m.
Nikolay Sivov (@nsivov) commented about dlls/mfreadwrite/tests/mfplat.c:
static void test_sink_writer_create(void) { + WCHAR temp_path[MAX_PATH], temp_file[MAX_PATH]; IMFSinkWriter *writer; + IMFByteStream *stream; + IMFAttributes *attr; HRESULT hr;
+ GetTempPathW(ARRAY_SIZE(temp_path), temp_path); + GetTempFileNameW(temp_path, L"mf", 0, temp_file); + wcscat(temp_file, L".mp4");
This is not used anywhere. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/7332#note_95725