6 Oct
2023
6 Oct
'23
4:50 a.m.
Zebediah Figura (@zfigura) commented about dlls/winegstreamer/wg_muxer.c:
struct wg_muxer { GstElement *container, *muxer; GstPad *my_sink; + struct list streams; +}; + +struct wg_muxer_stream +{ + struct wg_muxer *muxer; + struct wg_format format; + uint32_t id; + + GstPad *my_src; + GstCaps *my_src_caps; + GstSegment segment; This isn't used yet in this commit.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/3810#note_47812