mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-29 18:48:44 +00:00
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:
parent
8212924489
commit
85a08d8dc2
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue