Rémi Bernon (@rbernon) commented about dlls/winegstreamer/wg_parser.c:
static gboolean autoplug_continue_cb(GstElement * decodebin, GstPad *pad, GstCaps * caps, gpointer user) {
- return !caps_is_compressed(caps);
- gboolean ret;
- caps = gst_caps_fixate(gst_caps_copy_nth(caps, 0));
- ret = !caps_is_compressed(caps);
- gst_caps_unref(caps);
- return ret;
I think this could change the behavior and I would leave it aside for now as it's unrelated to the other changes here.
I'm also not sure this is the right fix for this, it only silences the error message.