Sept. 25, 2023
3:19 a.m.
Rémi Bernon (@rbernon) commented about dlls/winegstreamer/wg_transform.c:
case GST_EVENT_CAPS: { GstCaps *caps; + gsize i;
gst_event_parse_caps(event, &caps); + caps = gst_caps_copy(caps); + for (i = 0; i < gst_caps_get_size(caps); ++i) + gst_structure_remove_fields(gst_caps_get_structure(caps, i), + "colorimetry", NULL);
This doesn't seem right, why do we need this? -- https://gitlab.winehq.org/wine/wine/-/merge_requests/3938#note_46587