mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 00:06:36 +00:00
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:
parent
ee9f010eef
commit
c06944a4ef
2 changed files with 11 additions and 3 deletions
|
@ -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>
|
2006-08-08 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
* gst/dvdsub/gstdvdsubdec.c: (plugin_init):
|
* gst/dvdsub/gstdvdsubdec.c: (plugin_init):
|
||||||
|
|
|
@ -1572,15 +1572,15 @@ gst_dvd_read_src_do_init (GType dvdreadsrc_type)
|
||||||
static gboolean
|
static gboolean
|
||||||
plugin_init (GstPlugin * plugin)
|
plugin_init (GstPlugin * plugin)
|
||||||
{
|
{
|
||||||
|
GST_DEBUG_CATEGORY_INIT (gstgst_dvd_read_src_debug, "dvdreadsrc", 0,
|
||||||
|
"DVD reader element based on dvdreadsrc");
|
||||||
|
|
||||||
#ifdef ENABLE_NLS
|
#ifdef ENABLE_NLS
|
||||||
GST_DEBUG ("binding text domain %s to locale dir %s", GETTEXT_PACKAGE,
|
GST_DEBUG ("binding text domain %s to locale dir %s", GETTEXT_PACKAGE,
|
||||||
LOCALEDIR);
|
LOCALEDIR);
|
||||||
bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
|
bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
|
||||||
#endif /* ENABLE_NLS */
|
#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,
|
if (!gst_element_register (plugin, "dvdreadsrc", GST_RANK_SECONDARY,
|
||||||
GST_TYPE_DVD_READ_SRC)) {
|
GST_TYPE_DVD_READ_SRC)) {
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
Loading…
Reference in a new issue