18 Feb
2026
18 Feb
'26
8:05 p.m.
Esme Povirk (@madewokherd) commented about dlls/windowscodecs/converter.c:
return S_OK;
default: - FIXME("Unimplemented conversion path! (%d)\n", source_format); - return WINCODEC_ERR_UNSUPPORTEDOPERATION; + { + UINT srcstride, srcdatasize; + const BYTE *srcpixel, *srcrow; + BYTE *dstpixel, *srcdata, *dstrow; + INT x, y; + + if (!prc) return S_OK;
We should still pass the request through to `copypixels_to_32bppBGRA` so we know whether conversion to this format is supported. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/10128#note_129922