]> git.sesse.net Git - vlc/blob - modules/mux/Modules.am
ogg: use CLOCK_FREQ in muxer
[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 mux_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 mux_LTLIBRARIES += libmux_ps_plugin.la
23
24 libmux_ts_plugin_la_SOURCES = \
25         mpeg/pes.c mpeg/pes.h \
26         mpeg/csa.c mpeg/csa.h \
27         mpeg/ts.c mpeg/bits.h mpeg/dvbpsi_compat.h
28 libmux_ts_plugin_la_CFLAGS = $(AM_CFLAGS) $(DVBPSI_CFLAGS)
29 libmux_ts_plugin_la_LIBADD = $(DVBPSI_LIBS)
30 if HAVE_DVBPSI
31 mux_LTLIBRARIES += libmux_ts_plugin.la
32 endif