From 468111ee49418ab970f9cd3a8af5fe1d5657f564 Mon Sep 17 00:00:00 2001 From: Jan Schmidt Date: Fri, 26 Feb 2016 02:56:15 +1100 Subject: [PATCH] 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. --- gst/typefind/gsttypefindfunctions.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/typefind/gsttypefindfunctions.c b/gst/typefind/gsttypefindfunctions.c index e874d56..63e1de9 100644 --- a/gst/typefind/gsttypefindfunctions.c +++ b/gst/typefind/gsttypefindfunctions.c @@ -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); } } -- 2.7.4