summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: ee9f010)
raw | patch | inline | side by side (parent: ee9f010)
author | Thomas Vander Stichele <thomas@apestaart.org> | |
Mon, 14 Aug 2006 09:50:26 +0000 (09:50 +0000) | ||
committer | Thomas Vander Stichele <thomas@apestaart.org> | |
Mon, 14 Aug 2006 09:50:26 +0000 (09:50 +0000) |
Original commit message from CVS:
Patch by: Edward Hervey (edward at fluendo dot com)
* ext/dvdread/dvdreadsrc.c: (plugin_init):
Put debug category initialization before use of GST_DEBUG, in order
to remove a fatal warning. Fixes #350895
Patch by: Edward Hervey (edward at fluendo dot com)
* ext/dvdread/dvdreadsrc.c: (plugin_init):
Put debug category initialization before use of GST_DEBUG, in order
to remove a fatal warning. Fixes #350895
ChangeLog | patch | blob | history | |
ext/dvdread/dvdreadsrc.c | patch | blob | history |
diff --git a/ChangeLog b/ChangeLog
index 30cc476928732cd82552abf341051e3396db18d4..dcaad2519c41520e4f7ce37c36e2b5caa4d061a0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
+2006-08-14 Thomas Vander Stichele <thomas at apestaart dot org>
+
+ Patch by: Edward Hervey (edward at fluendo dot com)
+
+ * ext/dvdread/dvdreadsrc.c: (plugin_init):
+ Put debug category initialization before use of GST_DEBUG, in order
+ to remove a fatal warning. Fixes #350895
+
2006-08-08 Tim-Philipp Müller <tim at centricular dot net>
* gst/dvdsub/gstdvdsubdec.c: (plugin_init):
index cbcbfa6f9a99aaa49626e85d22cc5dc9ff495d53..c915980df956b6fe9474cb5b58bf7ab4946381e8 100644 (file)
--- a/ext/dvdread/dvdreadsrc.c
+++ b/ext/dvdread/dvdreadsrc.c
static gboolean
plugin_init (GstPlugin * plugin)
{
+ GST_DEBUG_CATEGORY_INIT (gstgst_dvd_read_src_debug, "dvdreadsrc", 0,
+ "DVD reader element based on dvdreadsrc");
+
#ifdef ENABLE_NLS
GST_DEBUG ("binding text domain %s to locale dir %s", GETTEXT_PACKAGE,
LOCALEDIR);
bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
#endif /* ENABLE_NLS */
- GST_DEBUG_CATEGORY_INIT (gstgst_dvd_read_src_debug, "dvdreadsrc", 0,
- "DVD reader element based on dvdreadsrc");
-
if (!gst_element_register (plugin, "dvdreadsrc", GST_RANK_SECONDARY,
GST_TYPE_DVD_READ_SRC)) {
return FALSE;