mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-22 14:06:23 +00:00
rtspsrc: handle NULL control urls better
This commit is contained in:
parent
d2f93e3afc
commit
99a9d2873c
1 changed files with 13 additions and 9 deletions
|
@ -1170,16 +1170,20 @@ find_stream_by_udpsrc (GstRTSPStream * stream, gconstpointer a)
|
|||
static gint
|
||||
find_stream_by_setup (GstRTSPStream * stream, gconstpointer a)
|
||||
{
|
||||
/* check qualified setup_url */
|
||||
if (!strcmp (stream->conninfo.location, (gchar *) a))
|
||||
return 0;
|
||||
/* check original control_url */
|
||||
if (!strcmp (stream->control_url, (gchar *) a))
|
||||
return 0;
|
||||
if (stream->conninfo.location) {
|
||||
/* check qualified setup_url */
|
||||
if (!strcmp (stream->conninfo.location, (gchar *) a))
|
||||
return 0;
|
||||
}
|
||||
if (stream->control_url) {
|
||||
/* check original control_url */
|
||||
if (!strcmp (stream->control_url, (gchar *) a))
|
||||
return 0;
|
||||
|
||||
/* check if qualified setup_url ends with string */
|
||||
if (g_str_has_suffix (stream->control_url, (gchar *) a))
|
||||
return 0;
|
||||
/* check if qualified setup_url ends with string */
|
||||
if (g_str_has_suffix (stream->control_url, (gchar *) a))
|
||||
return 0;
|
||||
}
|
||||
|
||||
return -1;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue