18 May
2023
18 May
'23
6:51 p.m.
Davide Beatrici (@davidebeatrici) commented about dlls/mmdevapi/client.c:
+ break; + default: + return E_INVALIDARG; + } + + params.device = This->device_name; + params.flow = This->dataflow; + params.share = mode; + params.fmt_in = fmt; + + WINE_UNIX_CALL(is_format_supported, ¶ms); + + if (params.result == S_FALSE) { + *out = ¶ms.fmt_out->Format; + TRACE("Suggesting the following format:\n"); + dump_fmt(*out); This was added by me as I consider the suggested format very useful debug information.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/2855#note_33213