]> git.sesse.net Git - vlc/blob - modules/mux/Modules.am
DirectSound: list devices (fixes #7868)
[vlc] / modules / mux / Modules.am
1 SOURCES_mux_dummy = dummy.c
2 SOURCES_mux_avi = avi.c
3 SOURCES_mux_ogg = ogg.c
4 SOURCES_mux_mp4 = mp4.c
5 SOURCES_mux_asf = asf.c ../demux/asf/libasf_guid.h
6 SOURCES_mux_wav = wav.c
7 SOURCES_mux_mpjpeg = mpjpeg.c
8
9 libvlc_LTLIBRARIES += \
10         libmux_dummy_plugin.la \
11         libmux_avi_plugin.la \
12         libmux_mp4_plugin.la \
13         libmux_asf_plugin.la \
14         libmux_wav_plugin.la \
15         libmux_mpjpeg_plugin.la \
16         $(NULL)
17
18 libmux_ps_plugin_la_SOURCES = \
19         mpeg/pes.c mpeg/pes.h \
20         mpeg/ps.c mpeg/bits.h
21 libmux_ps_plugin_la_CFLAGS = $(AM_CLFAGS)
22 libmux_ps_plugin_la_LIBADD = $(AM_LIBADD)
23 libvlc_LTLIBRARIES += libmux_ps_plugin.la
24
25 libmux_ts_plugin_la_SOURCES = \
26         mpeg/pes.c mpeg/pes.h \
27         mpeg/csa.c mpeg/csa.h \
28         mpeg/ts.c mpeg/bits.h
29 libmux_ts_plugin_la_CFLAGS = $(AM_CFLAGS) $(DVBPSI_CFLAGS)
30 libmux_ts_plugin_la_LIBADD = $(AM_LIBADD) $(DVBPSI_LIBS)
31 if HAVE_DVBPSI
32 libvlc_LTLIBRARIES += libmux_ts_plugin.la
33 endif