[Bug 779765] GstUri: add function to parse uri and set properties to object

GStreamer (GNOME Bugzilla) bugzilla at gnome.org
Thu Mar 9 09:01:20 UTC 2017


https://bugzilla.gnome.org/show_bug.cgi?id=779765

--- Comment #5 from Marc Leeman <marc.leeman at gmail.com> ---


> That presents a usability problem and would be a change in behaviour if
> added to all elements that support uris.
> 
> With an object that has a debug boolean property.
> 
> g_object_set (o, "uri", "prot://location?debug=1", "debug", FALSE, NULL);
> behaves differently to
> g_object_set (o, "debug", FALSE, "uri", "prot://location?debug=1", NULL);
> when they really shouldn't.

Well, it is the same as saying that:

g_object_set(o, "prop", TRUE, NULL);
g_object_set(o, "prop", FALSE, NULL);

is behaving differently as

g_object_set(o, "prop", FALSE, NULL);
g_object_set(o, "prop", TRUE, NULL);

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
You are the assignee for the bug.


More information about the gstreamer-bugs mailing list