summaryrefslogtreecommitdiffstats
path: root/ext/esd/gstesd.c
diff options
context:
space:
mode:
authorArwed v. Merkatz <v.merkatz@gmx.net>2005-05-10 20:10:43 +0000
committerArwed v. Merkatz <v.merkatz@gmx.net>2005-05-10 20:10:43 +0000
commit1795f7782acbcac938062229c554f7bb6c73535c (patch)
treeed6187dcf78495f22f6946974493d939394746ef /ext/esd/gstesd.c
parent4eb7e48ab13d029f96177d92aa72edda02527962 (diff)
Ported esdsink plugin.
Original commit message from CVS: Ported esdsink plugin.
Diffstat (limited to 'ext/esd/gstesd.c')
-rw-r--r--ext/esd/gstesd.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/ext/esd/gstesd.c b/ext/esd/gstesd.c
index 4ee03364..16bf9ff5 100644
--- a/ext/esd/gstesd.c
+++ b/ext/esd/gstesd.c
@@ -22,7 +22,9 @@
#include "config.h"
#endif
#include "esdsink.h"
+#if 0
#include "esdmon.h"
+#endif
GST_DEBUG_CATEGORY (esd_debug);
@@ -31,16 +33,20 @@ plugin_init (GstPlugin * plugin)
{
gboolean ret;
+#if 0
if (!gst_library_load ("gstaudio"))
return FALSE;
+#endif
ret = gst_esdsink_factory_init (plugin);
if (ret == FALSE)
return FALSE;
+#if 0
ret = gst_esdmon_factory_init (plugin);
if (ret == FALSE)
return FALSE;
+#endif
GST_DEBUG_CATEGORY_INIT (esd_debug, "esd", 0, "ESounD elements");
return TRUE;