typefind: Reduce URI typefinder from MAX to LIKELY
authorJan Schmidt <jan@centricular.com>
Thu, 25 Feb 2016 15:56:15 +0000 (02:56 +1100)
committerJan Schmidt <jan@centricular.com>
Thu, 24 Mar 2016 13:58:41 +0000 (00:58 +1100)
Don't claim maximum likelihood for anything that starts
with text that looks like a uri, it's too broad.

gst/typefind/gsttypefindfunctions.c

index e874d56..63e1de9 100644 (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);
   }
 }