Mercurial > mplayer.hg
annotate libmpdemux/Makefile @ 18965:24ae1f262dc2
make prefix const. Patch by Stefan Huehner, stefan AT huehner-org
author | reynaldo |
---|---|
date | Sun, 09 Jul 2006 03:42:35 +0000 |
parents | 8e16d54a788e |
children | 73b8f5ff772d |
rev | line source |
---|---|
2311 | 1 |
2 LIBNAME = libmpdemux.a | |
3 | |
4 include ../config.mak | |
5 | |
15772 | 6 # Headers and header-dumpers |
7 SRCS = mp3_hdr.c \ | |
8 mpeg_hdr.c \ | |
9 asfheader.c \ | |
10 aviheader.c \ | |
11 aviprint.c \ | |
12 | |
13 # Core | |
18922
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
14 SRCS += extension.c \ |
15772 | 15 mf.c \ |
16 open.c \ | |
17 url.c \ | |
18 video.c \ | |
19 | |
18922
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
20 ifeq ($(STREAM_CACHE),yes) |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
21 SRCS += cache2.c |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
22 endif |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
23 |
15772 | 24 # Miscellaneous |
18922
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
25 SRCS += cdinfo.c \ |
15772 | 26 cue_read.c \ |
27 parse_es.c \ | |
28 parse_mp4.c \ | |
29 yuv4mpeg.c \ | |
30 yuv4mpeg_ratio.c \ | |
31 | |
18922
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
32 ifeq ($(CDDA),yes) |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
33 SRCS += cdda.c |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
34 ifeq ($(MPLAYER_NETWORK),yes) |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
35 SRCS += cddb.c |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
36 endif |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
37 endif |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
38 |
15772 | 39 # Stream readers/writers |
40 SRCS += stream.c \ | |
41 stream_file.c \ | |
42 stream_null.c \ | |
43 | |
18921 | 44 ifeq ($(HAVE_DVD),yes) |
45 SRCS += stream_dvd.c | |
46 endif | |
18922
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
47 ifeq ($(DVDNAV),yes) |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
48 SRCS += dvdnav_stream.c |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
49 endif |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
50 ifeq ($(VCD),yes) |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
51 SRCS += stream_vcd.c |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
52 endif |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
53 ifeq ($(FTP),yes) |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
54 SRCS += stream_ftp.c |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
55 endif |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
56 ifeq ($(LIBSMBCLIENT),yes) |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
57 SRCS += stream_smb.c |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
58 endif |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
59 ifeq ($(MPLAYER_NETWORK),yes) |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
60 SRCS += stream_netstream.c |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
61 ifeq ($(STREAMING_LIVE555),yes) |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
62 SRCS += stream_livedotcom.c |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
63 endif |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
64 endif |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
65 ifeq ($(VSTREAM),yes) |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
66 SRCS += stream_vstream.c |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
67 endif |
18921 | 68 |
15772 | 69 # TV in |
18922
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
70 ifeq ($(TV),yes) |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
71 SRCS += tv.c frequencies.c tvi_dummy.c |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
72 ifeq ($(TV_BSDBT848),yes) |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
73 SRCS += tvi_bsdbt848.c |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
74 endif |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
75 ifeq ($(TV_V4L2),yes) |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
76 SRCS += tvi_v4l2.c audio_in.c |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
77 endif |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
78 ifeq ($(TV_V4L),yes) |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
79 SRCS += tvi_v4l.c audio_in.c |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
80 endif |
18924 | 81 ifneq ($(TV_V4L)$(TV_V4L2),) |
18922
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
82 ifeq ($(ALSA1X),yes) |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
83 SRCS += ai_alsa1x.c |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
84 endif |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
85 ifeq ($(ALSA9),yes) |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
86 SRCS += ai_alsa.c |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
87 endif |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
88 ifeq ($(OSS),yes) |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
89 SRCS += ai_oss.c |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
90 endif |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
91 endif |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
92 endif |
15772 | 93 |
94 # Demuxers | |
95 SRCS += demuxer.c \ | |
96 demux_aac.c \ | |
97 demux_asf.c \ | |
98 demux_audio.c \ | |
99 demux_avi.c \ | |
100 demux_demuxers.c \ | |
101 demux_film.c \ | |
102 demux_fli.c \ | |
103 demux_lmlm4.c \ | |
104 demux_mf.c \ | |
105 demux_mov.c \ | |
15958
087142ef3a2d
musepack demuxing and decoding support (demuxing is v7 bitstream only).
reimar
parents:
15772
diff
changeset
|
106 demux_mpc.c \ |
15772 | 107 demux_mpg.c \ |
108 demux_nsv.c \ | |
109 demux_nuv.c \ | |
110 demux_pva.c \ | |
111 demux_rawaudio.c \ | |
112 demux_rawvideo.c \ | |
113 demux_realaud.c \ | |
114 demux_real.c \ | |
115 demux_roq.c \ | |
116 demux_smjpeg.c \ | |
117 demux_ts.c \ | |
118 demux_ty.c \ | |
119 demux_ty_osd.c \ | |
120 demux_viv.c \ | |
121 demux_vqf.c \ | |
122 demux_y4m.c \ | |
18404 | 123 demux_mkv.c ebml.c \ |
15772 | 124 |
18922
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
125 ifeq ($(LIBVORBIS),yes) |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
126 SRCS += demux_ogg.c |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
127 endif |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
128 ifeq ($(LIBDV),yes) |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
129 SRCS += demux_rawdv.c |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
130 endif |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
131 ifeq ($(GIF),yes) |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
132 SRCS += demux_gif.c |
d2d9d011203f
Move conditional compilation into the build system.
diego
parents:
18921
diff
changeset
|
133 endif |
8528 | 134 ifeq ($(XMMS_PLUGINS),yes) |
135 SRCS += demux_xmms.c | |
18921 | 136 endif |
15772 | 137 ifneq ($(W32_LIB),) |
138 SRCS += demux_avs.c | |
139 endif | |
140 | |
141 # Muxers | |
17538 | 142 MUXERS = muxer.c \ |
15772 | 143 muxer_avi.c \ |
144 muxer_mpeg.c \ | |
145 muxer_rawaudio.c \ | |
146 muxer_rawvideo.c \ | |
147 | |
16165 | 148 LIBAV_INC = |
149 ifeq ($(CONFIG_LIBAVUTIL),yes) | |
150 LIBAV_INC += -I../libavutil | |
151 endif | |
152 ifeq ($(CONFIG_LIBAVCODEC),yes) | |
153 LIBAV_INC += -I../libavcodec | |
154 endif | |
15772 | 155 ifeq ($(CONFIG_LIBAVFORMAT),yes) |
16165 | 156 LIBAV_INC += -I../libavformat |
17538 | 157 SRCS += demux_lavf.c |
158 MUXERS += muxer_lavf.c | |
17354 | 159 endif |
160 ifeq ($(CONFIG_LIBAVFORMAT_SO),yes) | |
17538 | 161 SRCS += demux_lavf.c |
162 MUXERS += muxer_lavf.c | |
15772 | 163 endif |
164 | |
10121
d42177a0da2a
Changed the STREAMING defines to MPLAYER_NETWORK to avoid name definition clash.
bertrand
parents:
10057
diff
changeset
|
165 ifeq ($(MPLAYER_NETWORK),yes) |
15772 | 166 SRCS += asf_streaming.c \ |
167 http.c \ | |
168 network.c \ | |
169 cookies.c \ | |
170 asf_mmst_streaming.c \ | |
171 pnm.c \ | |
172 rtp.c \ | |
18794
42001f5086d2
new RTSP demuxer dedicated file, based on old code from realrtsp one but intended to be much more generic
ben
parents:
18404
diff
changeset
|
173 rtsp.c \ |
15772 | 174 |
175 SRCS += realrtsp/asmrp.c \ | |
176 realrtsp/real.c \ | |
177 realrtsp/rmff.c \ | |
178 realrtsp/sdpplin.c \ | |
179 realrtsp/xbuffer.c \ | |
180 | |
18799
e16345b97dab
moved generic rtsp related files from realrtsp to librtsp
ben
parents:
18794
diff
changeset
|
181 SRCS += librtsp/rtsp.c \ |
18829
317e0fd394c5
added new native rtsp demuxer code for mpeg-ts over rtp (now both real and non-real servers should be handled)
ben
parents:
18823
diff
changeset
|
182 librtsp/rtsp_rtp.c \ |
18799
e16345b97dab
moved generic rtsp related files from realrtsp to librtsp
ben
parents:
18794
diff
changeset
|
183 librtsp/rtsp_session.c \ |
e16345b97dab
moved generic rtsp related files from realrtsp to librtsp
ben
parents:
18794
diff
changeset
|
184 |
18823
ef667dd373e2
new imported library in libmpdemux: freesdp (will be used by native rtsp demuxer)
ben
parents:
18799
diff
changeset
|
185 SRCS += freesdp/common.c \ |
ef667dd373e2
new imported library in libmpdemux: freesdp (will be used by native rtsp demuxer)
ben
parents:
18799
diff
changeset
|
186 freesdp/errorlist.c \ |
ef667dd373e2
new imported library in libmpdemux: freesdp (will be used by native rtsp demuxer)
ben
parents:
18799
diff
changeset
|
187 freesdp/parser.c \ |
ef667dd373e2
new imported library in libmpdemux: freesdp (will be used by native rtsp demuxer)
ben
parents:
18799
diff
changeset
|
188 |
16572
56a5f69e9b35
"LIVE.COM Streaming Media" is now called "LIVE555 Streaming Media".
rsf
parents:
16165
diff
changeset
|
189 ifeq ($(STREAMING_LIVE555),yes) |
9250 | 190 CPLUSPLUSSRCS = demux_rtp.cpp demux_rtp_codec.cpp |
13997 | 191 CPLUSPLUSINCLUDE = $(LIVE_INCLUDES) |
6910
1a747aee653b
applied live.com streaming patch (-sdp and rtsp:// support) by Ross Finlayson <finlayson@live.com>
arpi
parents:
6474
diff
changeset
|
192 endif |
2311 | 193 endif |
194 | |
9610 | 195 ifeq ($(DVBIN),yes) |
196 SRCS += dvbin.c | |
197 SRCS += dvb_tune.c | |
198 endif | |
199 | |
17538 | 200 ifeq ($(MENCODER),yes) |
201 SRCS += $(MUXERS) | |
202 endif | |
203 | |
2311 | 204 OBJS = $(SRCS:.c=.o) |
6910
1a747aee653b
applied live.com streaming patch (-sdp and rtsp:// support) by Ross Finlayson <finlayson@live.com>
arpi
parents:
6474
diff
changeset
|
205 OBJS += $(CPLUSPLUSSRCS:.cpp=.o) |
13787
e047e70a9767
Handle "xxx.h" vs "../xxx.h" include paths in a consistent way.
diego
parents:
12958
diff
changeset
|
206 INCLUDE = -I.. -I../loader $(CSS_INC) $(EXTRA_INC) $(LIBAV_INC) |
10651
efb6dcac967d
--dvbincdir support by Gotz Waschk <waschk@informatik.uni-rostock.de>
alex
parents:
10634
diff
changeset
|
207 CFLAGS = $(OPTFLAGS) $(INCLUDE) $(XMMS_CFLAGS) $(CDPARANOIA_INC) $(DVB_INC) |
18137 | 208 CPLUSPLUSFLAGS = $(CFLAGS) $(CPLUSPLUSINCLUDE) -D__STDC_LIMIT_MACROS |
7168
cb1428dd4d79
assume $(CC) can compile c++ - fixes compile with non-default compiler
arpi
parents:
7148
diff
changeset
|
209 CPLUSPLUS = $(CC) |
2311 | 210 |
6910
1a747aee653b
applied live.com streaming patch (-sdp and rtsp:// support) by Ross Finlayson <finlayson@live.com>
arpi
parents:
6474
diff
changeset
|
211 .SUFFIXES: .c .cpp .o |
2311 | 212 |
213 # .PHONY: all clean | |
214 | |
215 all: $(LIBNAME) | |
216 | |
217 .c.o: | |
218 $(CC) -c $(CFLAGS) -o $@ $< | |
6910
1a747aee653b
applied live.com streaming patch (-sdp and rtsp:// support) by Ross Finlayson <finlayson@live.com>
arpi
parents:
6474
diff
changeset
|
219 .cpp.o: |
1a747aee653b
applied live.com streaming patch (-sdp and rtsp:// support) by Ross Finlayson <finlayson@live.com>
arpi
parents:
6474
diff
changeset
|
220 $(CPLUSPLUS) -c $(CPLUSPLUSFLAGS) -o $@ $< |
2311 | 221 |
222 $(LIBNAME): $(OBJS) | |
223 $(AR) r $(LIBNAME) $(OBJS) | |
12632 | 224 $(RANLIB) $(LIBNAME) |
2311 | 225 |
226 test: $(LIBNAME) test.c | |
17943
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17538
diff
changeset
|
227 $(CC) $(CFLAGS) test.c ../mp_msg.c ../osdep/shmem.c -o test \ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17538
diff
changeset
|
228 ./libmpdemux.a ../libmpdvdkit2/libmpdvdkit.a ../libvo/aclib.o \ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17538
diff
changeset
|
229 ../libmpcodecs/img_format.o ../libao2/afmt.o ../sub_cc.o \ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17538
diff
changeset
|
230 ../m_option.o ../subreader.o \ |
c127ce678083
cosmetics: Shorten overly long lines, put SRCS/OBJS on individual lines
diego
parents:
17538
diff
changeset
|
231 $(ALSA_LIB) $(VORBIS_LIB) $(CDPARANOIA_LIB) -lz -lpthread |
2311 | 232 |
233 clean: | |
18799
e16345b97dab
moved generic rtsp related files from realrtsp to librtsp
ben
parents:
18794
diff
changeset
|
234 rm -f *.o *.a *~ \ |
e16345b97dab
moved generic rtsp related files from realrtsp to librtsp
ben
parents:
18794
diff
changeset
|
235 realrtsp/*.o realrtsp/*.a realrtsp/*~ \ |
18823
ef667dd373e2
new imported library in libmpdemux: freesdp (will be used by native rtsp demuxer)
ben
parents:
18799
diff
changeset
|
236 librtsp/*.o librtsp/*.a librtsp/*~ \ |
ef667dd373e2
new imported library in libmpdemux: freesdp (will be used by native rtsp demuxer)
ben
parents:
18799
diff
changeset
|
237 freesdp/*.o freesdp/*.a freesdp/*~ |
2311 | 238 |
17488
ce1ba8fd57e7
Make clean/distclean behave uniformly in all directories.
diego
parents:
17354
diff
changeset
|
239 distclean: clean |
ce1ba8fd57e7
Make clean/distclean behave uniformly in all directories.
diego
parents:
17354
diff
changeset
|
240 rm -f .depend test |
2311 | 241 |
242 dep: depend | |
243 | |
244 depend: | |
245 $(CC) -MM $(CFLAGS) test.c $(SRCS) 1>.depend | |
246 | |
247 # | |
248 # include dependency files if they exist | |
249 # | |
250 ifneq ($(wildcard .depend),) | |
251 include .depend | |
252 endif |