mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-11 13:30:02 -05:00
bluetooth: Add a generic GStreamer codec module
This adds a generic gstreamer codec module based on which other bluetooth codecs viz. aptX, aptX-HD, LDAC and AAC can be supported. The GStreamer codec plugins used here themselves depend on the native codec implementation. aptX/aptX-HD -> libopenaptx LDAC -> libldac AAC -> Fraunhofer FDK AAC Part-of: <https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/merge_requests/440>
This commit is contained in:
parent
3447335da9
commit
a407e9aafa
5 changed files with 828 additions and 1 deletions
|
|
@ -20,13 +20,18 @@ if get_option('bluez5-ofono-headset')
|
|||
libbluez5_util_sources += [ 'backend-ofono.c' ]
|
||||
endif
|
||||
|
||||
if have_bluez5_gstreamer
|
||||
libbluez5_util_headers += [ 'a2dp-codec-gst.h' ]
|
||||
libbluez5_util_sources += [ 'a2dp-codec-gst.c' ]
|
||||
endif
|
||||
|
||||
libbluez5_util = shared_library('bluez5-util',
|
||||
libbluez5_util_sources,
|
||||
libbluez5_util_headers,
|
||||
c_args : [pa_c_args, server_c_args],
|
||||
link_args : [nodelete_link_args],
|
||||
include_directories : [configinc, topinc],
|
||||
dependencies : [libpulse_dep, libpulsecommon_dep, libpulsecore_dep, dbus_dep, sbc_dep, libintl_dep],
|
||||
dependencies : [libpulse_dep, libpulsecommon_dep, libpulsecore_dep, dbus_dep, sbc_dep, libintl_dep, bluez5_gst_dep, bluez5_gstapp_dep],
|
||||
install : true,
|
||||
install_rpath : privlibdir,
|
||||
install_dir : modlibexecdir,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue