From 7e8ae7f5bd23a425674180df138d3dcc3b21afb6 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Sun, 26 Aug 2007 13:59:05 +0000 Subject: Implement full parsing support --- audio/gstbluetooth.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'audio/gstbluetooth.c') diff --git a/audio/gstbluetooth.c b/audio/gstbluetooth.c index 8c07bae3..8b2ca76e 100644 --- a/audio/gstbluetooth.c +++ b/audio/gstbluetooth.c @@ -27,6 +27,7 @@ #include "gstsbcenc.h" #include "gstsbcdec.h" +#include "gstsbcparse.h" #include "gsta2dpsink.h" static GstStaticCaps sbc_caps = GST_STATIC_CAPS("audio/x-sbc"); @@ -62,6 +63,10 @@ static gboolean plugin_init(GstPlugin *plugin) GST_RANK_PRIMARY, GST_TYPE_SBC_DEC) == FALSE) return FALSE; + if (gst_element_register(plugin, "sbcparse", + GST_RANK_PRIMARY, GST_TYPE_SBC_PARSE) == FALSE) + return FALSE; + if (gst_element_register(plugin, "a2dpsink", GST_RANK_PRIMARY, GST_TYPE_A2DP_SINK) == FALSE) return FALSE; -- cgit