On Wed Nov 22 18:12:31 2023 +0000, Rémi Bernon wrote:
GST_WARNING("Too big codec_data value (%u) in %" GST_PTR_FORMAT ".", (UINT)map.size, caps);
(I don't think we use `unsigned` alone anywhere in Wine)
A quick grep reveals https://gitlab.winehq.org/wine/wine/-/blob/master/dlls/dbghelp/msc.c .
It feels wrong to me to put Windows stuff (UINT) and Unix stuff (a GStreamer call) on the same line, but putting Windows and Unix stuff together is kinda the point of Wine, so sure, can do.