ext/dvdread/dvdreadsrc.c: Put debug category initialization before use of GST_DEBUG, in order to remove a fatal warni...

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
This commit is contained in:
Thomas Vander Stichele 2006-08-14 09:50:26 +00:00
parent ee9f010eef
commit c06944a4ef
2 changed files with 11 additions and 3 deletions

View file

@ -1,3 +1,11 @@
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):

View file

@ -1572,15 +1572,15 @@ gst_dvd_read_src_do_init (GType dvdreadsrc_type)
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;