Mercurial > libavcodec.hg
annotate Makefile @ 824:371ef113d984 libavcodec
better padding bug detection
author | michaelni |
---|---|
date | Sat, 02 Nov 2002 00:05:06 +0000 |
parents | 32636728f24b |
children | 770578c6c300 |
rev | line source |
---|---|
395 | 1 # |
2 # libavcodec Makefile | |
429 | 3 # (c) 2000, 2001, 2002 Fabrice Bellard |
395 | 4 # |
2 | 5 include ../config.mak |
6 | |
395 | 7 VPATH=$(SRC_PATH)/libavcodec |
8 | |
429 | 9 # NOTE: -I.. is needed to include config.h |
571
0a9259126188
largefile support patch by Roy Sigurd Karlsbakk <roy at karlsbakk.net>
michaelni
parents:
539
diff
changeset
|
10 CFLAGS= $(OPTFLAGS) -Wall -g -DHAVE_AV_CONFIG_H -I.. -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCE |
0 | 11 LDFLAGS= -g |
12 | |
489
b9fcdf9f4420
added installlib target to install static libraries and includes
bellard
parents:
484
diff
changeset
|
13 OBJS= common.o utils.o mem.o allcodecs.o \ |
625
bb6a69f9d409
slow but accurate integer dct from IJG (should be ok with the LGPL as the old DCT is the fast integer DCT from IJG)
michaelni
parents:
623
diff
changeset
|
14 mpegvideo.o h263.o jrevdct.o jfdctfst.o jfdctint.o\ |
23 | 15 mpegaudio.o ac3enc.o mjpeg.o resample.o dsputil.o \ |
0 | 16 motion_est.o imgconvert.o imgresample.o msmpeg4.o \ |
521 | 17 mpeg12.o h263dec.o svq1.o rv10.o mpegaudiodec.o pcm.o simple_idct.o \ |
784 | 18 ratecontrol.o adpcm.o eval.o dv.o error_resilience.o \ |
19 wmadec.o fft.o mdct.o | |
2 | 20 ASM_OBJS= |
0 | 21 |
338 | 22 # currently using liba52 for ac3 decoding |
3
1bdbd869c1f0
added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents:
2
diff
changeset
|
23 ifeq ($(CONFIG_AC3),yes) |
338 | 24 OBJS+= a52dec.o |
25 | |
26 # using builtin liba52 or runtime linked liba52.so.0 | |
429 | 27 ifneq ($(CONFIG_A52BIN),yes) |
338 | 28 OBJS+= liba52/bit_allocate.o liba52/bitstream.o liba52/downmix.o \ |
29 liba52/imdct.o liba52/parse.o | |
3
1bdbd869c1f0
added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents:
2
diff
changeset
|
30 endif |
429 | 31 endif |
0 | 32 |
258
9c975237ec64
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
33 ifeq ($(CONFIG_MP3LAME),yes) |
9c975237ec64
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
34 OBJS += mp3lameaudio.o |
348 | 35 EXTRALIBS += -lmp3lame |
258
9c975237ec64
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
36 endif |
9c975237ec64
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
37 |
636
57b9a37546a0
oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents:
633
diff
changeset
|
38 ifeq ($(CONFIG_VORBIS),yes) |
57b9a37546a0
oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents:
633
diff
changeset
|
39 OBJS += oggvorbis.o |
57b9a37546a0
oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents:
633
diff
changeset
|
40 EXTRALIBS += -lvorbis -lvorbisenc |
57b9a37546a0
oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents:
633
diff
changeset
|
41 endif |
57b9a37546a0
oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents:
633
diff
changeset
|
42 |
252
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
214
diff
changeset
|
43 ifeq ($(TARGET_GPROF),yes) |
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
214
diff
changeset
|
44 CFLAGS+=-p |
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
214
diff
changeset
|
45 LDFLAGS+=-p |
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
214
diff
changeset
|
46 endif |
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
214
diff
changeset
|
47 |
0 | 48 # i386 mmx specific stuff |
2 | 49 ifeq ($(TARGET_MMX),yes) |
74 | 50 OBJS += i386/fdct_mmx.o i386/cputest.o \ |
32 | 51 i386/dsputil_mmx.o i386/mpegvideo_mmx.o \ |
338 | 52 i386/idct_mmx.o i386/motion_est_mmx.o \ |
174
ac5075a55488
new IDCT code by Michael Niedermayer (michaelni@gmx.at) - #define SIMPLE_IDCT to enable
arpi_esp
parents:
138
diff
changeset
|
53 i386/simple_idct_mmx.o |
0 | 54 endif |
55 | |
62 | 56 # armv4l specific stuff |
57 ifeq ($(TARGET_ARCH_ARMV4L),yes) | |
58 ASM_OBJS += armv4l/jrevdct_arm.o | |
730 | 59 OBJS += armv4l/dsputil_arm.o armv4l/mpegvideo_arm.o |
62 | 60 endif |
61 | |
88 | 62 # sun mediaLib specific stuff |
63 # currently only works when libavcodec is used in mplayer | |
64 ifeq ($(HAVE_MLIB),yes) | |
65 OBJS += mlib/dsputil_mlib.o | |
66 CFLAGS += $(MLIB_INC) | |
67 endif | |
68 | |
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
69 # alpha specific stuff |
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
70 ifeq ($(TARGET_ARCH_ALPHA),yes) |
744
2f7da29ede37
Move Alpha optimized IDCT to own file. Based on a patch by Mns
mellum
parents:
730
diff
changeset
|
71 OBJS += alpha/dsputil_alpha.o alpha/mpegvideo_alpha.o \ |
2f7da29ede37
Move Alpha optimized IDCT to own file. Based on a patch by Mns
mellum
parents:
730
diff
changeset
|
72 alpha/simple_idct_alpha.o alpha/motion_est_alpha.o |
705
107a56aa74f5
Add Alpha assembly for pix_abs16x16. Optimized for pca56, no large win
mellum
parents:
689
diff
changeset
|
73 ASM_OBJS += alpha/dsputil_alpha_asm.o alpha/motion_est_mvi_asm.o |
683
aad2dedb8b6a
* Remove -finline-limit=8000 (not supported by gcc 2.95)
mellum
parents:
645
diff
changeset
|
74 CFLAGS += -fforce-addr -freduce-all-givs |
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
75 endif |
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
76 |
623
92e99e506920
first cut at altivec support on darwin patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
612
diff
changeset
|
77 ifeq ($(TARGET_ARCH_POWERPC),yes) |
638
0012f75c92bb
altivec build tidyup patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
636
diff
changeset
|
78 OBJS += ppc/dsputil_ppc.o |
0012f75c92bb
altivec build tidyup patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
636
diff
changeset
|
79 endif |
0012f75c92bb
altivec build tidyup patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
636
diff
changeset
|
80 |
689
efcbfbd18864
ps2 idct patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents:
683
diff
changeset
|
81 ifeq ($(TARGET_MMI),yes) |
721
71f669e9f633
ps2 optimizations update patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents:
705
diff
changeset
|
82 OBJS += ps2/dsputil_mmi.o ps2/idct_mmi.o ps2/mpegvideo_mmi.o |
689
efcbfbd18864
ps2 idct patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents:
683
diff
changeset
|
83 endif |
efcbfbd18864
ps2 idct patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents:
683
diff
changeset
|
84 |
638
0012f75c92bb
altivec build tidyup patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
636
diff
changeset
|
85 ifeq ($(TARGET_ALTIVEC),yes) |
623
92e99e506920
first cut at altivec support on darwin patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
612
diff
changeset
|
86 CFLAGS += -faltivec |
92e99e506920
first cut at altivec support on darwin patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
612
diff
changeset
|
87 OBJS += ppc/dsputil_altivec.o |
92e99e506920
first cut at altivec support on darwin patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
612
diff
changeset
|
88 endif |
92e99e506920
first cut at altivec support on darwin patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
612
diff
changeset
|
89 |
509
cab79946302f
Implement put_pixels_clamped and add_pixels_clamped in Assembler. This
mellum
parents:
489
diff
changeset
|
90 SRCS := $(OBJS:.o=.c) $(ASM_OBJS:.o=.S) |
429 | 91 OBJS := $(OBJS) $(ASM_OBJS) |
2 | 92 |
0 | 93 LIB= libavcodec.a |
136 | 94 ifeq ($(BUILD_SHARED),yes) |
429 | 95 SLIB= libavcodec.so |
136 | 96 endif |
784 | 97 TESTS= imgresample-test dct-test motion-test fft-test |
0 | 98 |
136 | 99 all: $(LIB) $(SLIB) |
429 | 100 |
43 | 101 tests: apiexample cpuid_test $(TESTS) |
0 | 102 |
429 | 103 $(LIB): $(OBJS) |
0 | 104 rm -f $@ |
640 | 105 $(AR) rc $@ $(OBJS) |
106 $(RANLIB) $@ | |
0 | 107 |
429 | 108 $(SLIB): $(OBJS) |
572
5a06c3552026
BeOS patches by "shatty" <shatty at myrealbox.com>
michaelni
parents:
571
diff
changeset
|
109 $(CC) $(SHFLAGS) -o $@ $(OBJS) $(EXTRALIBS) |
429 | 110 |
0 | 111 dsputil.o: dsputil.c dsputil.h |
112 | |
784 | 113 # specific sse code |
114 %_sse.o : %_sse.c | |
115 $(CC) $(CFLAGS) -msse -c -o $@ $< | |
116 | |
117 # specific 3dnow code | |
118 %_3dnow.o : %_3dnow.c | |
119 $(CC) $(CFLAGS) -m3dnow -c -o $@ $< | |
120 | |
0 | 121 %.o: %.c |
122 $(CC) $(CFLAGS) -c -o $@ $< | |
123 | |
62 | 124 %.o: %.S |
125 $(CC) $(CFLAGS) -c -o $@ $< | |
126 | |
683
aad2dedb8b6a
* Remove -finline-limit=8000 (not supported by gcc 2.95)
mellum
parents:
645
diff
changeset
|
127 # motion_est_alpha uses the MVI extension, which is not available with |
aad2dedb8b6a
* Remove -finline-limit=8000 (not supported by gcc 2.95)
mellum
parents:
645
diff
changeset
|
128 # -mcpu=ev4 (default) or ev5/ev56. Thus, force -mcpu=pca56 in those |
aad2dedb8b6a
* Remove -finline-limit=8000 (not supported by gcc 2.95)
mellum
parents:
645
diff
changeset
|
129 # cases. |
aad2dedb8b6a
* Remove -finline-limit=8000 (not supported by gcc 2.95)
mellum
parents:
645
diff
changeset
|
130 ifeq ($(TARGET_ARCH_ALPHA),yes) |
aad2dedb8b6a
* Remove -finline-limit=8000 (not supported by gcc 2.95)
mellum
parents:
645
diff
changeset
|
131 alpha/motion_est_alpha.o: alpha/motion_est_alpha.c |
aad2dedb8b6a
* Remove -finline-limit=8000 (not supported by gcc 2.95)
mellum
parents:
645
diff
changeset
|
132 cpu=`echo "$(CFLAGS)" | sed -n 's,.*-mcpu=\([a-zA-Z0-9]*\).*,\1,p'`; \ |
aad2dedb8b6a
* Remove -finline-limit=8000 (not supported by gcc 2.95)
mellum
parents:
645
diff
changeset
|
133 case x"$$cpu" in x|xev[45]*) newcpu=pca56;; *) newcpu=$$cpu;; esac; \ |
aad2dedb8b6a
* Remove -finline-limit=8000 (not supported by gcc 2.95)
mellum
parents:
645
diff
changeset
|
134 echo $(CC) $(CFLAGS) -mcpu=$$newcpu -c -o $@ $<;\ |
aad2dedb8b6a
* Remove -finline-limit=8000 (not supported by gcc 2.95)
mellum
parents:
645
diff
changeset
|
135 $(CC) $(CFLAGS) -mcpu=$$newcpu -c -o $@ $< |
aad2dedb8b6a
* Remove -finline-limit=8000 (not supported by gcc 2.95)
mellum
parents:
645
diff
changeset
|
136 endif |
aad2dedb8b6a
* Remove -finline-limit=8000 (not supported by gcc 2.95)
mellum
parents:
645
diff
changeset
|
137 |
2 | 138 # depend only used by mplayer now |
139 dep: depend | |
140 | |
141 depend: | |
142 $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend | |
143 | |
0 | 144 clean: |
343 | 145 rm -f *.o *~ .depend $(LIB) $(SLIB) *.so i386/*.o i386/*~ \ |
62 | 146 armv4l/*.o armv4l/*~ \ |
88 | 147 mlib/*.o mlib/*~ \ |
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
148 alpha/*.o alpha/*~ \ |
623
92e99e506920
first cut at altivec support on darwin patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
612
diff
changeset
|
149 ppc/*.o ppc/*~ \ |
689
efcbfbd18864
ps2 idct patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents:
683
diff
changeset
|
150 ps2/*.o ps2/*~ \ |
338 | 151 liba52/*.o liba52/*~ \ |
152 apiexample $(TESTS) | |
0 | 153 |
484
f8bbc8976247
in libavcodec/Makefile there is in line 110: "distclean: clean<binary char>"
arpi_esp
parents:
429
diff
changeset
|
154 distclean: clean |
2 | 155 rm -f Makefile.bak .depend |
156 | |
0 | 157 # api example program |
158 apiexample: apiexample.c $(LIB) | |
645 | 159 $(CC) $(CFLAGS) -o $@ $< $(LIB) $(EXTRALIBS) -lm |
0 | 160 |
43 | 161 # cpuid test |
162 cpuid_test: i386/cputest.c | |
163 $(CC) $(CFLAGS) -D__TEST__ -o $@ $< | |
164 | |
0 | 165 # testing progs |
166 | |
167 imgresample-test: imgresample.c | |
644 | 168 $(CC) $(CFLAGS) -DTEST -o $@ $^ -lm |
0 | 169 |
633 | 170 dct-test: dct-test.o jfdctfst.o jfdctint.o i386/fdct_mmx.o\ |
171 fdctref.o jrevdct.o i386/idct_mmx.o simple_idct.o i386/simple_idct_mmx.o | |
607
5762b2d659d2
darwin patches by Heliodoro Tammaro <helio at interactives dot org>
michaelni
parents:
603
diff
changeset
|
172 $(CC) -o $@ $^ -lm |
3
1bdbd869c1f0
added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents:
2
diff
changeset
|
173 |
74 | 174 motion-test: motion_test.o $(LIB) |
644 | 175 $(CC) -o $@ $^ -lm |
74 | 176 |
784 | 177 fft-test: fft-test.o fft.o mdct.o |
178 $(CC) -o $@ $^ -lm | |
179 | |
136 | 180 install: all |
181 ifeq ($(BUILD_SHARED),yes) | |
603
442dede8795b
patch by (Volker Moell <volker-ml at die-moells dot de>)
michaelni
parents:
586
diff
changeset
|
182 install -d $(prefix)/lib |
429 | 183 install -s -m 755 $(SLIB) $(prefix)/lib/libavcodec-$(VERSION).so |
603
442dede8795b
patch by (Volker Moell <volker-ml at die-moells dot de>)
michaelni
parents:
586
diff
changeset
|
184 ln -sf libavcodec-$(VERSION).so $(prefix)/lib/libavcodec.so |
442dede8795b
patch by (Volker Moell <volker-ml at die-moells dot de>)
michaelni
parents:
586
diff
changeset
|
185 ldconfig || true |
429 | 186 mkdir -p $(prefix)/include/ffmpeg |
727
c816782e3161
Fix for source dir != build dir. Patch provided by Mns Rullgrd.
mellum
parents:
724
diff
changeset
|
187 install -m 644 $(VPATH)/avcodec.h $(prefix)/include/ffmpeg/avcodec.h |
c816782e3161
Fix for source dir != build dir. Patch provided by Mns Rullgrd.
mellum
parents:
724
diff
changeset
|
188 install -m 644 $(VPATH)/common.h $(prefix)/include/ffmpeg/common.h |
136 | 189 endif |
489
b9fcdf9f4420
added installlib target to install static libraries and includes
bellard
parents:
484
diff
changeset
|
190 |
b9fcdf9f4420
added installlib target to install static libraries and includes
bellard
parents:
484
diff
changeset
|
191 installlib: all |
b9fcdf9f4420
added installlib target to install static libraries and includes
bellard
parents:
484
diff
changeset
|
192 install -m 644 $(LIB) $(prefix)/lib |
b9fcdf9f4420
added installlib target to install static libraries and includes
bellard
parents:
484
diff
changeset
|
193 mkdir -p $(prefix)/include/ffmpeg |
b9fcdf9f4420
added installlib target to install static libraries and includes
bellard
parents:
484
diff
changeset
|
194 install -m 644 $(SRC_PATH)/libavcodec/avcodec.h $(SRC_PATH)/libavcodec/common.h \ |
b9fcdf9f4420
added installlib target to install static libraries and includes
bellard
parents:
484
diff
changeset
|
195 $(prefix)/include/ffmpeg |
b9fcdf9f4420
added installlib target to install static libraries and includes
bellard
parents:
484
diff
changeset
|
196 |
3
1bdbd869c1f0
added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents:
2
diff
changeset
|
197 # |
1bdbd869c1f0
added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents:
2
diff
changeset
|
198 # include dependency files if they exist |
1bdbd869c1f0
added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents:
2
diff
changeset
|
199 # |
1bdbd869c1f0
added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents:
2
diff
changeset
|
200 ifneq ($(wildcard .depend),) |
1bdbd869c1f0
added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents:
2
diff
changeset
|
201 include .depend |
1bdbd869c1f0
added CONFIG_AC3, CONFIG_MPGLIB, CONFIG_DECODERS and CONFIG_ENCODERS (Arpi: don't forget to put CONFIG_DECODERS in mplayer)
glantau
parents:
2
diff
changeset
|
202 endif |