Re: [PATCH v13 0/7] MR3938: winegstreamer: Implement CLSID_CMpegVideoCodec
16 Oct
2023
16 Oct
'23
11:45 p.m.
Zebediah Figura (@zfigura) commented about dlls/winegstreamer/quartz_transform.c:
+}; + +HRESULT mpeg_video_codec_create(IUnknown *outer, IUnknown **out) +{ + static const struct wg_format output_format = + { + .major_type = WG_MAJOR_TYPE_VIDEO, + .u.video = { + .format = WG_VIDEO_FORMAT_I420, + /* size doesn't matter, this one is only used to check if the GStreamer plugin exists */ + }, + }; + static const struct wg_format input_format = + { + .major_type = WG_MAJOR_TYPE_VIDEO_MPEG1, + .u.video_mpeg1 = {}, You can delete this line.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/3938#note_48907
873
Age (days ago)
873
Last active (days ago)
0 comments
1 participants
participants (1)
-
Zebediah Figura (@zfigura)