mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-24 06:59:57 -05:00
Start the raop sink. It's based on pipe sink and isn't anywhere near finished. It does however compile.
git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/coling@2335 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
parent
fef102e35a
commit
6570620cc3
2 changed files with 430 additions and 1 deletions
|
|
@ -1004,7 +1004,13 @@ libsocket_util_la_SOURCES = \
|
|||
libsocket_util_la_LDFLAGS = -avoid-version
|
||||
libsocket_util_la_LIBADD = $(AM_LIBADD) $(WINSOCK_LIBS) libpulsecore.la
|
||||
|
||||
librtp_la_SOURCES = modules/rtp/rtp.c modules/rtp/rtp.h modules/rtp/sdp.c modules/rtp/sdp.h modules/rtp/sap.c modules/rtp/sap.h
|
||||
librtp_la_SOURCES = \
|
||||
modules/rtp/rtp.c modules/rtp/rtp.h \
|
||||
modules/rtp/sdp.c modules/rtp/sdp.h \
|
||||
modules/rtp/sap.c modules/rtp/sap.h \
|
||||
modules/rtp/rtsp.c modules/rtp/rtsp.h \
|
||||
modules/rtp/headerlist.c modules/rtp/headerlist.h \
|
||||
modules/rtp/base64.c modules/rtp/base64.h
|
||||
librtp_la_LDFLAGS = -avoid-version
|
||||
librtp_la_LIBADD = $(AM_LIBADD) libpulsecore.la
|
||||
|
||||
|
|
@ -1053,6 +1059,7 @@ modlibexec_LTLIBRARIES += \
|
|||
module-remap-sink.la \
|
||||
module-ladspa-sink.la \
|
||||
module-esound-sink.la \
|
||||
module-raop-sink.la \
|
||||
module-tunnel-sink.la \
|
||||
module-tunnel-source.la \
|
||||
module-position-event-sounds.la
|
||||
|
|
@ -1199,6 +1206,7 @@ SYMDEF_FILES = \
|
|||
modules/module-esound-compat-spawnfd-symdef.h \
|
||||
modules/module-esound-compat-spawnpid-symdef.h \
|
||||
modules/module-match-symdef.h \
|
||||
modules/module-raop-sink-symdef.h \
|
||||
modules/module-tunnel-sink-symdef.h \
|
||||
modules/module-tunnel-source-symdef.h \
|
||||
modules/module-null-sink-symdef.h \
|
||||
|
|
@ -1367,6 +1375,10 @@ module_match_la_SOURCES = modules/module-match.c
|
|||
module_match_la_LDFLAGS = -module -avoid-version
|
||||
module_match_la_LIBADD = $(AM_LIBADD) libpulsecore.la
|
||||
|
||||
module_raop_sink_la_SOURCES = modules/module-raop-sink.c
|
||||
module_raop_sink_la_LDFLAGS = -module -avoid-version
|
||||
module_raop_sink_la_LIBADD = $(AM_LIBADD) libpulsecore.la libiochannel.la librtp.la
|
||||
|
||||
module_tunnel_sink_la_SOURCES = modules/module-tunnel.c
|
||||
module_tunnel_sink_la_CFLAGS = -DTUNNEL_SINK=1 $(AM_CFLAGS)
|
||||
module_tunnel_sink_la_LDFLAGS = -module -avoid-version
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue