gst/typefind/gsttypefindfunctions.c: NULL-terminate array of mpeg4 video file extensions.

Original commit message from CVS:
* gst/typefind/gsttypefindfunctions.c: (plugin_init):
NULL-terminate array of mpeg4 video file extensions.
Fixes crash on PPC (#334226).
This commit is contained in:
Tim-Philipp Müller 2006-03-11 19:47:16 +00:00
parent 06ee16b3ff
commit a1ffe9cbbc
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2006-03-11 Tim-Philipp Müller <tim at centricular dot net>
* gst/typefind/gsttypefindfunctions.c: (plugin_init):
NULL-terminate array of mpeg4 video file extensions.
Fixes crash on PPC (#334226).
2006-03-11 Tim-Philipp Müller <tim at centricular dot net>
* ext/gnomevfs/gstgnomevfssrc.c:

View file

@ -2245,7 +2245,7 @@ plugin_init (GstPlugin * plugin)
"msstyles", "cpl", NULL
};
static gchar *flv_exts[] = { "flv", NULL };
static gchar *m4v_exts[] = { "m4v" };
static gchar *m4v_exts[] = { "m4v", NULL };
GST_DEBUG_CATEGORY_INIT (type_find_debug, "typefindfunctions",
GST_DEBUG_FG_GREEN | GST_DEBUG_BG_RED, "generic type find functions");