mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
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:
parent
2a18fb3546
commit
a9c59c04e7
2 changed files with 7 additions and 1 deletions
|
@ -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>
|
2006-12-20 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
* gst/typefind/gsttypefindfunctions.c: (vivo_type_find),
|
* gst/typefind/gsttypefindfunctions.c: (vivo_type_find),
|
||||||
|
|
|
@ -2644,6 +2644,7 @@ plugin_init (GstPlugin * plugin)
|
||||||
static gchar *flv_exts[] = { "flv", NULL };
|
static gchar *flv_exts[] = { "flv", NULL };
|
||||||
static gchar *m4v_exts[] = { "m4v", NULL };
|
static gchar *m4v_exts[] = { "m4v", NULL };
|
||||||
static gchar *nuv_exts[] = { "nuv", NULL };
|
static gchar *nuv_exts[] = { "nuv", NULL };
|
||||||
|
static gchar *vivo_exts[] = { "viv", NULL };
|
||||||
|
|
||||||
GST_DEBUG_CATEGORY_INIT (type_find_debug, "typefindfunctions",
|
GST_DEBUG_CATEGORY_INIT (type_find_debug, "typefindfunctions",
|
||||||
GST_DEBUG_FG_GREEN | GST_DEBUG_BG_RED, "generic type find functions");
|
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,
|
TYPE_FIND_REGISTER (plugin, "application/x-mmsh", GST_RANK_SECONDARY,
|
||||||
mmsh_type_find, NULL, MMSH_CAPS, NULL, NULL);
|
mmsh_type_find, NULL, MMSH_CAPS, NULL, NULL);
|
||||||
TYPE_FIND_REGISTER (plugin, "video/vivo", GST_RANK_SECONDARY,
|
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;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue