summaryrefslogtreecommitdiffstats
path: root/ext/esd/gstesd.c
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2004-01-23 15:34:50 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2004-01-23 15:34:50 +0000
commit88c22f75110e12b72a39611f1b3ef384e18e0710 (patch)
treee2120826f18b8d653213e383a19e566b4112f055 /ext/esd/gstesd.c
parentd2d07f68b2b205106714b3005c2cf986874ba1a6 (diff)
private debugging cat better error reporting
Original commit message from CVS: private debugging cat better error reporting
Diffstat (limited to 'ext/esd/gstesd.c')
-rw-r--r--ext/esd/gstesd.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/esd/gstesd.c b/ext/esd/gstesd.c
index e804b72e..ea480a30 100644
--- a/ext/esd/gstesd.c
+++ b/ext/esd/gstesd.c
@@ -24,6 +24,7 @@
#include "esdsink.h"
#include "esdmon.h"
+GST_DEBUG_CATEGORY (esd_debug);
static gboolean
plugin_init (GstPlugin *plugin)
@@ -38,6 +39,7 @@ plugin_init (GstPlugin *plugin)
ret = gst_esdmon_factory_init(plugin);
if(ret == FALSE) return FALSE;
+ GST_DEBUG_CATEGORY_INIT (esd_debug, "esd", 0, "ESounD elements");
return TRUE;
}