From a9c59c04e75655618963ce176aaa744ac3cc89d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Wed, 20 Dec 2006 10:29:58 +0000 Subject: [PATCH] gst/typefind/gsttypefindfunctions.c: Forgot to register the extensions. Original commit message from CVS: * gst/typefind/gsttypefindfunctions.c: (plugin_init): Forgot to register the extensions. --- ChangeLog | 5 +++++ gst/typefind/gsttypefindfunctions.c | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 2404f56ce2..05ef62c41c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-12-20 Tim-Philipp Müller + + * gst/typefind/gsttypefindfunctions.c: (plugin_init): + Forgot to register the extensions. + 2006-12-20 Tim-Philipp Müller * gst/typefind/gsttypefindfunctions.c: (vivo_type_find), diff --git a/gst/typefind/gsttypefindfunctions.c b/gst/typefind/gsttypefindfunctions.c index 0e99abf1b9..05e957f001 100644 --- a/gst/typefind/gsttypefindfunctions.c +++ b/gst/typefind/gsttypefindfunctions.c @@ -2644,6 +2644,7 @@ plugin_init (GstPlugin * plugin) static gchar *flv_exts[] = { "flv", NULL }; static gchar *m4v_exts[] = { "m4v", NULL }; static gchar *nuv_exts[] = { "nuv", NULL }; + static gchar *vivo_exts[] = { "viv", NULL }; GST_DEBUG_CATEGORY_INIT (type_find_debug, "typefindfunctions", GST_DEBUG_FG_GREEN | GST_DEBUG_BG_RED, "generic type find functions"); @@ -2840,7 +2841,7 @@ plugin_init (GstPlugin * plugin) TYPE_FIND_REGISTER (plugin, "application/x-mmsh", GST_RANK_SECONDARY, mmsh_type_find, NULL, MMSH_CAPS, NULL, NULL); TYPE_FIND_REGISTER (plugin, "video/vivo", GST_RANK_SECONDARY, - vivo_type_find, NULL, VIVO_CAPS, NULL, NULL); + vivo_type_find, vivo_exts, VIVO_CAPS, NULL, NULL); return TRUE; }