Mercurial > libavformat.hg
annotate Makefile @ 1107:921c8af78310 libavformat
probe for mpeg audio
author | mru |
---|---|
date | Mon, 05 Jun 2006 22:41:14 +0000 |
parents | 97f5988fe362 |
children | 95054d76b7e6 |
rev | line source |
---|---|
0 | 1 # |
2 # libavformat Makefile | |
251 | 3 # (c) 2000-2003 Fabrice Bellard |
0 | 4 # |
5 include ../config.mak | |
6 | |
830
27ca9c7cabc7
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
818
diff
changeset
|
7 CFLAGS=$(OPTFLAGS) -I.. -I$(SRC_PATH) -I$(SRC_PATH)/libavutil -I$(SRC_PATH)/libavcodec -DHAVE_AV_CONFIG_H -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCE |
0 | 8 |
958 | 9 OBJS= utils.o cutils.o os_support.o allformats.o |
10 CPPOBJS= | |
918 | 11 |
958 | 12 HEADERS = avformat.h avio.h rtp.h rtsp.h rtspcodes.h |
0 | 13 |
905
dbc0145bbf11
Add --disable-protocols option to configure to disable I/O protocol from
diego
parents:
900
diff
changeset
|
14 # demuxers |
497 | 15 OBJS+=mpeg.o mpegts.o mpegtsenc.o ffm.o crc.o img.o img2.o raw.o rm.o \ |
818
b1d7ee1c792d
Yamaha SMAF file format support patch by (Vidar Madsen: vidarino, gmail com)
michael
parents:
813
diff
changeset
|
16 avienc.o avidec.o wav.o mmf.o swf.o au.o gif.o mov.o mpjpeg.o dv.o \ |
905
dbc0145bbf11
Add --disable-protocols option to configure to disable I/O protocol from
diego
parents:
900
diff
changeset
|
17 yuv4mpeg.o 4xm.o flvdec.o psxstr.o idroq.o ipmovie.o \ |
338 | 18 nut.o wc3movie.o mp3.o westwood.o segafilm.o idcin.o flic.o \ |
905
dbc0145bbf11
Add --disable-protocols option to configure to disable I/O protocol from
diego
parents:
900
diff
changeset
|
19 sierravmd.o matroska.o sol.o electronicarts.o nsvdec.o asf.o \ |
937 | 20 ogg2.o oggparsevorbis.o oggparsetheora.o oggparseflac.o daud.o aiff.o \ |
1076 | 21 voc.o tta.o mm.o avs.o smacker.o nuv.o oggparseogm.o |
905
dbc0145bbf11
Add --disable-protocols option to configure to disable I/O protocol from
diego
parents:
900
diff
changeset
|
22 |
dbc0145bbf11
Add --disable-protocols option to configure to disable I/O protocol from
diego
parents:
900
diff
changeset
|
23 # muxers |
dbc0145bbf11
Add --disable-protocols option to configure to disable I/O protocol from
diego
parents:
900
diff
changeset
|
24 ifeq ($(CONFIG_MUXERS),yes) |
939 | 25 OBJS+= flvenc.o movenc.o asf-enc.o adtsenc.o |
905
dbc0145bbf11
Add --disable-protocols option to configure to disable I/O protocol from
diego
parents:
900
diff
changeset
|
26 endif |
dbc0145bbf11
Add --disable-protocols option to configure to disable I/O protocol from
diego
parents:
900
diff
changeset
|
27 |
dbc0145bbf11
Add --disable-protocols option to configure to disable I/O protocol from
diego
parents:
900
diff
changeset
|
28 |
1069 | 29 ifeq ($(AMR),yes) |
30 OBJS+= amr.o | |
278
1344cea6e2a8
make it compatible with older make (debian stable - make 3.79.1)
alex
parents:
274
diff
changeset
|
31 endif |
146 | 32 |
20 | 33 # image formats |
382
37a29b5200d8
added SGI image format, encoding and decoding, courtesy of Todd Kirby
melanson
parents:
380
diff
changeset
|
34 OBJS+= pnm.o yuv.o png.o jpeg.o gifdec.o sgi.o |
885 | 35 OBJS+= framehook.o |
0 | 36 |
37 ifeq ($(CONFIG_VIDEO4LINUX),yes) | |
38 OBJS+= grab.o | |
39 endif | |
40 | |
921 | 41 ifeq ($(CONFIG_VIDEO4LINUX2),yes) |
42 OBJS+= v4l2.o | |
43 endif | |
44 | |
795
391669d461d4
*BSD bktr grab support by (Jacob Meuser: jakemsr, jakemsr com)
michael
parents:
773
diff
changeset
|
45 ifeq ($(CONFIG_BKTR),yes) |
391669d461d4
*BSD bktr grab support by (Jacob Meuser: jakemsr, jakemsr com)
michael
parents:
773
diff
changeset
|
46 OBJS+= grab_bktr.o |
391669d461d4
*BSD bktr grab support by (Jacob Meuser: jakemsr, jakemsr com)
michael
parents:
773
diff
changeset
|
47 endif |
391669d461d4
*BSD bktr grab support by (Jacob Meuser: jakemsr, jakemsr com)
michael
parents:
773
diff
changeset
|
48 |
27
fcdea3df94fe
dv patch by Max Krasnyansky (maxk at qualcomm dot com)
bellard
parents:
26
diff
changeset
|
49 ifeq ($(CONFIG_DV1394),yes) |
fcdea3df94fe
dv patch by Max Krasnyansky (maxk at qualcomm dot com)
bellard
parents:
26
diff
changeset
|
50 OBJS+= dv1394.o |
fcdea3df94fe
dv patch by Max Krasnyansky (maxk at qualcomm dot com)
bellard
parents:
26
diff
changeset
|
51 endif |
fcdea3df94fe
dv patch by Max Krasnyansky (maxk at qualcomm dot com)
bellard
parents:
26
diff
changeset
|
52 |
571 | 53 ifeq ($(CONFIG_DC1394),yes) |
54 OBJS+= dc1394.o | |
55 endif | |
56 | |
0 | 57 ifeq ($(CONFIG_AUDIO_OSS),yes) |
885 | 58 OBJS+= audio.o |
0 | 59 endif |
60 | |
1058
d5efc69f27c6
Have EXTRALIBS appear after other link options, fixes shared build on Cygwin.
diego
parents:
1044
diff
changeset
|
61 EXTRALIBS := -L../libavutil -lavutil$(BUILDSUF) -lavcodec$(BUILDSUF) -L../libavcodec $(EXTRALIBS) |
832 | 62 |
0 | 63 ifeq ($(CONFIG_AUDIO_BEOS),yes) |
958 | 64 CPPOBJS+= beosaudio.o |
0 | 65 endif |
66 | |
905
dbc0145bbf11
Add --disable-protocols option to configure to disable I/O protocol from
diego
parents:
900
diff
changeset
|
67 # protocols I/O |
dbc0145bbf11
Add --disable-protocols option to configure to disable I/O protocol from
diego
parents:
900
diff
changeset
|
68 OBJS+= avio.o aviobuf.o |
dbc0145bbf11
Add --disable-protocols option to configure to disable I/O protocol from
diego
parents:
900
diff
changeset
|
69 |
dbc0145bbf11
Add --disable-protocols option to configure to disable I/O protocol from
diego
parents:
900
diff
changeset
|
70 ifeq ($(CONFIG_PROTOCOLS),yes) |
dbc0145bbf11
Add --disable-protocols option to configure to disable I/O protocol from
diego
parents:
900
diff
changeset
|
71 OBJS+= file.o |
0 | 72 ifeq ($(CONFIG_NETWORK),yes) |
73 OBJS+= udp.o tcp.o http.o rtsp.o rtp.o rtpproto.o | |
57
821a7facb3e4
Fix against C integrists breaks :P (hope I didn't break anything else)
mmu_man
parents:
55
diff
changeset
|
74 # BeOS and Darwin network stuff |
1
464f4e8aa417
More changes to make things compile on more platforms
philipjsg
parents:
0
diff
changeset
|
75 ifeq ($(NEED_INET_ATON),yes) |
0 | 76 OBJS+= barpainet.o |
77 endif | |
78 endif | |
905
dbc0145bbf11
Add --disable-protocols option to configure to disable I/O protocol from
diego
parents:
900
diff
changeset
|
79 endif |
0 | 80 |
682 | 81 ifeq ($(CONFIG_LIBOGG),yes) |
0 | 82 OBJS+= ogg.o |
83 endif | |
84 | |
898
51a83f9981f2
Move library name generation to configure, simplifies build system a bit more.
diego
parents:
897
diff
changeset
|
85 NAME=avformat |
167
e284cddf0509
Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents:
164
diff
changeset
|
86 ifeq ($(BUILD_SHARED),yes) |
897
f957dbf08fcf
Create symbolic links for all library sonames and clean up Makefiles.
diego
parents:
895
diff
changeset
|
87 LIBVERSION=$(LAVFVERSION) |
f957dbf08fcf
Create symbolic links for all library sonames and clean up Makefiles.
diego
parents:
895
diff
changeset
|
88 LIBMAJOR=$(LAVFMAJOR) |
212
84b7fd1abf2c
MingW patches by (Glenn Maynard <g_sf at zewt dot org>)
michaelni
parents:
211
diff
changeset
|
89 endif |
167
e284cddf0509
Shared library for libavformat support patch by (Tim Allen <tim at proximity dot com dot au>)
michaelni
parents:
164
diff
changeset
|
90 |
958 | 91 include $(SRC_PATH)/common.mak |