root/modules/stream_out/Modules.am

Revision d4e0e64ed5bceec689ddc6f0ef3a6a045c087289, 1.4 kB (checked in by Laurent Aimar <fenrir@videolan.org>, 2 weeks ago)

Added new stream_out record module.

The record module:

- automatically selects the right muxer and filename extension by
looking the ES codec. In case it fails, it probes directly the
muxers and keeps the better one.

- removes all ES packets until the first key frame.

- truncates the ES without key frame to match the start time of
the other tracks.

  • Property mode set to 100644
Line 
1 SUBDIRS = transrate
2 SOURCES_stream_out_dummy = dummy.c
3 SOURCES_stream_out_description = description.c
4 SOURCES_stream_out_standard = standard.c
5 SOURCES_stream_out_transcode = transcode.c
6 SOURCES_stream_out_duplicate = duplicate.c
7 SOURCES_stream_out_es = es.c
8 SOURCES_stream_out_display = display.c
9 SOURCES_stream_out_gather = gather.c
10 SOURCES_stream_out_switcher = switcher.c
11 SOURCES_stream_out_bridge = bridge.c
12 SOURCES_stream_out_mosaic_bridge = mosaic_bridge.c
13 SOURCES_stream_out_autodel = autodel.c
14 SOURCES_stream_out_record = record.c
15
16 libvlc_LTLIBRARIES += \
17         libstream_out_dummy_plugin.la \
18         libstream_out_description_plugin.la \
19         libstream_out_standard_plugin.la \
20         libstream_out_transcode_plugin.la \
21         libstream_out_duplicate_plugin.la \
22         libstream_out_es_plugin.la \
23         libstream_out_display_plugin.la \
24         libstream_out_gather_plugin.la \
25         libstream_out_bridge_plugin.la \
26         libstream_out_mosaic_bridge_plugin.la \
27         libstream_out_autodel_plugin.la \
28         libstream_out_record_plugin.la \
29         $(NULL)
30
31 if HAVE_LIBGCRYPT
32 # RTP plugin
33 libvlc_LTLIBRARIES += \
34         libstream_out_rtp_plugin.la
35 libstream_out_rtp_plugin_la_SOURCES = \
36         rtp.c rtp.h rtpfmt.c rtcp.c rtsp.c
37 libstream_out_rtp_plugin_la_CFLAGS = $(AM_CFLAGS) -I$(top_srcdir)/libs/srtp
38 libstream_out_rtp_plugin_la_LIBADD = $(AM_LIBADD) \
39         $(top_builddir)/libs/srtp/libvlc_srtp.la
40 libstream_out_rtp_plugin_la_DEPENDENCIES = \
41         $(top_builddir)/libs/srtp/libvlc_srtp.la
42 endif
Note: See TracBrowser for help on using the browser.