You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.6 KiB
47 lines
1.6 KiB
SUBDIRS = transcode
|
|
|
|
SOURCES_stream_out_dummy = dummy.c
|
|
SOURCES_stream_out_description = description.c
|
|
SOURCES_stream_out_standard = standard.c
|
|
SOURCES_stream_out_duplicate = duplicate.c
|
|
SOURCES_stream_out_es = es.c
|
|
SOURCES_stream_out_display = display.c
|
|
SOURCES_stream_out_gather = gather.c
|
|
SOURCES_stream_out_switcher = switcher.c
|
|
SOURCES_stream_out_bridge = bridge.c
|
|
SOURCES_stream_out_mosaic_bridge = mosaic_bridge.c
|
|
SOURCES_stream_out_autodel = autodel.c
|
|
SOURCES_stream_out_record = record.c
|
|
SOURCES_stream_out_raop = raop.c
|
|
SOURCES_stream_out_smem = smem.c
|
|
|
|
libvlc_LTLIBRARIES += \
|
|
libstream_out_dummy_plugin.la \
|
|
libstream_out_description_plugin.la \
|
|
libstream_out_standard_plugin.la \
|
|
libstream_out_duplicate_plugin.la \
|
|
libstream_out_es_plugin.la \
|
|
libstream_out_display_plugin.la \
|
|
libstream_out_gather_plugin.la \
|
|
libstream_out_bridge_plugin.la \
|
|
libstream_out_mosaic_bridge_plugin.la \
|
|
libstream_out_autodel_plugin.la \
|
|
libstream_out_record_plugin.la \
|
|
libstream_out_smem_plugin.la \
|
|
$(NULL)
|
|
|
|
# RTP plugin
|
|
libvlc_LTLIBRARIES += \
|
|
libstream_out_rtp_plugin.la
|
|
libstream_out_rtp_plugin_la_SOURCES = \
|
|
rtp.c rtp.h rtpfmt.c rtcp.c rtsp.c
|
|
libstream_out_rtp_plugin_la_CFLAGS = $(AM_CFLAGS)
|
|
libstream_out_rtp_plugin_la_LIBADD = $(AM_LIBADD)
|
|
libstream_out_rtp_plugin_la_DEPENDENCIES =
|
|
if HAVE_GCRYPT
|
|
SRTP_CFLAGS = -I$(top_srcdir)/libs/srtp
|
|
SRTP_LIBS = $(top_builddir)/libs/srtp/libvlc_srtp.la
|
|
libstream_out_rtp_plugin_la_CFLAGS += -DHAVE_SRTP $(SRTP_CFLAGS)
|
|
libstream_out_rtp_plugin_la_LIBADD += $(SRTP_LIBS)
|
|
libstream_out_rtp_plugin_la_DEPENDENCIES += $(SRTP_LIBS)
|
|
endif
|
|
|