mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 05:12:09 +00:00
pipeline: Do not name urisink as urisink
as it is useless
And actually harmful in case you are debugging several pipelines. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-editing-services/-/merge_requests/198>
This commit is contained in:
parent
cc490854b5
commit
09a6900d55
1 changed files with 1 additions and 1 deletions
|
@ -1150,7 +1150,7 @@ ges_pipeline_set_render_settings (GESPipeline * pipeline,
|
|||
}
|
||||
|
||||
pipeline->priv->urisink =
|
||||
gst_element_make_from_uri (GST_URI_SINK, output_uri, "urisink", &err);
|
||||
gst_element_make_from_uri (GST_URI_SINK, output_uri, NULL, &err);
|
||||
if (G_UNLIKELY (pipeline->priv->urisink == NULL)) {
|
||||
GST_ERROR_OBJECT (pipeline, "Couldn't not create sink for URI %s: '%s'",
|
||||
output_uri, ((err
|
||||
|
|
Loading…
Reference in a new issue