gst/typefind/gsttypefindfunctions.c:

Original commit message from CVS:
* gst/typefind/gsttypefindfunctions.c:
This commit is contained in:
David Schleef 2006-05-04 18:43:58 +00:00
parent 436aad75df
commit b0385ddfd0
2 changed files with 9 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2006-05-04 David Schleef <ds@schleef.org>
* gst/typefind/gsttypefindfunctions.c:
2006-05-03 Jan Schmidt <thaytan@mad.scientist.com>
* gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),

View file

@ -2534,8 +2534,12 @@ plugin_init (GstPlugin * plugin)
ar_type_find, ar_exts, AR_CAPS, NULL, NULL);
TYPE_FIND_REGISTER (plugin, "application/x-ms-dos-executable",
GST_RANK_SECONDARY, msdos_type_find, msdos_exts, MSDOS_CAPS, NULL, NULL);
#if 0
TYPE_FIND_REGISTER_START_WITH (plugin, "video/x-dirac",
GST_RANK_PRIMARY, NULL, "BBCD", 4, GST_TYPE_FIND_LIKELY);
GST_RANK_PRIMARY, NULL, "BBCD", 4, GST_TYPE_FIND_MAXIMUM);
#endif
TYPE_FIND_REGISTER_START_WITH (plugin, "video/x-dirac",
GST_RANK_PRIMARY, NULL, "KW-DIRAC", 8, GST_TYPE_FIND_MAXIMUM);
return TRUE;
}