typefinding: fix postscript typefinder probability

Two bytes for a rare format hardly warrants MAXIMUM typefinding
probability, POSSIBLE seems more appropriate.
This commit is contained in:
Tim-Philipp Müller 2009-08-06 09:55:42 +01:00
parent 8212924489
commit 85a08d8dc2

View file

@ -1267,7 +1267,7 @@ postscript_type_find (GstTypeFind * tf, gpointer unused)
if (data[0] == 0x04)
data++;
if (data[0] == '%' && data[1] == '!')
gst_type_find_suggest (tf, GST_TYPE_FIND_MAXIMUM, POSTSCRIPT_CAPS);
gst_type_find_suggest (tf, GST_TYPE_FIND_POSSIBLE, POSTSCRIPT_CAPS);
}