Mercurial > mplayer.hg
annotate libmpdemux/Makefile @ 21982:fa66a03e8920
Include string.h to make sure memcpy is not used without prototype
author | reimar |
---|---|
date | Tue, 23 Jan 2007 15:28:19 +0000 |
parents | 8c63104755fc |
children | db9f2e48c710 |
rev | line source |
---|---|
21310
3220773a071b
Split muxers into a separate library that only MEncoder is linked against.
diego
parents:
21307
diff
changeset
|
1 |
3220773a071b
Split muxers into a separate library that only MEncoder is linked against.
diego
parents:
21307
diff
changeset
|
2 include ../config.mak |
2311 | 3 |
4 LIBNAME = libmpdemux.a | |
21310
3220773a071b
Split muxers into a separate library that only MEncoder is linked against.
diego
parents:
21307
diff
changeset
|
5 ifeq ($(MENCODER),yes) |
3220773a071b
Split muxers into a separate library that only MEncoder is linked against.
diego
parents:
21307
diff
changeset
|
6 LIBNAME2 = libmpmux.a |
3220773a071b
Split muxers into a separate library that only MEncoder is linked against.
diego
parents:
21307
diff
changeset
|
7 endif |
2311 | 8 |
21337 | 9 SRCS = asfheader.c \ |
15772 | 10 aviheader.c \ |
11 aviprint.c \ | |
21337 | 12 demuxer.c \ |
15772 | 13 demux_aac.c \ |
14 demux_asf.c \ | |
15 demux_audio.c \ | |
16 demux_avi.c \ | |
17 demux_demuxers.c \ | |
18 demux_film.c \ | |
19 demux_fli.c \ | |
20 demux_lmlm4.c \ | |
21 demux_mf.c \ | |
21337 | 22 demux_mkv.c ebml.c \ |
15772 | 23 demux_mov.c \ |
24 demux_mpg.c \ | |
25 demux_nsv.c \ | |
26 demux_nuv.c \ | |
27 demux_pva.c \ | |
28 demux_rawaudio.c \ | |
29 demux_rawvideo.c \ | |
30 demux_realaud.c \ | |
31 demux_real.c \ | |
32 demux_roq.c \ | |
33 demux_smjpeg.c \ | |
34 demux_ts.c \ | |
35 demux_ty.c \ | |
36 demux_ty_osd.c \ | |
37 demux_viv.c \ | |
38 demux_vqf.c \ | |
39 demux_y4m.c \ | |
21337 | 40 extension.c \ |
41 mf.c \ | |
42 mp3_hdr.c \ | |
43 mpeg_hdr.c \ | |
44 mpeg_packetizer.c \ | |
45 parse_es.c \ | |
46 parse_mp4.c \ | |
47 video.c \ | |
48 yuv4mpeg.c \ | |
49 yuv4mpeg_ratio.c \ | |
15772 | 50 |
21275 | 51 SRCS-$(CONFIG_LIBAVFORMAT) += demux_lavf.c |
52 SRCS-$(CONFIG_LIBAVFORMAT_SO) += demux_lavf.c | |
53 SRCS-$(GIF) += demux_gif.c | |
54 SRCS-$(LIBDV) += demux_rawdv.c | |
55 SRCS-$(LIBNUT) += demux_nut.c | |
56 SRCS-$(LIBVORBIS) += demux_ogg.c | |
21767
ff8dbfde335e
don't compile demux_mpc.c when libmpcdec is disabled
aurel
parents:
21420
diff
changeset
|
57 SRCS-$(MUSEPACK) += demux_mpc.c |
21275 | 58 SRCS-$(STREAMING_LIVE555) += demux_rtp.cpp demux_rtp_codec.cpp |
59 SRCS-$(WIN32DLL) += demux_avs.c | |
60 SRCS-$(XMMS_PLUGINS) += demux_xmms.c | |
15772 | 61 |
21310
3220773a071b
Split muxers into a separate library that only MEncoder is linked against.
diego
parents:
21307
diff
changeset
|
62 SRCS2 = muxer.c \ |
15772 | 63 muxer_avi.c \ |
64 muxer_mpeg.c \ | |
65 muxer_rawaudio.c \ | |
66 muxer_rawvideo.c \ | |
67 | |
21310
3220773a071b
Split muxers into a separate library that only MEncoder is linked against.
diego
parents:
21307
diff
changeset
|
68 SRCS2-$(CONFIG_LIBAVFORMAT) += muxer_lavf.c |
3220773a071b
Split muxers into a separate library that only MEncoder is linked against.
diego
parents:
21307
diff
changeset
|
69 SRCS2-$(CONFIG_LIBAVFORMAT_SO) += muxer_lavf.c |
21275 | 70 |
21390
fd1495e1538d
Add libav include paths to CFLAGS without indirection.
diego
parents:
21374
diff
changeset
|
71 CFLAGS = -I../stream -I../loader |
18823
ef667dd373e2
new imported library in libmpdemux: freesdp (will be used by native rtsp demuxer)
ben
parents:
18799
diff
changeset
|
72 |
21390
fd1495e1538d
Add libav include paths to CFLAGS without indirection.
diego
parents:
21374
diff
changeset
|
73 CFLAGS-$(CONFIG_LIBAVUTIL) += -I../libavutil |
fd1495e1538d
Add libav include paths to CFLAGS without indirection.
diego
parents:
21374
diff
changeset
|
74 CFLAGS-$(CONFIG_LIBAVCODEC) += -I../libavcodec |
fd1495e1538d
Add libav include paths to CFLAGS without indirection.
diego
parents:
21374
diff
changeset
|
75 CFLAGS-$(CONFIG_LIBAVFORMAT) += -I../libavformat |
21259
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21247
diff
changeset
|
76 |
21974 | 77 CXXFLAGS = $(subst -Wdeclaration-after-statement,,$(CFLAGS)) -D__STDC_LIMIT_MACROS |
2311 | 78 |
21259
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21247
diff
changeset
|
79 include ../mpcommon.mak |