One design decision I wanted to call out for discussion was the use of `CoCreateInstance` to create the media foundation color conversion transform. This requires me to call `CoInitialize` and `CoUninitialize`. The alternative to this is to copy the approach used in `ir50_32` - which links against `winegstreamer` and calls `winegstreamer_create_video_decoder` directly. I'd just need to add a new exported function that ultimately calls `color_convert_create`. Obviously the downside to the way I went is the overhead of the `CoInitialize` call; but the upside is there's no direct link between this DLL and `winegstreamer` (so this DLL wouldn't be impacted if that transforms implementation was moved elsewhere). -- https://gitlab.winehq.org/wine/wine/-/merge_requests/10549#note_134891