Mercurial > libavcodec.hg
annotate Makefile @ 3152:28a087ad41d1 libavcodec
Assign class 2 to most macroblocks by default, instead of a more conservative
method defined by SMPTE
Patch by Dan Maas
author | romansh |
---|---|
date | Tue, 28 Feb 2006 02:54:48 +0000 |
parents | 0ebbd476ba32 |
children | c20c181e0eca |
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 | |
429 | 7 # NOTE: -I.. is needed to include config.h |
2817
b128802eb77b
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
2796
diff
changeset
|
8 CFLAGS=$(OPTFLAGS) -DHAVE_AV_CONFIG_H -I.. -I$(SRC_PATH)/libavutil -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCE $(AMR_CFLAGS) |
0 | 9 |
2398
582e635cfa08
common.c -> bitstream.c (and the single non bitstream func -> utils.c)
michael
parents:
2362
diff
changeset
|
10 OBJS= bitstream.o utils.o mem.o allcodecs.o \ |
1042 | 11 mpegvideo.o jrevdct.o jfdctfst.o jfdctint.o\ |
2085 | 12 mpegaudio.o ac3enc.o mjpeg.o resample.o resample2.o dsputil.o \ |
1042 | 13 motion_est.o imgconvert.o imgresample.o \ |
1383 | 14 mpeg12.o mpegaudiodec.o pcm.o simple_idct.o \ |
2639 | 15 ratecontrol.o adpcm.o eval.o error_resilience.o \ |
16 fft.o mdct.o raw.o golomb.o cabac.o\ | |
2817
b128802eb77b
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
2796
diff
changeset
|
17 dpcm.o adx.o faandct.o parser.o g726.o \ |
2946
ac94d509884e
dvbsub encoder, patch by Wolfram Gloger < wmglo AH dent POIS med POIS uni-muenchen POIS de >
gpoirier
parents:
2933
diff
changeset
|
18 vp3dsp.o h264idct.o rangecoder.o pnm.o h263.o msmpeg4.o h263dec.o \ |
2948
aebeb38eea7a
Make DV(B|D) subtitles (en|de)coders be conditonnaly compiled depending on the configure system
gpoirier
parents:
2946
diff
changeset
|
19 opt.o |
2756 | 20 |
3124 | 21 HEADERS = avcodec.h dsputil.h |
22 | |
2639 | 23 ifeq ($(CONFIG_AASC_DECODER),yes) |
24 OBJS+= aasc.o | |
25 endif | |
26 ifeq ($(CONFIG_ALAC_DECODER),yes) | |
27 OBJS+= alac.o | |
28 endif | |
29 ifneq ($(CONFIG_ASV1_DECODER)$(CONFIG_ASV1_ENCODER)$(CONFIG_ASV2_DECODER)$(CONFIG_ASV2_ENCODER),) | |
30 OBJS+= asv1.o | |
31 endif | |
3129
0ebbd476ba32
complete AVS playback system (from Creature Shock computer game),
melanson
parents:
3124
diff
changeset
|
32 ifeq ($(CONFIG_AVS_DECODER),yes) |
0ebbd476ba32
complete AVS playback system (from Creature Shock computer game),
melanson
parents:
3124
diff
changeset
|
33 OBJS+= avs.o |
0ebbd476ba32
complete AVS playback system (from Creature Shock computer game),
melanson
parents:
3124
diff
changeset
|
34 endif |
2639 | 35 ifeq ($(CONFIG_CINEPAK_DECODER),yes) |
36 OBJS+= cinepak.o | |
37 endif | |
2956
5f51b1e0bed6
Cook compatibe decoder, patch by Benjamin Larsson
rtognimp
parents:
2949
diff
changeset
|
38 ifeq ($(CONFIG_COOK_DECODER),yes) |
5f51b1e0bed6
Cook compatibe decoder, patch by Benjamin Larsson
rtognimp
parents:
2949
diff
changeset
|
39 OBJS+= cook.o |
5f51b1e0bed6
Cook compatibe decoder, patch by Benjamin Larsson
rtognimp
parents:
2949
diff
changeset
|
40 endif |
2639 | 41 ifneq ($(CONFIG_CLJR_DECODER)$(CONFIG_CLJR_ENCODER),) |
42 OBJS+= cljr.o | |
43 endif | |
44 ifeq ($(CONFIG_CYUV_DECODER),yes) | |
45 OBJS+= cyuv.o | |
46 endif | |
2948
aebeb38eea7a
Make DV(B|D) subtitles (en|de)coders be conditonnaly compiled depending on the configure system
gpoirier
parents:
2946
diff
changeset
|
47 ifeq ($(CONFIG_DVBSUB_DECODER),yes) |
aebeb38eea7a
Make DV(B|D) subtitles (en|de)coders be conditonnaly compiled depending on the configure system
gpoirier
parents:
2946
diff
changeset
|
48 OBJS+= dvbsubdec.o |
aebeb38eea7a
Make DV(B|D) subtitles (en|de)coders be conditonnaly compiled depending on the configure system
gpoirier
parents:
2946
diff
changeset
|
49 endif |
aebeb38eea7a
Make DV(B|D) subtitles (en|de)coders be conditonnaly compiled depending on the configure system
gpoirier
parents:
2946
diff
changeset
|
50 ifeq ($(CONFIG_DVBSUB_ENCODER),yes) |
aebeb38eea7a
Make DV(B|D) subtitles (en|de)coders be conditonnaly compiled depending on the configure system
gpoirier
parents:
2946
diff
changeset
|
51 OBJS+= dvbsub.o |
aebeb38eea7a
Make DV(B|D) subtitles (en|de)coders be conditonnaly compiled depending on the configure system
gpoirier
parents:
2946
diff
changeset
|
52 endif |
aebeb38eea7a
Make DV(B|D) subtitles (en|de)coders be conditonnaly compiled depending on the configure system
gpoirier
parents:
2946
diff
changeset
|
53 ifeq ($(CONFIG_DVDSUB_DECODER),yes) |
aebeb38eea7a
Make DV(B|D) subtitles (en|de)coders be conditonnaly compiled depending on the configure system
gpoirier
parents:
2946
diff
changeset
|
54 OBJS+= dvdsub.o |
aebeb38eea7a
Make DV(B|D) subtitles (en|de)coders be conditonnaly compiled depending on the configure system
gpoirier
parents:
2946
diff
changeset
|
55 endif |
aebeb38eea7a
Make DV(B|D) subtitles (en|de)coders be conditonnaly compiled depending on the configure system
gpoirier
parents:
2946
diff
changeset
|
56 ifeq ($(CONFIG_DVDSUB_ENCODER),yes) |
aebeb38eea7a
Make DV(B|D) subtitles (en|de)coders be conditonnaly compiled depending on the configure system
gpoirier
parents:
2946
diff
changeset
|
57 OBJS+= dvdsubenc.o |
aebeb38eea7a
Make DV(B|D) subtitles (en|de)coders be conditonnaly compiled depending on the configure system
gpoirier
parents:
2946
diff
changeset
|
58 endif |
2639 | 59 ifneq ($(CONFIG_DVVIDEO_DECODER)$(CONFIG_DVVIDEO_ENCODER),) |
60 OBJS+= dv.o | |
61 endif | |
62 ifeq ($(CONFIG_EIGHTBPS_DECODER),yes) | |
63 OBJS+= 8bps.o | |
64 endif | |
65 ifneq ($(CONFIG_FFV1_DECODER)$(CONFIG_FFV1_ENCODER),) | |
66 OBJS+= ffv1.o | |
67 endif | |
68 ifeq ($(CONFIG_FLAC_DECODER),yes) | |
69 OBJS+= flac.o | |
70 endif | |
71 ifeq ($(CONFIG_FLIC_DECODER),yes) | |
72 OBJS+= flicvideo.o | |
73 endif | |
74 ifeq ($(CONFIG_FOURXM_DECODER),yes) | |
75 OBJS+= 4xm.o | |
76 endif | |
2700
485571c9182f
Fraps FPS1 video decoder (v1 & v2), courtesy of Roine Gustafsson <roine
melanson
parents:
2697
diff
changeset
|
77 ifeq ($(CONFIG_FRAPS_DECODER),yes) |
485571c9182f
Fraps FPS1 video decoder (v1 & v2), courtesy of Roine Gustafsson <roine
melanson
parents:
2697
diff
changeset
|
78 OBJS+= fraps.o |
485571c9182f
Fraps FPS1 video decoder (v1 & v2), courtesy of Roine Gustafsson <roine
melanson
parents:
2697
diff
changeset
|
79 endif |
2639 | 80 ifneq ($(CONFIG_H261_DECODER)$(CONFIG_H261_ENCODER),) |
81 OBJS+= h261.o | |
82 endif | |
83 ifneq ($(CONFIG_H264_DECODER)$(CONFIG_SVQ3_DECODER),) | |
84 OBJS+= h264.o | |
85 endif | |
86 ifneq ($(CONFIG_HUFFYUV_DECODER)$(CONFIG_HUFFYUV_ENCODER)$(CONFIG_FFVHUFF_DECODER)$(CONFIG_FFVHUFF_ENCODER),) | |
87 OBJS+= huffyuv.o | |
88 endif | |
89 ifeq ($(CONFIG_IDCIN_DECODER),yes) | |
90 OBJS+= idcinvideo.o | |
91 endif | |
92 ifeq ($(CONFIG_INDEO2_DECODER),yes) | |
93 OBJS+= indeo2.o | |
94 endif | |
95 ifeq ($(CONFIG_INDEO3_DECODER),yes) | |
96 OBJS+= indeo3.o | |
97 endif | |
98 ifeq ($(CONFIG_INTERPLAY_VIDEO_DECODER),yes) | |
99 OBJS+= interplayvideo.o | |
100 endif | |
101 ifneq ($(CONFIG_MSZH_DECODER)$(CONFIG_ZLIB_DECODER)$(CONFIG_ZLIB_ENCODER),) | |
102 OBJS+= lcl.o | |
103 endif | |
104 ifeq ($(CONFIG_LOCO_DECODER),yes) | |
105 OBJS+= loco.o | |
106 endif | |
107 ifneq ($(CONFIG_MACE3_DECODER)$(CONFIG_MACE6_DECODER),) | |
108 OBJS+= mace.o | |
109 endif | |
110 ifeq ($(CONFIG_MSRLE_DECODER),yes) | |
111 OBJS+= msrle.o | |
112 endif | |
113 ifeq ($(CONFIG_MSVIDEO1_DECODER),yes) | |
114 OBJS+= msvideo1.o | |
115 endif | |
116 ifneq ($(CONFIG_PNG_DECODER)$(CONFIG_PNG_ENCODER),) | |
117 OBJS+= png.o | |
118 endif | |
2930
f9320ccf9f09
Place qdm2 and truemotion2 in ifdef block so that they can be disabled
rtognimp
parents:
2918
diff
changeset
|
119 ifeq ($(CONFIG_QDM2_DECODER),yes) |
f9320ccf9f09
Place qdm2 and truemotion2 in ifdef block so that they can be disabled
rtognimp
parents:
2918
diff
changeset
|
120 OBJS+= qdm2.o |
f9320ccf9f09
Place qdm2 and truemotion2 in ifdef block so that they can be disabled
rtognimp
parents:
2918
diff
changeset
|
121 endif |
2639 | 122 ifeq ($(CONFIG_QDRAW_DECODER),yes) |
123 OBJS+= qdrw.o | |
124 endif | |
125 ifeq ($(CONFIG_QPEG_DECODER),yes) | |
126 OBJS+= qpeg.o | |
127 endif | |
128 ifeq ($(CONFIG_QTRLE_DECODER),yes) | |
129 OBJS+= qtrle.o | |
130 endif | |
131 ifeq ($(CONFIG_RA_144_DECODER),yes) | |
132 OBJS+= ra144.o | |
133 endif | |
134 ifeq ($(CONFIG_RA_288_DECODER),yes) | |
135 OBJS+= ra288.o | |
136 endif | |
137 ifeq ($(CONFIG_ROQ_DECODER),yes) | |
138 OBJS+= roqvideo.o | |
139 endif | |
140 ifeq ($(CONFIG_RPZA_DECODER),yes) | |
141 OBJS+= rpza.o | |
142 endif | |
143 ifneq ($(CONFIG_RV10_DECODER)$(CONFIG_RV20_DECODER)$(CONFIG_RV10_ENCODER)$(CONFIG_RV20_ENCODER),) | |
144 OBJS+= rv10.o | |
145 endif | |
146 ifeq ($(CONFIG_SHORTEN_DECODER),yes) | |
147 OBJS+= shorten.o | |
148 endif | |
149 ifeq ($(CONFIG_SMC_DECODER),yes) | |
150 OBJS+= smc.o | |
151 endif | |
2662 | 152 ifneq ($(CONFIG_SNOW_DECODER)$(CONFIG_SNOW_ENCODER),) |
2639 | 153 OBJS+= snow.o |
154 endif | |
155 ifneq ($(CONFIG_SONIC_DECODER)$(CONFIG_SONIC_ENCODER)$(CONFIG_SONIC_LS_ENCODER),) | |
156 OBJS+= sonic.o | |
157 endif | |
158 ifneq ($(CONFIG_SVQ1_DECODER)$(CONFIG_SVQ1_ENCODER),) | |
159 OBJS+= svq1.o | |
160 endif | |
161 ifeq ($(CONFIG_TRUEMOTION1_DECODER),yes) | |
162 OBJS+= truemotion1.o | |
163 endif | |
2930
f9320ccf9f09
Place qdm2 and truemotion2 in ifdef block so that they can be disabled
rtognimp
parents:
2918
diff
changeset
|
164 ifeq ($(CONFIG_TRUEMOTION2_DECODER),yes) |
f9320ccf9f09
Place qdm2 and truemotion2 in ifdef block so that they can be disabled
rtognimp
parents:
2918
diff
changeset
|
165 OBJS+= truemotion2.o |
f9320ccf9f09
Place qdm2 and truemotion2 in ifdef block so that they can be disabled
rtognimp
parents:
2918
diff
changeset
|
166 endif |
3006
4007989367bc
TrueSpeech compatible audio decoder by Konstantin Shishkov
diego
parents:
2967
diff
changeset
|
167 ifeq ($(CONFIG_TRUESPEECH_DECODER),yes) |
4007989367bc
TrueSpeech compatible audio decoder by Konstantin Shishkov
diego
parents:
2967
diff
changeset
|
168 OBJS+= truespeech.o |
4007989367bc
TrueSpeech compatible audio decoder by Konstantin Shishkov
diego
parents:
2967
diff
changeset
|
169 endif |
3118
01b58c3b8a91
tta decoder, tested with 44khz mono and stereo (for the latter use ffplay or change MAX_AUDIO_FRAME_SIZE)
alex
parents:
3117
diff
changeset
|
170 ifeq ($(CONFIG_TTA_DECODER),yes) |
01b58c3b8a91
tta decoder, tested with 44khz mono and stereo (for the latter use ffplay or change MAX_AUDIO_FRAME_SIZE)
alex
parents:
3117
diff
changeset
|
171 OBJS+= tta.o |
01b58c3b8a91
tta decoder, tested with 44khz mono and stereo (for the latter use ffplay or change MAX_AUDIO_FRAME_SIZE)
alex
parents:
3117
diff
changeset
|
172 endif |
2639 | 173 ifeq ($(CONFIG_TSCC_DECODER),yes) |
174 OBJS+= tscc.o | |
175 endif | |
3030 | 176 ifeq ($(CONFIG_CSCD_DECODER),yes) |
177 OBJS+= cscd.o | |
3034
d37065d8aeff
Our own LZO (1X) implementation, under LGPL and optimized for readability.
reimar
parents:
3032
diff
changeset
|
178 OBJS+= lzo.o |
3030 | 179 endif |
2639 | 180 ifeq ($(CONFIG_ULTI_DECODER),yes) |
181 OBJS+= ulti.o | |
182 endif | |
183 ifneq ($(CONFIG_VC9_DECODER)$(CONFIG_WMV3_DECODER),) | |
184 OBJS+= vc9.o | |
185 endif | |
186 ifneq ($(CONFIG_VCR1_DECODER)$(CONFIG_VCR1_ENCODER),) | |
187 OBJS+= vcr1.o | |
188 endif | |
189 ifneq ($(CONFIG_VMDVIDEO_DECODER)$(CONFIG_VMDAUDIO_DECODER),) | |
190 OBJS+= vmdav.o | |
191 endif | |
2697
4fe1c19fc7a3
Vorbis decoder by (Balatoni Denes | dbalatoni programozo hu)
michael
parents:
2662
diff
changeset
|
192 ifeq ($(CONFIG_VORBIS_DECODER),yes) |
4fe1c19fc7a3
Vorbis decoder by (Balatoni Denes | dbalatoni programozo hu)
michael
parents:
2662
diff
changeset
|
193 OBJS+= vorbis.o |
4fe1c19fc7a3
Vorbis decoder by (Balatoni Denes | dbalatoni programozo hu)
michael
parents:
2662
diff
changeset
|
194 endif |
2639 | 195 ifneq ($(CONFIG_VP3_DECODER)$(CONFIG_THEORA_DECODER),) |
196 OBJS+= vp3.o | |
197 endif | |
198 ifeq ($(CONFIG_VQA_DECODER),yes) | |
199 OBJS+= vqavideo.o | |
200 endif | |
201 ifneq ($(CONFIG_WMAV1_DECODER)$(CONFIG_WMAV2_DECODER),) | |
202 OBJS+= wmadec.o | |
203 endif | |
204 ifeq ($(CONFIG_WNV1_DECODER),yes) | |
205 OBJS+= wnv1.o | |
206 endif | |
207 ifeq ($(CONFIG_WS_SND1_DECODER),yes) | |
208 OBJS+= ws-snd1.o | |
209 endif | |
210 ifneq ($(CONFIG_XAN_WC3_DECODER)$(CONFIG_XAN_WC4_DECODER),) | |
211 OBJS+= xan.o | |
212 endif | |
213 ifeq ($(CONFIG_XL_DECODER),yes) | |
214 OBJS+= xl.o | |
215 endif | |
2949 | 216 ifeq ($(CONFIG_BMP_DECODER),yes) |
217 OBJS+= bmp.o | |
218 endif | |
3119
09ae2e981d64
complete American Laser Games MM playback system, courtesy of Peter Ross
melanson
parents:
3118
diff
changeset
|
219 ifeq ($(CONFIG_MMVIDEO_DECODER),yes) |
09ae2e981d64
complete American Laser Games MM playback system, courtesy of Peter Ross
melanson
parents:
3118
diff
changeset
|
220 OBJS+= mmvideo.o |
09ae2e981d64
complete American Laser Games MM playback system, courtesy of Peter Ross
melanson
parents:
3118
diff
changeset
|
221 endif |
3120 | 222 ifeq ($(CONFIG_ZMBV_DECODER),yes) |
223 OBJS+= zmbv.o | |
224 endif | |
2949 | 225 |
2399
f4709a828e7e
Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents:
2398
diff
changeset
|
226 AMROBJS= |
1258
802614404398
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
1247
diff
changeset
|
227 ifeq ($(AMR_NB),yes) |
1297 | 228 ifeq ($(AMR_NB_FIXED),yes) |
2399
f4709a828e7e
Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents:
2398
diff
changeset
|
229 AMROBJS= amr.o |
1297 | 230 AMREXTRALIBS+= amr/*.o |
231 AMRLIBS=amrlibs | |
232 CLEANAMR=cleanamr | |
233 else | |
2399
f4709a828e7e
Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents:
2398
diff
changeset
|
234 AMROBJS= amr.o |
f4709a828e7e
Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents:
2398
diff
changeset
|
235 OBJS+= amr_float/sp_dec.o amr_float/sp_enc.o amr_float/interf_dec.o amr_float/interf_enc.o |
1297 | 236 CLEANAMR=cleanamrfloat |
237 endif | |
1258
802614404398
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
1247
diff
changeset
|
238 endif |
802614404398
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
1247
diff
changeset
|
239 |
1799 | 240 ifeq ($(HAVE_PTHREADS),yes) |
241 OBJS+= pthread.o | |
242 endif | |
243 | |
1822
7366bb5c363f
w32threads by (Gildas Bazin <gbazin at altern dot org>)
michael
parents:
1812
diff
changeset
|
244 ifeq ($(HAVE_W32THREADS),yes) |
7366bb5c363f
w32threads by (Gildas Bazin <gbazin at altern dot org>)
michael
parents:
1812
diff
changeset
|
245 OBJS+= w32thread.o |
7366bb5c363f
w32threads by (Gildas Bazin <gbazin at altern dot org>)
michael
parents:
1812
diff
changeset
|
246 endif |
7366bb5c363f
w32threads by (Gildas Bazin <gbazin at altern dot org>)
michael
parents:
1812
diff
changeset
|
247 |
3081
4bf348f8e2b1
os2 thread, network and freetype2 support by (Paul Smedley | paulat a t smedleydot d o t info)
michael
parents:
3073
diff
changeset
|
248 ifeq ($(HAVE_OS2THREADS),yes) |
4bf348f8e2b1
os2 thread, network and freetype2 support by (Paul Smedley | paulat a t smedleydot d o t info)
michael
parents:
3073
diff
changeset
|
249 OBJS+= os2thread.o |
4bf348f8e2b1
os2 thread, network and freetype2 support by (Paul Smedley | paulat a t smedleydot d o t info)
michael
parents:
3073
diff
changeset
|
250 endif |
4bf348f8e2b1
os2 thread, network and freetype2 support by (Paul Smedley | paulat a t smedleydot d o t info)
michael
parents:
3073
diff
changeset
|
251 |
4bf348f8e2b1
os2 thread, network and freetype2 support by (Paul Smedley | paulat a t smedleydot d o t info)
michael
parents:
3073
diff
changeset
|
252 |
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
|
253 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
|
254 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
|
255 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
|
256 |
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1472
diff
changeset
|
257 ifeq ($(AMR_WB),yes) |
2399
f4709a828e7e
Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents:
2398
diff
changeset
|
258 AMROBJS= amr.o |
f4709a828e7e
Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents:
2398
diff
changeset
|
259 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
|
260 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
|
261 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
|
262 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
|
263 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
|
264 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
|
265 endif |
2399
f4709a828e7e
Fix compilation when both amr_nb and amr_wb are enabled
rtognimp
parents:
2398
diff
changeset
|
266 OBJS+= $(AMROBJS) |
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1472
diff
changeset
|
267 CLEANAMRWB=cleanamrwbfloat |
2 | 268 ASM_OBJS= |
0 | 269 |
1383 | 270 ifeq ($(HAVE_XVMC_ACCEL),yes) |
271 OBJS+= xvmcvideo.o | |
272 endif | |
273 | |
338 | 274 # 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
|
275 ifeq ($(CONFIG_AC3),yes) |
338 | 276 OBJS+= a52dec.o |
277 | |
278 # using builtin liba52 or runtime linked liba52.so.0 | |
429 | 279 ifneq ($(CONFIG_A52BIN),yes) |
338 | 280 OBJS+= liba52/bit_allocate.o liba52/bitstream.o liba52/downmix.o \ |
1194 | 281 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
|
282 endif |
429 | 283 endif |
0 | 284 |
2824 | 285 EXTRALIBS += -L../libavutil -lavutil$(BUILDSUF) |
2817
b128802eb77b
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
2796
diff
changeset
|
286 |
2123
ef54decf5624
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
2085
diff
changeset
|
287 # currently using libdts for dts decoding |
ef54decf5624
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
2085
diff
changeset
|
288 ifeq ($(CONFIG_DTS),yes) |
ef54decf5624
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
2085
diff
changeset
|
289 OBJS+= dtsdec.o |
2918
13dcd22f0816
Add DTS_INC to the CFLAGS for DTS. This is only set by external configure
diego
parents:
2915
diff
changeset
|
290 CFLAGS += $(DTS_INC) |
2123
ef54decf5624
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
2085
diff
changeset
|
291 endif |
ef54decf5624
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
2085
diff
changeset
|
292 |
1245 | 293 ifeq ($(CONFIG_FAAD),yes) |
294 OBJS+= faad.o | |
295 endif | |
296 | |
1500
726a81d83ddd
Patch for AAC encoding with libfaac by (Gildas Bazin <gbazin at altern dot org>)
michaelni
parents:
1498
diff
changeset
|
297 ifeq ($(CONFIG_FAAC),yes) |
726a81d83ddd
Patch for AAC encoding with libfaac by (Gildas Bazin <gbazin at altern dot org>)
michaelni
parents:
1498
diff
changeset
|
298 OBJS+= faac.o |
726a81d83ddd
Patch for AAC encoding with libfaac by (Gildas Bazin <gbazin at altern dot org>)
michaelni
parents:
1498
diff
changeset
|
299 endif |
726a81d83ddd
Patch for AAC encoding with libfaac by (Gildas Bazin <gbazin at altern dot org>)
michaelni
parents:
1498
diff
changeset
|
300 |
2131
060053df9538
XviD Support patch by (Adam Thayer <krevnik at comcast dot net>)
michael
parents:
2123
diff
changeset
|
301 ifeq ($(CONFIG_XVID),yes) |
060053df9538
XviD Support patch by (Adam Thayer <krevnik at comcast dot net>)
michael
parents:
2123
diff
changeset
|
302 OBJS+= xvidff.o |
3064 | 303 OBJS+= xvid_rc.o |
2131
060053df9538
XviD Support patch by (Adam Thayer <krevnik at comcast dot net>)
michael
parents:
2123
diff
changeset
|
304 endif |
060053df9538
XviD Support patch by (Adam Thayer <krevnik at comcast dot net>)
michael
parents:
2123
diff
changeset
|
305 |
2556
e5af3bc1d038
H.264 encoding with x264 by (Mns Rullgrd <mru inprovide com>)
michael
parents:
2552
diff
changeset
|
306 ifeq ($(CONFIG_X264),yes) |
e5af3bc1d038
H.264 encoding with x264 by (Mns Rullgrd <mru inprovide com>)
michael
parents:
2552
diff
changeset
|
307 OBJS+= x264.o |
e5af3bc1d038
H.264 encoding with x264 by (Mns Rullgrd <mru inprovide com>)
michael
parents:
2552
diff
changeset
|
308 endif |
e5af3bc1d038
H.264 encoding with x264 by (Mns Rullgrd <mru inprovide com>)
michael
parents:
2552
diff
changeset
|
309 |
258
9c975237ec64
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
310 ifeq ($(CONFIG_MP3LAME),yes) |
9c975237ec64
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
311 OBJS += mp3lameaudio.o |
9c975237ec64
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
312 endif |
9c975237ec64
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
313 |
2520 | 314 ifeq ($(CONFIG_LIBOGG),yes) |
315 ifeq ($(CONFIG_LIBVORBIS),yes) | |
636
57b9a37546a0
oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents:
633
diff
changeset
|
316 OBJS += oggvorbis.o |
57b9a37546a0
oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents:
633
diff
changeset
|
317 endif |
2520 | 318 ifeq ($(CONFIG_LIBTHEORA), yes) |
319 OBJS += oggtheora.o | |
320 endif | |
321 endif | |
636
57b9a37546a0
oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents:
633
diff
changeset
|
322 |
2729 | 323 ifeq ($(CONFIG_LIBGSM),yes) |
324 OBJS += libgsm.o | |
325 endif | |
326 | |
0 | 327 # i386 mmx specific stuff |
2 | 328 ifeq ($(TARGET_MMX),yes) |
74 | 329 OBJS += i386/fdct_mmx.o i386/cputest.o \ |
32 | 330 i386/dsputil_mmx.o i386/mpegvideo_mmx.o \ |
338 | 331 i386/idct_mmx.o i386/motion_est_mmx.o \ |
1972 | 332 i386/simple_idct_mmx.o i386/fft_sse.o i386/vp3dsp_mmx.o \ |
333 i386/vp3dsp_sse2.o | |
2868 | 334 ifeq ($(CONFIG_GPL),yes) |
335 OBJS += i386/idct_mmx_xvid.o | |
336 endif | |
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
|
337 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
|
338 i386/fft_sse.o: CFLAGS+= -msse |
1869 | 339 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
|
340 endif |
0 | 341 endif |
342 | |
62 | 343 # armv4l specific stuff |
344 ifeq ($(TARGET_ARCH_ARMV4L),yes) | |
2734
aeea63c97878
Better ARM support for mplayer/ffmpeg, ported from atty fork
michael
parents:
2730
diff
changeset
|
345 ASM_OBJS += armv4l/jrevdct_arm.o armv4l/simple_idct_arm.o armv4l/dsputil_arm_s.o |
730 | 346 OBJS += armv4l/dsputil_arm.o armv4l/mpegvideo_arm.o |
2734
aeea63c97878
Better ARM support for mplayer/ffmpeg, ported from atty fork
michael
parents:
2730
diff
changeset
|
347 ifeq ($(TARGET_IWMMXT),yes) |
aeea63c97878
Better ARM support for mplayer/ffmpeg, ported from atty fork
michael
parents:
2730
diff
changeset
|
348 OBJS += armv4l/dsputil_iwmmxt.o armv4l/mpegvideo_iwmmxt.o |
aeea63c97878
Better ARM support for mplayer/ffmpeg, ported from atty fork
michael
parents:
2730
diff
changeset
|
349 endif |
62 | 350 endif |
351 | |
88 | 352 # sun mediaLib specific stuff |
353 # currently only works when libavcodec is used in mplayer | |
354 ifeq ($(HAVE_MLIB),yes) | |
355 OBJS += mlib/dsputil_mlib.o | |
356 CFLAGS += $(MLIB_INC) | |
357 endif | |
358 | |
2734
aeea63c97878
Better ARM support for mplayer/ffmpeg, ported from atty fork
michael
parents:
2730
diff
changeset
|
359 # Intel IPP specific stuff |
aeea63c97878
Better ARM support for mplayer/ffmpeg, ported from atty fork
michael
parents:
2730
diff
changeset
|
360 # currently only works when libavcodec is used in mplayer |
aeea63c97878
Better ARM support for mplayer/ffmpeg, ported from atty fork
michael
parents:
2730
diff
changeset
|
361 ifeq ($(HAVE_IPP),yes) |
aeea63c97878
Better ARM support for mplayer/ffmpeg, ported from atty fork
michael
parents:
2730
diff
changeset
|
362 CFLAGS += $(IPP_INC) |
aeea63c97878
Better ARM support for mplayer/ffmpeg, ported from atty fork
michael
parents:
2730
diff
changeset
|
363 endif |
aeea63c97878
Better ARM support for mplayer/ffmpeg, ported from atty fork
michael
parents:
2730
diff
changeset
|
364 |
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
365 # alpha specific stuff |
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
366 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
|
367 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
|
368 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
|
369 ASM_OBJS += alpha/dsputil_alpha_asm.o alpha/motion_est_mvi_asm.o |
2545 | 370 CFLAGS += -fforce-addr |
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
371 endif |
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
372 |
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
|
373 ifeq ($(TARGET_ARCH_POWERPC),yes) |
828
ace3ccd18dd2
Altivec Patch (Mark III) by (Dieter Shirley <dieters at schemasoft dot com>)
michaelni
parents:
827
diff
changeset
|
374 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
|
375 endif |
0012f75c92bb
altivec build tidyup patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
636
diff
changeset
|
376 |
689
efcbfbd18864
ps2 idct patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents:
683
diff
changeset
|
377 ifeq ($(TARGET_MMI),yes) |
721
71f669e9f633
ps2 optimizations update patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents:
705
diff
changeset
|
378 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
|
379 endif |
efcbfbd18864
ps2 idct patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents:
683
diff
changeset
|
380 |
638
0012f75c92bb
altivec build tidyup patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
636
diff
changeset
|
381 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
|
382 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
|
383 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
|
384 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
|
385 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
|
386 |
1259
e8c3884f2c7e
sh4 optimized idct & bswap patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
1258
diff
changeset
|
387 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
|
388 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
|
389 endif |
e8c3884f2c7e
sh4 optimized idct & bswap patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
1258
diff
changeset
|
390 |
1965
f74f306c30b5
vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents:
1960
diff
changeset
|
391 ifeq ($(TARGET_ARCH_SPARC),yes) |
f74f306c30b5
vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents:
1960
diff
changeset
|
392 OBJS+=sparc/dsputil_vis.o |
f74f306c30b5
vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents:
1960
diff
changeset
|
393 sparc/%.o: sparc/%.c |
2967 | 394 $(CC) -mcpu=ultrasparc -mtune=ultrasparc $(CFLAGS) -c -o $@ $< |
1965
f74f306c30b5
vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents:
1960
diff
changeset
|
395 endif |
2 | 396 |
3044
ed98beb48872
Move library name generation to configure, simplifies build system a bit more.
diego
parents:
3040
diff
changeset
|
397 NAME=avcodec |
3124 | 398 SUBDIR=libavcodec |
2817
b128802eb77b
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
2796
diff
changeset
|
399 LIBAVUTIL= $(SRC_PATH)/libavutil/$(LIBPREF)avutil$(LIBSUF) |
136 | 400 ifeq ($(BUILD_SHARED),yes) |
3040
6a388c616fa3
Create symbolic links for all library sonames and clean up Makefiles.
diego
parents:
3037
diff
changeset
|
401 LIBVERSION=$(LAVCVERSION) |
6a388c616fa3
Create symbolic links for all library sonames and clean up Makefiles.
diego
parents:
3037
diff
changeset
|
402 LIBMAJOR=$(LAVCMAJOR) |
136 | 403 endif |
784 | 404 TESTS= imgresample-test dct-test motion-test fft-test |
0 | 405 |
3124 | 406 EXTRAOBJS = $(AMREXTRALIBS) |
407 | |
408 include $(SRC_PATH)/common.mak | |
409 | |
410 $(LIB): $(AMRLIBS) | |
429 | 411 |
1297 | 412 amrlibs: |
413 $(MAKE) -C amr spclib fipoplib | |
414 | |
43 | 415 tests: apiexample cpuid_test $(TESTS) |
0 | 416 |
417 dsputil.o: dsputil.c dsputil.h | |
418 | |
3124 | 419 clean:: $(CLEANAMR) |
420 rm -f \ | |
3050
61e47d203191
Make clean/distclean consistent throughout all the Makefiles.
diego
parents:
3048
diff
changeset
|
421 i386/*.o i386/*~ \ |
62 | 422 armv4l/*.o armv4l/*~ \ |
88 | 423 mlib/*.o mlib/*~ \ |
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
424 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
|
425 ppc/*.o ppc/*~ \ |
689
efcbfbd18864
ps2 idct patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents:
683
diff
changeset
|
426 ps2/*.o ps2/*~ \ |
1259
e8c3884f2c7e
sh4 optimized idct & bswap patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
1258
diff
changeset
|
427 sh4/*.o sh4/*~ \ |
1965
f74f306c30b5
vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents:
1960
diff
changeset
|
428 sparc/*.o sparc/*~ \ |
338 | 429 liba52/*.o liba52/*~ \ |
430 apiexample $(TESTS) | |
0 | 431 |
1297 | 432 cleanamr: |
433 $(MAKE) -C amr clean | |
434 | |
435 cleanamrfloat: | |
436 rm -f amr_float/*.o | |
437 | |
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1472
diff
changeset
|
438 cleanamrwbfloat: |
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1472
diff
changeset
|
439 $(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
|
440 |
0 | 441 # api example program |
442 apiexample: apiexample.c $(LIB) | |
2817
b128802eb77b
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
2796
diff
changeset
|
443 $(CC) $(CFLAGS) -o $@ $< $(LIB) $(LIBAVUTIL) $(EXTRALIBS) -lm |
0 | 444 |
43 | 445 # cpuid test |
446 cpuid_test: i386/cputest.c | |
447 $(CC) $(CFLAGS) -D__TEST__ -o $@ $< | |
448 | |
0 | 449 # testing progs |
450 | |
451 imgresample-test: imgresample.c | |
644 | 452 $(CC) $(CFLAGS) -DTEST -o $@ $^ -lm |
0 | 453 |
979 | 454 dct-test: dct-test.o fdctref.o $(LIB) |
2872 | 455 $(CC) -o $@ $^ -lm $(LIBAVUTIL) |
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
|
456 |
74 | 457 motion-test: motion_test.o $(LIB) |
644 | 458 $(CC) -o $@ $^ -lm |
74 | 459 |
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
|
460 fft-test: fft-test.o $(LIB) |
2817
b128802eb77b
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
2796
diff
changeset
|
461 $(CC) -o $@ $^ $(LIBAVUTIL) -lm |