mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-09 08:55:33 +00:00
project: Do not warn when resetting URI to the same one
This commit is contained in:
parent
6b7c658b6a
commit
5ea914a575
1 changed files with 2 additions and 1 deletions
|
@ -190,7 +190,8 @@ ges_project_set_uri (GESProject * project, const gchar * uri)
|
|||
|
||||
priv = project->priv;
|
||||
if (priv->uri) {
|
||||
GST_WARNING_OBJECT (project, "Trying to rest URI, this is prohibited");
|
||||
if (g_strcmp0 (priv->uri, uri))
|
||||
GST_WARNING_OBJECT (project, "Trying to reset URI, this is prohibited");
|
||||
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue