]> git.sesse.net Git - vlc/blob - modules/stream_filter/Makefile.am
sd: remove recursion
[vlc] / modules / stream_filter / Makefile.am
1 include $(top_srcdir)/modules/common.am
2 stream_filterdir = $(pluginsdir)/stream_filter
3
4 stream_filter_LTLIBRARIES =
5
6 libdecomp_plugin_la_SOURCES = decomp.c
7 if !HAVE_WIN32
8 stream_filter_LTLIBRARIES += libdecomp_plugin.la
9 endif
10
11 libdash_plugin_la_SOURCES = \
12     dash/adaptationlogic/AbstractAdaptationLogic.cpp \
13     dash/adaptationlogic/AbstractAdaptationLogic.h \
14     dash/adaptationlogic/AdaptationLogicFactory.cpp \
15     dash/adaptationlogic/AdaptationLogicFactory.h \
16     dash/adaptationlogic/AlwaysBestAdaptationLogic.cpp \
17     dash/adaptationlogic/AlwaysBestAdaptationLogic.h \
18     dash/adaptationlogic/IAdaptationLogic.h \
19     dash/adaptationlogic/IDownloadRateObserver.h \
20     dash/adaptationlogic/RateBasedAdaptationLogic.h \
21     dash/adaptationlogic/RateBasedAdaptationLogic.cpp \
22     dash/buffer/BlockBuffer.cpp \
23     dash/buffer/BlockBuffer.h \
24     dash/buffer/IBufferObserver.h \
25     dash/http/Chunk.cpp \
26     dash/http/Chunk.h \
27     dash/http/HTTPConnection.cpp \
28     dash/http/HTTPConnection.h \
29     dash/http/HTTPConnectionManager.cpp \
30     dash/http/HTTPConnectionManager.h \
31     dash/http/IHTTPConnection.h \
32     dash/http/PersistentConnection.cpp \
33     dash/http/PersistentConnection.h \
34     dash/mpd/AdaptationSet.cpp \
35     dash/mpd/AdaptationSet.h \
36     dash/mpd/BaseUrl.h \
37     dash/mpd/BasicCMManager.cpp \
38     dash/mpd/BasicCMManager.h \
39     dash/mpd/BasicCMParser.cpp \
40     dash/mpd/BasicCMParser.h \
41     dash/mpd/CommonAttributesElements.cpp \
42     dash/mpd/CommonAttributesElements.h \
43     dash/mpd/ContentDescription.cpp \
44     dash/mpd/ContentDescription.h \
45     dash/mpd/IMPDManager.h \
46     dash/mpd/IMPDParser.h \
47     dash/mpd/IsoffMainParser.cpp \
48     dash/mpd/IsoffMainParser.h \
49     dash/mpd/IsoffMainManager.cpp \
50     dash/mpd/IsoffMainManager.h \
51     dash/mpd/MPD.cpp \
52     dash/mpd/MPD.h \
53     dash/mpd/MPDFactory.cpp \
54     dash/mpd/MPDFactory.h \
55     dash/mpd/MPDManagerFactory.cpp \
56     dash/mpd/MPDManagerFactory.h \
57     dash/mpd/Period.cpp \
58     dash/mpd/Period.h \
59     dash/mpd/ProgramInformation.cpp \
60     dash/mpd/ProgramInformation.h \
61     dash/mpd/Representation.cpp \
62     dash/mpd/Representation.h \
63     dash/mpd/Segment.cpp \
64     dash/mpd/Segment.h \
65     dash/mpd/SegmentBase.cpp \
66     dash/mpd/SegmentBase.h \
67     dash/mpd/SegmentInfo.cpp \
68     dash/mpd/SegmentInfo.h \
69     dash/mpd/SegmentInfoCommon.cpp \
70     dash/mpd/SegmentInfoCommon.h \
71     dash/mpd/SegmentInfoDefault.cpp \
72     dash/mpd/SegmentInfoDefault.h \
73     dash/mpd/SegmentList.cpp \
74     dash/mpd/SegmentList.h \
75     dash/mpd/SegmentTemplate.cpp \
76     dash/mpd/SegmentTemplate.h \
77     dash/mpd/SegmentTimeline.cpp \
78     dash/mpd/SegmentTimeline.h \
79     dash/mpd/TrickModeType.cpp \
80     dash/mpd/TrickModeType.h \
81     dash/xml/DOMHelper.cpp \
82     dash/xml/DOMHelper.h \
83     dash/xml/DOMParser.cpp \
84     dash/xml/DOMParser.h \
85     dash/xml/Node.cpp \
86     dash/xml/Node.h \
87     dash/dash.cpp \
88     dash/DASHDownloader.cpp \
89     dash/DASHDownloader.h \
90     dash/DASHManager.cpp \
91     dash/DASHManager.h \
92     dash/Helper.cpp \
93     dash/Helper.h
94 libdash_plugin_la_CXXFLAGS = $(AM_CFLAGS) -I$(srcdir)/dash
95 libdash_plugin_la_LIBADD = $(SOCKET_LIBS)
96 stream_filter_LTLIBRARIES += libdash_plugin.la
97
98 libsmooth_plugin_la_SOURCES = \
99     smooth/smooth.c \
100     smooth/utils.c \
101     smooth/downloader.c \
102     smooth/smooth.h
103
104 libsmooth_plugin_la_CFLAGS = $(AM_CFLAGS)
105 stream_filter_LTLIBRARIES += libsmooth_plugin.la
106
107 libhttplive_plugin_la_SOURCES = httplive.c
108 libhttplive_plugin_la_CFLAGS = $(AM_CFLAGS) $(GCRYPT_CFLAGS)
109 libhttplive_plugin_la_LIBADD = $(GCRYPT_LIBS) -lgpg-error
110 if HAVE_GCRYPT
111 stream_filter_LTLIBRARIES += libhttplive_plugin.la
112 endif
113
114 librecord_plugin_la_SOURCES = record.c
115 stream_filter_LTLIBRARIES += librecord_plugin.la