6 Feb
2023
6 Feb
'23
9:57 a.m.
Rémi Bernon (@rbernon) commented about dlls/winegstreamer/video_decoder.c:
+#include "mfapi.h" +#include "mferror.h" +#include "mfobjects.h" +#include "mftransform.h" + +#include "wine/debug.h" + +WINE_DEFAULT_DEBUG_CHANNEL(mfplat); + +struct video_decoder +{ + IMFTransform IMFTransform_iface; + LONG refcount; + + IMFMediaType *input_type; + IMFMediaType *output_type; You still don't need these. I'll approve the MR anyway as it's not a big deal but feel free to push an update removing them.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/2102#note_23051