mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
typefind: Reduce URI typefinder from MAX to LIKELY
Don't claim maximum likelihood for anything that starts with text that looks like a uri, it's too broad.
This commit is contained in:
parent
fd92bdf894
commit
468111ee49
1 changed files with 1 additions and 1 deletions
|
@ -418,7 +418,7 @@ uri_type_find (GstTypeFind * tf, gpointer unused)
|
|||
return;
|
||||
}
|
||||
|
||||
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, URI_CAPS);
|
||||
gst_type_find_suggest (tf, GST_TYPE_FIND_LIKELY, URI_CAPS);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue