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:
Jan Schmidt 2016-02-26 02:56:15 +11:00
parent fd92bdf894
commit 468111ee49

View file

@ -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);
}
}