From 6b016ab6f011e42fac0e3830b5b44166deda807e Mon Sep 17 00:00:00 2001 From: Jens Granseuer Date: Thu, 3 Aug 2006 09:01:25 +0000 Subject: [PATCH] gst/typefind/gsttypefindfunctions.c: Add typefinder for Interplay's MVE format (#348973). Original commit message from CVS: Patch by: Jens Granseuer * gst/typefind/gsttypefindfunctions.c: (plugin_init): Add typefinder for Interplay's MVE format (#348973). --- ChangeLog | 7 +++++++ gst/typefind/gsttypefindfunctions.c | 4 ++++ 2 files changed, 11 insertions(+) diff --git a/ChangeLog b/ChangeLog index 47e3f10..bc4b5c2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2006-08-03 Tim-Philipp Müller + + Patch by: Jens Granseuer + + * gst/typefind/gsttypefindfunctions.c: (plugin_init): + Add typefinder for Interplay's MVE format (#348973). + 2006-08-02 Wim Taymans Patch by: Marcel Moreaux diff --git a/gst/typefind/gsttypefindfunctions.c b/gst/typefind/gsttypefindfunctions.c index 7c73b97..68becc6 100644 --- a/gst/typefind/gsttypefindfunctions.c +++ b/gst/typefind/gsttypefindfunctions.c @@ -2417,6 +2417,7 @@ plugin_init (GstPlugin * plugin) static gchar *bmp_exts[] = { "bmp", NULL }; static gchar *tiff_exts[] = { "tif", "tiff", NULL }; static gchar *matroska_exts[] = { "mkv", "mka", NULL }; + static gchar *mve_exts[] = { "mve", NULL }; static gchar *dv_exts[] = { "dv", "dif", NULL }; static gchar *amr_exts[] = { "amr", NULL }; static gchar *ilbc_exts[] = { "ilbc", NULL }; @@ -2556,6 +2557,9 @@ plugin_init (GstPlugin * plugin) tiff_exts, TIFF_CAPS, NULL, NULL); TYPE_FIND_REGISTER (plugin, "video/x-matroska", GST_RANK_PRIMARY, matroska_type_find, matroska_exts, MATROSKA_CAPS, NULL, NULL); + TYPE_FIND_REGISTER_START_WITH (plugin, "video/x-mve", GST_RANK_SECONDARY, + mve_exts, "Interplay MVE File\032\000\032\000\000\001\063\021", 26, + GST_TYPE_FIND_MAXIMUM); TYPE_FIND_REGISTER (plugin, "video/x-dv", GST_RANK_SECONDARY, dv_type_find, dv_exts, DV_CAPS, NULL, NULL); TYPE_FIND_REGISTER_START_WITH (plugin, "audio/x-amr-nb-sh", GST_RANK_PRIMARY, -- 2.7.4