mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 06:58:56 +00:00
bluez: Add avdtpsrc/a2dpsrc to build
This commit is contained in:
parent
a3c8c0aed2
commit
adc9d39710
2 changed files with 14 additions and 2 deletions
|
@ -3,7 +3,10 @@ plugin_LTLIBRARIES = libgstbluez.la
|
||||||
libgstbluez_la_SOURCES = \
|
libgstbluez_la_SOURCES = \
|
||||||
bluez-plugin.c \
|
bluez-plugin.c \
|
||||||
gsta2dpsink.c \
|
gsta2dpsink.c \
|
||||||
gstavdtpsink.c
|
gstavdtpsink.c \
|
||||||
|
gsta2dpsrc.c \
|
||||||
|
gstavdtpsrc.c \
|
||||||
|
gstavdtputil.c
|
||||||
|
|
||||||
libgstbluez_la_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) \
|
libgstbluez_la_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) \
|
||||||
$(GST_PLUGINS_BASE_CFLAGS) \
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
||||||
|
@ -23,4 +26,7 @@ libgstbluez_la_LIBTOOLFLAGS = --tag=disable-static
|
||||||
noinst_HEADERS = \
|
noinst_HEADERS = \
|
||||||
a2dp-codecs.h \
|
a2dp-codecs.h \
|
||||||
gsta2dpsink.h \
|
gsta2dpsink.h \
|
||||||
gstavdtpsink.h
|
gstavdtpsink.h \
|
||||||
|
gsta2dpsrc.h \
|
||||||
|
gstavdtpsrc.h \
|
||||||
|
gstavdtputil.h
|
||||||
|
|
|
@ -24,6 +24,8 @@
|
||||||
|
|
||||||
#include "gsta2dpsink.h"
|
#include "gsta2dpsink.h"
|
||||||
#include "gstavdtpsink.h"
|
#include "gstavdtpsink.h"
|
||||||
|
#include "gsta2dpsrc.h"
|
||||||
|
#include "gstavdtpsrc.h"
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
|
@ -34,6 +36,10 @@ plugin_init (GstPlugin * plugin)
|
||||||
gst_element_register (plugin, "avdtpsink",
|
gst_element_register (plugin, "avdtpsink",
|
||||||
GST_RANK_NONE, GST_TYPE_AVDTP_SINK);
|
GST_RANK_NONE, GST_TYPE_AVDTP_SINK);
|
||||||
|
|
||||||
|
gst_element_register (plugin, "a2dpsrc", GST_RANK_NONE, GST_TYPE_A2DP_SRC);
|
||||||
|
|
||||||
|
gst_element_register (plugin, "avdtpsrc", GST_RANK_NONE, GST_TYPE_AVDTP_SRC);
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue