From: Thibault Saunier Date: Thu, 22 Apr 2021 02:19:39 +0000 (-0400) Subject: playback: Stop giving "source" as name to sources X-Git-Tag: 1.19.3~511^2~138 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2e13d97dd64e534ba38411c9f9818ef7a889f0ac;p=platform%2Fupstream%2Fgstreamer.git playback: Stop giving "source" as name to sources This makes it very hard to understand what source we are talking about Part-of: --- diff --git a/gst/playback/gsturisourcebin.c b/gst/playback/gsturisourcebin.c index 3dcb784..5a00630 100644 --- a/gst/playback/gsturisourcebin.c +++ b/gst/playback/gsturisourcebin.c @@ -1428,7 +1428,7 @@ gen_source_element (GstURISourceBin * urisrc) if (IS_BLACKLISTED_URI (urisrc->uri)) goto uri_blacklisted; - source = gst_element_make_from_uri (GST_URI_SRC, urisrc->uri, "source", &err); + source = gst_element_make_from_uri (GST_URI_SRC, urisrc->uri, NULL, &err); if (!source) goto no_source;