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.
This commit is contained in:
Tim-Philipp Müller 2006-12-20 10:29:58 +00:00
parent 2a18fb3546
commit a9c59c04e7
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2006-12-20 Tim-Philipp Müller <tim at centricular dot net>
* gst/typefind/gsttypefindfunctions.c: (plugin_init):
Forgot to register the extensions.
2006-12-20 Tim-Philipp Müller <tim at centricular dot net>
* gst/typefind/gsttypefindfunctions.c: (vivo_type_find),

View file

@ -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;
}