Mercurial > libavcodec.hg
annotate Makefile @ 2689:ed0ab6f82167 libavcodec
clear blocks after each idct instead of per picture
dont store the all zero coefficients of skiped blocks
author | michael |
---|---|
date | Tue, 17 May 2005 00:52:29 +0000 |
parents | 2fe9599170f6 |
children | 4fe1c19fc7a3 |
rev | line source |
---|---|
395 | 1 # |
2 # libavcodec Makefile | |
2542
a27a580f292e
first pass at ALAC decoder from David Hammerton; while David's original
melanson
parents:
2541
diff
changeset
|
3 # (c) 2000-2005 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 |
2541
29263fb4d80b
Support for AMR Interface Format 2 patch by ("Torsten Martinsen" <tma gatehouse dk>)
michael
parents:
2530
diff
changeset
|
10 CFLAGS=$(OPTFLAGS) -DHAVE_AV_CONFIG_H -I.. -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCE $(AMR_CFLAGS) |
0 | 11 |
2398
582e635cfa08
common.c -> bitstream.c (and the single non bitstream func -> utils.c)
michael
parents:
2362
diff
changeset
|
12 OBJS= bitstream.o utils.o mem.o allcodecs.o \ |
1042 | 13 mpegvideo.o jrevdct.o jfdctfst.o jfdctint.o\ |
2085 | 14 mpegaudio.o ac3enc.o mjpeg.o resample.o resample2.o dsputil.o \ |
1042 | 15 motion_est.o imgconvert.o imgresample.o \ |
1383 | 16 mpeg12.o mpegaudiodec.o pcm.o simple_idct.o \ |
2639 | 17 ratecontrol.o adpcm.o eval.o error_resilience.o \ |
18 fft.o mdct.o raw.o golomb.o cabac.o\ | |
19 dpcm.o adx.o rational.o faandct.o parser.o g726.o \ | |
20 vp3dsp.o integer.o h264idct.o rangecoder.o pnm.o h263.o msmpeg4.o h263dec.o | |
21 | |
22 ifeq ($(CONFIG_AASC_DECODER),yes) | |
23 OBJS+= aasc.o | |
24 endif | |
25 ifeq ($(CONFIG_ALAC_DECODER),yes) | |
26 OBJS+= alac.o | |
27 endif | |
28 ifneq ($(CONFIG_ASV1_DECODER)$(CONFIG_ASV1_ENCODER)$(CONFIG_ASV2_DECODER)$(CONFIG_ASV2_ENCODER),) | |
29 OBJS+= asv1.o | |
30 endif | |
31 ifeq ($(CONFIG_CINEPAK_DECODER),yes) | |
32 OBJS+= cinepak.o | |
33 endif | |
34 ifneq ($(CONFIG_CLJR_DECODER)$(CONFIG_CLJR_ENCODER),) | |
35 OBJS+= cljr.o | |
36 endif | |
37 ifeq ($(CONFIG_CYUV_DECODER),yes) | |
38 OBJS+= cyuv.o | |
39 endif | |
40 ifneq ($(CONFIG_DVVIDEO_DECODER)$(CONFIG_DVVIDEO_ENCODER),) | |
41 OBJS+= dv.o | |
42 endif | |
43 ifeq ($(CONFIG_EIGHTBPS_DECODER),yes) | |
44 OBJS+= 8bps.o | |
45 endif | |
46 ifneq ($(CONFIG_FFV1_DECODER)$(CONFIG_FFV1_ENCODER),) | |
47 OBJS+= ffv1.o | |
48 endif | |
49 ifeq ($(CONFIG_FLAC_DECODER),yes) | |
50 OBJS+= flac.o | |
51 endif | |
52 ifeq ($(CONFIG_FLIC_DECODER),yes) | |
53 OBJS+= flicvideo.o | |
54 endif | |
55 ifeq ($(CONFIG_FOURXM_DECODER),yes) | |
56 OBJS+= 4xm.o | |
57 endif | |
58 ifneq ($(CONFIG_H261_DECODER)$(CONFIG_H261_ENCODER),) | |
59 OBJS+= h261.o | |
60 endif | |
61 ifneq ($(CONFIG_H264_DECODER)$(CONFIG_SVQ3_DECODER),) | |
62 OBJS+= h264.o | |
63 endif | |
64 ifneq ($(CONFIG_HUFFYUV_DECODER)$(CONFIG_HUFFYUV_ENCODER)$(CONFIG_FFVHUFF_DECODER)$(CONFIG_FFVHUFF_ENCODER),) | |
65 OBJS+= huffyuv.o | |
66 endif | |
67 ifeq ($(CONFIG_IDCIN_DECODER),yes) | |
68 OBJS+= idcinvideo.o | |
69 endif | |
70 ifeq ($(CONFIG_INDEO2_DECODER),yes) | |
71 OBJS+= indeo2.o | |
72 endif | |
73 ifeq ($(CONFIG_INDEO3_DECODER),yes) | |
74 OBJS+= indeo3.o | |
75 endif | |
76 ifeq ($(CONFIG_INTERPLAY_VIDEO_DECODER),yes) | |
77 OBJS+= interplayvideo.o | |
78 endif | |
79 ifneq ($(CONFIG_MSZH_DECODER)$(CONFIG_ZLIB_DECODER)$(CONFIG_ZLIB_ENCODER),) | |
80 OBJS+= lcl.o | |
81 endif | |
82 ifeq ($(CONFIG_LOCO_DECODER),yes) | |
83 OBJS+= loco.o | |
84 endif | |
85 ifneq ($(CONFIG_MACE3_DECODER)$(CONFIG_MACE6_DECODER),) | |
86 OBJS+= mace.o | |
87 endif | |
88 ifeq ($(CONFIG_MSRLE_DECODER),yes) | |
89 OBJS+= msrle.o | |
90 endif | |
91 ifeq ($(CONFIG_MSVIDEO1_DECODER),yes) | |
92 OBJS+= msvideo1.o | |
93 endif | |
94 ifneq ($(CONFIG_PNG_DECODER)$(CONFIG_PNG_ENCODER),) | |
95 OBJS+= png.o | |
96 endif | |
97 ifeq ($(CONFIG_QDRAW_DECODER),yes) | |
98 OBJS+= qdrw.o | |
99 endif | |
100 ifeq ($(CONFIG_QPEG_DECODER),yes) | |
101 OBJS+= qpeg.o | |
102 endif | |
103 ifeq ($(CONFIG_QTRLE_DECODER),yes) | |
104 OBJS+= qtrle.o | |
105 endif | |
106 ifeq ($(CONFIG_RA_144_DECODER),yes) | |
107 OBJS+= ra144.o | |
108 endif | |
109 ifeq ($(CONFIG_RA_288_DECODER),yes) | |
110 OBJS+= ra288.o | |
111 endif | |
112 ifeq ($(CONFIG_ROQ_DECODER),yes) | |
113 OBJS+= roqvideo.o | |
114 endif | |
115 ifeq ($(CONFIG_RPZA_DECODER),yes) | |
116 OBJS+= rpza.o | |
117 endif | |
118 ifneq ($(CONFIG_RV10_DECODER)$(CONFIG_RV20_DECODER)$(CONFIG_RV10_ENCODER)$(CONFIG_RV20_ENCODER),) | |
119 OBJS+= rv10.o | |
120 endif | |
121 ifeq ($(CONFIG_SHORTEN_DECODER),yes) | |
122 OBJS+= shorten.o | |
123 endif | |
124 ifeq ($(CONFIG_SMC_DECODER),yes) | |
125 OBJS+= smc.o | |
126 endif | |
2662 | 127 ifneq ($(CONFIG_SNOW_DECODER)$(CONFIG_SNOW_ENCODER),) |
2639 | 128 OBJS+= snow.o |
129 endif | |
130 ifneq ($(CONFIG_SONIC_DECODER)$(CONFIG_SONIC_ENCODER)$(CONFIG_SONIC_LS_ENCODER),) | |
131 OBJS+= sonic.o | |
132 endif | |
133 ifneq ($(CONFIG_SVQ1_DECODER)$(CONFIG_SVQ1_ENCODER),) | |
134 OBJS+= svq1.o | |
135 endif | |
136 ifeq ($(CONFIG_TRUEMOTION1_DECODER),yes) | |
137 OBJS+= truemotion1.o | |
138 endif | |
139 ifeq ($(CONFIG_TSCC_DECODER),yes) | |
140 OBJS+= tscc.o | |
141 endif | |
142 ifeq ($(CONFIG_ULTI_DECODER),yes) | |
143 OBJS+= ulti.o | |
144 endif | |
145 ifneq ($(CONFIG_VC9_DECODER)$(CONFIG_WMV3_DECODER),) | |
146 OBJS+= vc9.o | |
147 endif | |
148 ifneq ($(CONFIG_VCR1_DECODER)$(CONFIG_VCR1_ENCODER),) | |
149 OBJS+= vcr1.o | |
150 endif | |
151 ifneq ($(CONFIG_VMDVIDEO_DECODER)$(CONFIG_VMDAUDIO_DECODER),) | |
152 OBJS+= vmdav.o | |
153 endif | |
154 ifneq ($(CONFIG_VP3_DECODER)$(CONFIG_THEORA_DECODER),) | |
155 OBJS+= vp3.o | |
156 endif | |
157 ifeq ($(CONFIG_VQA_DECODER),yes) | |
158 OBJS+= vqavideo.o | |
159 endif | |
160 ifneq ($(CONFIG_WMAV1_DECODER)$(CONFIG_WMAV2_DECODER),) | |
161 OBJS+= wmadec.o | |
162 endif | |
163 ifeq ($(CONFIG_WNV1_DECODER),yes) | |
164 OBJS+= wnv1.o | |
165 endif | |
166 ifeq ($(CONFIG_WS_SND1_DECODER),yes) | |
167 OBJS+= ws-snd1.o | |
168 endif | |
169 ifneq ($(CONFIG_XAN_WC3_DECODER)$(CONFIG_XAN_WC4_DECODER),) | |
170 OBJS+= xan.o | |
171 endif | |
172 ifeq ($(CONFIG_XL_DECODER),yes) | |
173 OBJS+= xl.o | |
174 endif | |
175 | |
176 | |
2399
f4709a828e7e
Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents:
2398
diff
changeset
|
177 AMROBJS= |
1258
802614404398
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
1247
diff
changeset
|
178 ifeq ($(AMR_NB),yes) |
1297 | 179 ifeq ($(AMR_NB_FIXED),yes) |
2399
f4709a828e7e
Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents:
2398
diff
changeset
|
180 AMROBJS= amr.o |
1297 | 181 AMREXTRALIBS+= amr/*.o |
182 AMRLIBS=amrlibs | |
183 CLEANAMR=cleanamr | |
184 else | |
2399
f4709a828e7e
Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents:
2398
diff
changeset
|
185 AMROBJS= amr.o |
f4709a828e7e
Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents:
2398
diff
changeset
|
186 OBJS+= amr_float/sp_dec.o amr_float/sp_enc.o amr_float/interf_dec.o amr_float/interf_enc.o |
1297 | 187 CLEANAMR=cleanamrfloat |
188 endif | |
1258
802614404398
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
1247
diff
changeset
|
189 endif |
802614404398
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
1247
diff
changeset
|
190 |
1799 | 191 ifeq ($(HAVE_PTHREADS),yes) |
192 OBJS+= pthread.o | |
193 endif | |
194 | |
1822
7366bb5c363f
w32threads by (Gildas Bazin <gbazin at altern dot org>)
michael
parents:
1812
diff
changeset
|
195 ifeq ($(HAVE_W32THREADS),yes) |
7366bb5c363f
w32threads by (Gildas Bazin <gbazin at altern dot org>)
michael
parents:
1812
diff
changeset
|
196 OBJS+= w32thread.o |
7366bb5c363f
w32threads by (Gildas Bazin <gbazin at altern dot org>)
michael
parents:
1812
diff
changeset
|
197 endif |
7366bb5c363f
w32threads by (Gildas Bazin <gbazin at altern dot org>)
michael
parents:
1812
diff
changeset
|
198 |
2362
7a6ff8cc7c95
BeOS threading support. changed some "if FOO_THREAD||BAR_THREAD" to a more generic "if HAVE_THREADS"
mmu_man
parents:
2355
diff
changeset
|
199 ifeq ($(HAVE_BEOSTHREADS),yes) |
7a6ff8cc7c95
BeOS threading support. changed some "if FOO_THREAD||BAR_THREAD" to a more generic "if HAVE_THREADS"
mmu_man
parents:
2355
diff
changeset
|
200 OBJS+= beosthread.o |
7a6ff8cc7c95
BeOS threading support. changed some "if FOO_THREAD||BAR_THREAD" to a more generic "if HAVE_THREADS"
mmu_man
parents:
2355
diff
changeset
|
201 endif |
7a6ff8cc7c95
BeOS threading support. changed some "if FOO_THREAD||BAR_THREAD" to a more generic "if HAVE_THREADS"
mmu_man
parents:
2355
diff
changeset
|
202 |
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1472
diff
changeset
|
203 ifeq ($(AMR_WB),yes) |
2399
f4709a828e7e
Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents:
2398
diff
changeset
|
204 AMROBJS= amr.o |
f4709a828e7e
Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents:
2398
diff
changeset
|
205 OBJS+= amrwb_float/dec_acelp.o amrwb_float/dec_dtx.o amrwb_float/dec_gain.o \ |
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1472
diff
changeset
|
206 amrwb_float/dec_if.o amrwb_float/dec_lpc.o amrwb_float/dec_main.o \ |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1472
diff
changeset
|
207 amrwb_float/dec_rom.o amrwb_float/dec_util.o amrwb_float/enc_acelp.o \ |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1472
diff
changeset
|
208 amrwb_float/enc_dtx.o amrwb_float/enc_gain.o amrwb_float/enc_if.o \ |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1472
diff
changeset
|
209 amrwb_float/enc_lpc.o amrwb_float/enc_main.o amrwb_float/enc_rom.o \ |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1472
diff
changeset
|
210 amrwb_float/enc_util.o amrwb_float/if_rom.o |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1472
diff
changeset
|
211 endif |
2399
f4709a828e7e
Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents:
2398
diff
changeset
|
212 OBJS+= $(AMROBJS) |
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1472
diff
changeset
|
213 CLEANAMRWB=cleanamrwbfloat |
2 | 214 ASM_OBJS= |
0 | 215 |
1383 | 216 ifeq ($(HAVE_XVMC_ACCEL),yes) |
217 OBJS+= xvmcvideo.o | |
218 endif | |
219 | |
338 | 220 # 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
|
221 ifeq ($(CONFIG_AC3),yes) |
338 | 222 OBJS+= a52dec.o |
223 | |
224 # using builtin liba52 or runtime linked liba52.so.0 | |
429 | 225 ifneq ($(CONFIG_A52BIN),yes) |
338 | 226 OBJS+= liba52/bit_allocate.o liba52/bitstream.o liba52/downmix.o \ |
1194 | 227 liba52/imdct.o liba52/parse.o liba52/crc.o liba52/resample.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
|
228 endif |
429 | 229 endif |
0 | 230 |
2123
ef54decf5624
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
2085
diff
changeset
|
231 # currently using libdts for dts decoding |
ef54decf5624
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
2085
diff
changeset
|
232 ifeq ($(CONFIG_DTS),yes) |
ef54decf5624
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
2085
diff
changeset
|
233 OBJS+= dtsdec.o |
2141 | 234 CFLAGS += $(DTS_INC) |
235 EXTRALIBS += -ldts | |
2123
ef54decf5624
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
2085
diff
changeset
|
236 endif |
ef54decf5624
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
2085
diff
changeset
|
237 |
1245 | 238 ifeq ($(CONFIG_FAAD),yes) |
239 OBJS+= faad.o | |
1247 | 240 ifeq ($(CONFIG_FAADBIN),yes) |
241 # no libs needed | |
242 else | |
243 EXTRALIBS += -lfaad | |
244 endif | |
1245 | 245 endif |
246 | |
1500
726a81d83ddd
Patch for AAC encoding with libfaac by (Gildas Bazin <gbazin at altern dot org>)
michaelni
parents:
1498
diff
changeset
|
247 ifeq ($(CONFIG_FAAC),yes) |
726a81d83ddd
Patch for AAC encoding with libfaac by (Gildas Bazin <gbazin at altern dot org>)
michaelni
parents:
1498
diff
changeset
|
248 OBJS+= faac.o |
726a81d83ddd
Patch for AAC encoding with libfaac by (Gildas Bazin <gbazin at altern dot org>)
michaelni
parents:
1498
diff
changeset
|
249 EXTRALIBS += -lfaac |
726a81d83ddd
Patch for AAC encoding with libfaac by (Gildas Bazin <gbazin at altern dot org>)
michaelni
parents:
1498
diff
changeset
|
250 endif |
726a81d83ddd
Patch for AAC encoding with libfaac by (Gildas Bazin <gbazin at altern dot org>)
michaelni
parents:
1498
diff
changeset
|
251 |
2131
060053df9538
XviD Support patch by (Adam Thayer <krevnik at comcast dot net>)
michael
parents:
2123
diff
changeset
|
252 ifeq ($(CONFIG_XVID),yes) |
060053df9538
XviD Support patch by (Adam Thayer <krevnik at comcast dot net>)
michael
parents:
2123
diff
changeset
|
253 OBJS+= xvidff.o |
060053df9538
XviD Support patch by (Adam Thayer <krevnik at comcast dot net>)
michael
parents:
2123
diff
changeset
|
254 EXTRALIBS += -lxvidcore |
060053df9538
XviD Support patch by (Adam Thayer <krevnik at comcast dot net>)
michael
parents:
2123
diff
changeset
|
255 endif |
060053df9538
XviD Support patch by (Adam Thayer <krevnik at comcast dot net>)
michael
parents:
2123
diff
changeset
|
256 |
2556
e5af3bc1d038
H.264 encoding with x264 by (Mns Rullgrd <mru inprovide com>)
michael
parents:
2552
diff
changeset
|
257 ifeq ($(CONFIG_X264),yes) |
e5af3bc1d038
H.264 encoding with x264 by (Mns Rullgrd <mru inprovide com>)
michael
parents:
2552
diff
changeset
|
258 OBJS+= x264.o |
2557 | 259 EXTRALIBS += -lx264 |
2556
e5af3bc1d038
H.264 encoding with x264 by (Mns Rullgrd <mru inprovide com>)
michael
parents:
2552
diff
changeset
|
260 endif |
e5af3bc1d038
H.264 encoding with x264 by (Mns Rullgrd <mru inprovide com>)
michael
parents:
2552
diff
changeset
|
261 |
1069 | 262 ifeq ($(CONFIG_PP),yes) |
263 ifeq ($(SHARED_PP),yes) | |
2656
9541ac28509f
support BUILDSUF patch by <charles dot yates at pandora dot be>
mmu_man
parents:
2639
diff
changeset
|
264 EXTRALIBS += -L$(VPATH)/libpostproc -lpostproc$(BUILDSUF) |
1069 | 265 else |
266 # LIBS += libpostproc/libpostproc.a ... should be fixed | |
267 OBJS += libpostproc/postprocess.o | |
268 endif | |
269 endif | |
270 | |
258
9c975237ec64
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
271 ifeq ($(CONFIG_MP3LAME),yes) |
9c975237ec64
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
272 OBJS += mp3lameaudio.o |
348 | 273 EXTRALIBS += -lmp3lame |
258
9c975237ec64
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
274 endif |
9c975237ec64
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
275 |
2520 | 276 ifeq ($(CONFIG_LIBOGG),yes) |
277 ifeq ($(CONFIG_LIBVORBIS),yes) | |
636
57b9a37546a0
oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents:
633
diff
changeset
|
278 OBJS += oggvorbis.o |
2566
99bcd49a3677
ogg has to be at the right of vorbis patch by ("Vctor Paesa" wzrlpy hotmail com)
michael
parents:
2564
diff
changeset
|
279 EXTRALIBS += -lvorbisenc -lvorbis |
636
57b9a37546a0
oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents:
633
diff
changeset
|
280 endif |
2520 | 281 ifeq ($(CONFIG_LIBTHEORA), yes) |
282 OBJS += oggtheora.o | |
283 EXTRALIBS += -ltheora | |
284 endif | |
2566
99bcd49a3677
ogg has to be at the right of vorbis patch by ("Vctor Paesa" wzrlpy hotmail com)
michael
parents:
2564
diff
changeset
|
285 EXTRALIBS += -logg |
2520 | 286 endif |
636
57b9a37546a0
oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents:
633
diff
changeset
|
287 |
252
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
214
diff
changeset
|
288 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
|
289 CFLAGS+=-p |
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
214
diff
changeset
|
290 LDFLAGS+=-p |
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
214
diff
changeset
|
291 endif |
ddb1a0e94cf4
- Added PSNR feature to libavcodec and ffmpeg. By now just Y PSNR until I'm
pulento
parents:
214
diff
changeset
|
292 |
0 | 293 # i386 mmx specific stuff |
2 | 294 ifeq ($(TARGET_MMX),yes) |
74 | 295 OBJS += i386/fdct_mmx.o i386/cputest.o \ |
32 | 296 i386/dsputil_mmx.o i386/mpegvideo_mmx.o \ |
338 | 297 i386/idct_mmx.o i386/motion_est_mmx.o \ |
1972 | 298 i386/simple_idct_mmx.o i386/fft_sse.o i386/vp3dsp_mmx.o \ |
299 i386/vp3dsp_sse2.o | |
1027
a0a7149be543
fixed dependancy generation (I want the case where SRC_PATH is not . to work too - very useful if you have different gcc versions to test at the same time...) - fixed -msse stuff
bellard
parents:
1010
diff
changeset
|
300 ifdef TARGET_BUILTIN_VECTOR |
a0a7149be543
fixed dependancy generation (I want the case where SRC_PATH is not . to work too - very useful if you have different gcc versions to test at the same time...) - fixed -msse stuff
bellard
parents:
1010
diff
changeset
|
301 i386/fft_sse.o: CFLAGS+= -msse |
1869 | 302 depend: CFLAGS+= -msse |
1027
a0a7149be543
fixed dependancy generation (I want the case where SRC_PATH is not . to work too - very useful if you have different gcc versions to test at the same time...) - fixed -msse stuff
bellard
parents:
1010
diff
changeset
|
303 endif |
0 | 304 endif |
305 | |
62 | 306 # armv4l specific stuff |
307 ifeq ($(TARGET_ARCH_ARMV4L),yes) | |
1347
cca26199ab17
Optimized simple idct for arm by Frederic 'dilb' Boulay <dilb@handhelds.org>. Currently licensed under the GPLv2, but the author allowed to license it under the LGPL, feel free to change
al3x
parents:
1304
diff
changeset
|
308 ASM_OBJS += armv4l/jrevdct_arm.o armv4l/simple_idct_arm.o |
730 | 309 OBJS += armv4l/dsputil_arm.o armv4l/mpegvideo_arm.o |
62 | 310 endif |
311 | |
88 | 312 # sun mediaLib specific stuff |
313 # currently only works when libavcodec is used in mplayer | |
314 ifeq ($(HAVE_MLIB),yes) | |
315 OBJS += mlib/dsputil_mlib.o | |
316 CFLAGS += $(MLIB_INC) | |
317 endif | |
318 | |
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
319 # alpha specific stuff |
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
320 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
|
321 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
|
322 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
|
323 ASM_OBJS += alpha/dsputil_alpha_asm.o alpha/motion_est_mvi_asm.o |
2545 | 324 CFLAGS += -fforce-addr |
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
325 endif |
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
326 |
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
|
327 ifeq ($(TARGET_ARCH_POWERPC),yes) |
828
ace3ccd18dd2
Altivec Patch (Mark III) by (Dieter Shirley <dieters at schemasoft dot com>)
michaelni
parents:
827
diff
changeset
|
328 OBJS += ppc/dsputil_ppc.o ppc/mpegvideo_ppc.o |
638
0012f75c92bb
altivec build tidyup patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
636
diff
changeset
|
329 endif |
0012f75c92bb
altivec build tidyup patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
636
diff
changeset
|
330 |
689
efcbfbd18864
ps2 idct patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents:
683
diff
changeset
|
331 ifeq ($(TARGET_MMI),yes) |
721
71f669e9f633
ps2 optimizations update patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents:
705
diff
changeset
|
332 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
|
333 endif |
efcbfbd18864
ps2 idct patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents:
683
diff
changeset
|
334 |
638
0012f75c92bb
altivec build tidyup patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
636
diff
changeset
|
335 ifeq ($(TARGET_ALTIVEC),yes) |
975
e05d525505c5
fft altivec by Romain Dolbeau - simplified patch, test it on PPC with fft-test and wma decoding
bellard
parents:
973
diff
changeset
|
336 OBJS += ppc/dsputil_altivec.o ppc/mpegvideo_altivec.o ppc/idct_altivec.o \ |
2236
b0102ea621dd
h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
2234
diff
changeset
|
337 ppc/fft_altivec.o ppc/gmc_altivec.o ppc/fdct_altivec.o \ |
b0102ea621dd
h264 qpel mc, size 16 patch by (Romain Dolbeau <dolbeau at caps-entreprise dot com>)
michael
parents:
2234
diff
changeset
|
338 ppc/dsputil_h264_altivec.o |
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
|
339 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
|
340 |
1259
e8c3884f2c7e
sh4 optimized idct & bswap patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
1258
diff
changeset
|
341 ifeq ($(TARGET_ARCH_SH4),yes) |
e8c3884f2c7e
sh4 optimized idct & bswap patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
1258
diff
changeset
|
342 OBJS+= sh4/idct_sh4.o sh4/dsputil_sh4.o sh4/dsputil_align.o |
e8c3884f2c7e
sh4 optimized idct & bswap patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
1258
diff
changeset
|
343 endif |
e8c3884f2c7e
sh4 optimized idct & bswap patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
1258
diff
changeset
|
344 |
1965
f74f306c30b5
vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents:
1960
diff
changeset
|
345 ifeq ($(TARGET_ARCH_SPARC),yes) |
f74f306c30b5
vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents:
1960
diff
changeset
|
346 OBJS+=sparc/dsputil_vis.o |
f74f306c30b5
vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents:
1960
diff
changeset
|
347 sparc/%.o: sparc/%.c |
f74f306c30b5
vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents:
1960
diff
changeset
|
348 $(CC) -mcpu=ultrasparc -mtune=ultrasparc $(CFLAGS) -c -o $@ $< |
f74f306c30b5
vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents:
1960
diff
changeset
|
349 endif |
1960 | 350 ifeq ($(TARGET_ARCH_SPARC64),yes) |
1959
55b7435c59b8
VIS optimized motion compensation code. by (David S. Miller <davem at redhat dot com>)
michael
parents:
1930
diff
changeset
|
351 CFLAGS+= -mcpu=ultrasparc -mtune=ultrasparc |
55b7435c59b8
VIS optimized motion compensation code. by (David S. Miller <davem at redhat dot com>)
michael
parents:
1930
diff
changeset
|
352 endif |
55b7435c59b8
VIS optimized motion compensation code. by (David S. Miller <davem at redhat dot com>)
michael
parents:
1930
diff
changeset
|
353 |
509
cab79946302f
Implement put_pixels_clamped and add_pixels_clamped in Assembler. This
mellum
parents:
489
diff
changeset
|
354 SRCS := $(OBJS:.o=.c) $(ASM_OBJS:.o=.S) |
429 | 355 OBJS := $(OBJS) $(ASM_OBJS) |
2 | 356 |
994
7701ff462e3a
os2 support patch by ("Slavik Gnatenko" <miracle9 at newmail dot ru>)
michaelni
parents:
979
diff
changeset
|
357 LIB= $(LIBPREF)avcodec$(LIBSUF) |
136 | 358 ifeq ($(BUILD_SHARED),yes) |
994
7701ff462e3a
os2 support patch by ("Slavik Gnatenko" <miracle9 at newmail dot ru>)
michaelni
parents:
979
diff
changeset
|
359 SLIB= $(SLIBPREF)avcodec$(SLIBSUF) |
136 | 360 endif |
784 | 361 TESTS= imgresample-test dct-test motion-test fft-test |
0 | 362 |
136 | 363 all: $(LIB) $(SLIB) |
429 | 364 |
1297 | 365 amrlibs: |
366 $(MAKE) -C amr spclib fipoplib | |
367 | |
43 | 368 tests: apiexample cpuid_test $(TESTS) |
0 | 369 |
1297 | 370 $(LIB): $(OBJS) $(AMRLIBS) |
0 | 371 rm -f $@ |
1297 | 372 $(AR) rc $@ $(OBJS) $(AMREXTRALIBS) |
640 | 373 $(RANLIB) $@ |
0 | 374 |
1046 | 375 $(SLIB): $(OBJS) |
2285
9891c6a212ca
Build process: libpostproc patch by (Franti?ek Dvo?k <valtri at users dot sourceforge dot net>)
michael
parents:
2282
diff
changeset
|
376 ifeq ($(CONFIG_PP),yes) |
2443
8d4708fabc06
Out-of-directory build patch by (Philipp Matthias Hahn <pmhahn titan.lahn de>)
michael
parents:
2421
diff
changeset
|
377 $(MAKE) -C libpostproc |
2285
9891c6a212ca
Build process: libpostproc patch by (Franti?ek Dvo?k <valtri at users dot sourceforge dot net>)
michael
parents:
2282
diff
changeset
|
378 endif |
1472 | 379 ifeq ($(CONFIG_WIN32),yes) |
380 $(CC) $(SHFLAGS) -Wl,--output-def,$(@:.dll=.def) -o $@ $(OBJS) $(EXTRALIBS) $(AMREXTRALIBS) | |
381 -lib /machine:i386 /def:$(@:.dll=.def) | |
382 else | |
1930
01d6dc162ace
Missing LDFLAGS in libavcodec/Makefile patch by ("Michael T. Dean" <mtdean at thirdcontact dot com>)
michael
parents:
1869
diff
changeset
|
383 $(CC) $(SHFLAGS) -o $@ $(OBJS) $(EXTRALIBS) $(AMREXTRALIBS) $(LDFLAGS) |
1472 | 384 endif |
429 | 385 |
0 | 386 dsputil.o: dsputil.c dsputil.h |
387 | |
1069 | 388 libpostproc/libpostproc.a: |
389 $(MAKE) -C libpostproc | |
390 | |
0 | 391 %.o: %.c |
392 $(CC) $(CFLAGS) -c -o $@ $< | |
393 | |
62 | 394 %.o: %.S |
395 $(CC) $(CFLAGS) -c -o $@ $< | |
396 | |
1046 | 397 depend: $(SRCS) |
1027
a0a7149be543
fixed dependancy generation (I want the case where SRC_PATH is not . to work too - very useful if you have different gcc versions to test at the same time...) - fixed -msse stuff
bellard
parents:
1010
diff
changeset
|
398 $(CC) -MM $(CFLAGS) $^ 1>.depend |
1010
3c110cba4b29
- removed nonsense *.d dependancy stuff, there was already a better 'make dep' support in it
arpi_esp
parents:
1005
diff
changeset
|
399 |
2 | 400 dep: depend |
401 | |
1297 | 402 clean: $(CLEANAMR) |
1005
c331a07c0be2
AUtomatic dependency generation. Runs on Linux (at least). Probably should
philipjsg
parents:
995
diff
changeset
|
403 rm -f *.o *.d *~ .depend $(LIB) $(SLIB) *.so i386/*.o i386/*~ \ |
62 | 404 armv4l/*.o armv4l/*~ \ |
88 | 405 mlib/*.o mlib/*~ \ |
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
406 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
|
407 ppc/*.o ppc/*~ \ |
689
efcbfbd18864
ps2 idct patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents:
683
diff
changeset
|
408 ps2/*.o ps2/*~ \ |
1259
e8c3884f2c7e
sh4 optimized idct & bswap patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
1258
diff
changeset
|
409 sh4/*.o sh4/*~ \ |
1965
f74f306c30b5
vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents:
1960
diff
changeset
|
410 sparc/*.o sparc/*~ \ |
338 | 411 liba52/*.o liba52/*~ \ |
412 apiexample $(TESTS) | |
1074 | 413 $(MAKE) -C libpostproc clean |
0 | 414 |
484
f8bbc8976247
in libavcodec/Makefile there is in line 110: "distclean: clean<binary char>"
arpi_esp
parents:
429
diff
changeset
|
415 distclean: clean |
2 | 416 rm -f Makefile.bak .depend |
417 | |
1297 | 418 cleanamr: |
419 $(MAKE) -C amr clean | |
420 | |
421 cleanamrfloat: | |
422 rm -f amr_float/*.o | |
423 | |
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1472
diff
changeset
|
424 cleanamrwbfloat: |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1472
diff
changeset
|
425 $(MAKE) -C amrwb_float -f makefile.gcc clean |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1472
diff
changeset
|
426 |
0 | 427 # api example program |
428 apiexample: apiexample.c $(LIB) | |
645 | 429 $(CC) $(CFLAGS) -o $@ $< $(LIB) $(EXTRALIBS) -lm |
0 | 430 |
43 | 431 # cpuid test |
432 cpuid_test: i386/cputest.c | |
433 $(CC) $(CFLAGS) -D__TEST__ -o $@ $< | |
434 | |
0 | 435 # testing progs |
436 | |
437 imgresample-test: imgresample.c | |
644 | 438 $(CC) $(CFLAGS) -DTEST -o $@ $^ -lm |
0 | 439 |
979 | 440 dct-test: dct-test.o fdctref.o $(LIB) |
607
5762b2d659d2
darwin patches by Heliodoro Tammaro <helio at interactives dot org>
michaelni
parents:
603
diff
changeset
|
441 $(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
|
442 |
74 | 443 motion-test: motion_test.o $(LIB) |
644 | 444 $(CC) -o $@ $^ -lm |
74 | 445 |
973
e2c119417470
enabled SSE fft (first code using GCC 3.2 vector builtins on x86 - please tell me if you have better ideas for intrinsic naming or Makefile support)
bellard
parents:
866
diff
changeset
|
446 fft-test: fft-test.o $(LIB) |
784 | 447 $(CC) -o $@ $^ -lm |
448 | |
136 | 449 ifeq ($(BUILD_SHARED),yes) |
1470 | 450 install: all install-headers |
451 ifeq ($(CONFIG_WIN32),yes) | |
2282
e8d3609e89a5
Help debugging by keeping symbols ans line numbers patch by (Michel Bardiaux <mbardiaux at peaktime dot be>)
michael
parents:
2275
diff
changeset
|
452 install $(INSTALLSTRIP) -m 755 $(SLIB) "$(prefix)" |
1470 | 453 else |
2564
ad15cccd015f
add libdir support to configure patch by (Luca Barbato )lu_zero gentoo org)
michael
parents:
2557
diff
changeset
|
454 install -d $(libdir) |
ad15cccd015f
add libdir support to configure patch by (Luca Barbato )lu_zero gentoo org)
michael
parents:
2557
diff
changeset
|
455 install $(INSTALLSTRIP) -m 755 $(SLIB) $(libdir)/libavcodec-$(VERSION).so |
ad15cccd015f
add libdir support to configure patch by (Luca Barbato )lu_zero gentoo org)
michael
parents:
2557
diff
changeset
|
456 ln -sf libavcodec-$(VERSION).so $(libdir)/libavcodec.so |
603
442dede8795b
patch by (Volker Moell <volker-ml at die-moells dot de>)
michaelni
parents:
586
diff
changeset
|
457 ldconfig || true |
1470 | 458 endif |
2285
9891c6a212ca
Build process: libpostproc patch by (Franti?ek Dvo?k <valtri at users dot sourceforge dot net>)
michael
parents:
2282
diff
changeset
|
459 ifeq ($(CONFIG_PP),yes) |
2443
8d4708fabc06
Out-of-directory build patch by (Philipp Matthias Hahn <pmhahn titan.lahn de>)
michael
parents:
2421
diff
changeset
|
460 $(MAKE) -C libpostproc $@ |
2285
9891c6a212ca
Build process: libpostproc patch by (Franti?ek Dvo?k <valtri at users dot sourceforge dot net>)
michael
parents:
2282
diff
changeset
|
461 endif |
1470 | 462 else |
463 install: | |
136 | 464 endif |
489
b9fcdf9f4420
added installlib target to install static libraries and includes
bellard
parents:
484
diff
changeset
|
465 |
1470 | 466 installlib: all install-headers |
2564
ad15cccd015f
add libdir support to configure patch by (Luca Barbato )lu_zero gentoo org)
michael
parents:
2557
diff
changeset
|
467 install -m 644 $(LIB) "$(libdir)" |
1470 | 468 |
469 install-headers: | |
470 mkdir -p "$(prefix)/include/ffmpeg" | |
1568
c5ec7ac5c053
rational.h not installed patch by (Fred Rothganger <rothgang at uiuc dot edu>)
michael
parents:
1557
diff
changeset
|
471 install -m 644 $(SRC_PATH)/libavcodec/avcodec.h \ |
c5ec7ac5c053
rational.h not installed patch by (Fred Rothganger <rothgang at uiuc dot edu>)
michael
parents:
1557
diff
changeset
|
472 $(SRC_PATH)/libavcodec/common.h \ |
c5ec7ac5c053
rational.h not installed patch by (Fred Rothganger <rothgang at uiuc dot edu>)
michael
parents:
1557
diff
changeset
|
473 $(SRC_PATH)/libavcodec/rational.h \ |
1470 | 474 "$(prefix)/include/ffmpeg" |
489
b9fcdf9f4420
added installlib target to install static libraries and includes
bellard
parents:
484
diff
changeset
|
475 |
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
|
476 # |
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
|
477 # 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
|
478 # |
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
|
479 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
|
480 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
|
481 endif |