Mercurial > libavcodec.hg
annotate Makefile @ 3423:82b44a294635 libavcodec
increasing version for AVBitStreamFilters
| author | michael |
|---|---|
| date | Thu, 06 Jul 2006 15:35:29 +0000 |
| parents | b7826511f7b6 |
| children | 8a199b35cf57 |
| 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 |
| 3413 | 8 CFLAGS=$(OPTFLAGS) -DHAVE_AV_CONFIG_H -I.. -I$(SRC_PATH)/libavutil \ |
| 9 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCE $(AMR_CFLAGS) | |
| 0 | 10 |
|
2398
582e635cfa08
common.c -> bitstream.c (and the single non bitstream func -> utils.c)
michael
parents:
2362
diff
changeset
|
11 OBJS= bitstream.o utils.o mem.o allcodecs.o \ |
| 1042 | 12 mpegvideo.o jrevdct.o jfdctfst.o jfdctint.o\ |
| 2085 | 13 mpegaudio.o ac3enc.o mjpeg.o resample.o resample2.o dsputil.o \ |
| 1042 | 14 motion_est.o imgconvert.o imgresample.o \ |
| 1383 | 15 mpeg12.o mpegaudiodec.o pcm.o simple_idct.o \ |
| 2639 | 16 ratecontrol.o adpcm.o eval.o error_resilience.o \ |
| 17 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
|
18 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
|
19 vp3dsp.o h264idct.o rangecoder.o pnm.o h263.o msmpeg4.o h263dec.o \ |
|
3421
b7826511f7b6
AVBitStreamFilter (some thingy which can modify the bitstream like add or remove global headers or change the headers or ...)
michael
parents:
3417
diff
changeset
|
20 opt.o \ |
|
b7826511f7b6
AVBitStreamFilter (some thingy which can modify the bitstream like add or remove global headers or change the headers or ...)
michael
parents:
3417
diff
changeset
|
21 bitstream_filter.o \ |
|
b7826511f7b6
AVBitStreamFilter (some thingy which can modify the bitstream like add or remove global headers or change the headers or ...)
michael
parents:
3417
diff
changeset
|
22 |
| 2756 | 23 |
|
3208
084635b31002
since Michael prefers to keep dsputil.h private to libavcodec
mru
parents:
3207
diff
changeset
|
24 HEADERS = avcodec.h |
| 3124 | 25 |
| 2639 | 26 ifeq ($(CONFIG_AASC_DECODER),yes) |
| 27 OBJS+= aasc.o | |
| 28 endif | |
| 29 ifeq ($(CONFIG_ALAC_DECODER),yes) | |
| 30 OBJS+= alac.o | |
| 31 endif | |
| 32 ifneq ($(CONFIG_ASV1_DECODER)$(CONFIG_ASV1_ENCODER)$(CONFIG_ASV2_DECODER)$(CONFIG_ASV2_ENCODER),) | |
| 33 OBJS+= asv1.o | |
| 34 endif | |
|
3129
0ebbd476ba32
complete AVS playback system (from Creature Shock computer game),
melanson
parents:
3124
diff
changeset
|
35 ifeq ($(CONFIG_AVS_DECODER),yes) |
|
0ebbd476ba32
complete AVS playback system (from Creature Shock computer game),
melanson
parents:
3124
diff
changeset
|
36 OBJS+= avs.o |
|
0ebbd476ba32
complete AVS playback system (from Creature Shock computer game),
melanson
parents:
3124
diff
changeset
|
37 endif |
|
3395
adccbf4a1040
CAVS decoder by (Stefan Gehrer stefan.gehrer gmx.de)
michael
parents:
3359
diff
changeset
|
38 ifeq ($(CONFIG_CAVS_DECODER),yes) |
|
adccbf4a1040
CAVS decoder by (Stefan Gehrer stefan.gehrer gmx.de)
michael
parents:
3359
diff
changeset
|
39 OBJS+= cavs.o cavsdsp.o |
|
adccbf4a1040
CAVS decoder by (Stefan Gehrer stefan.gehrer gmx.de)
michael
parents:
3359
diff
changeset
|
40 endif |
| 2639 | 41 ifeq ($(CONFIG_CINEPAK_DECODER),yes) |
| 42 OBJS+= cinepak.o | |
| 43 endif | |
|
2956
5f51b1e0bed6
Cook compatibe decoder, patch by Benjamin Larsson
rtognimp
parents:
2949
diff
changeset
|
44 ifeq ($(CONFIG_COOK_DECODER),yes) |
|
5f51b1e0bed6
Cook compatibe decoder, patch by Benjamin Larsson
rtognimp
parents:
2949
diff
changeset
|
45 OBJS+= cook.o |
|
5f51b1e0bed6
Cook compatibe decoder, patch by Benjamin Larsson
rtognimp
parents:
2949
diff
changeset
|
46 endif |
| 2639 | 47 ifneq ($(CONFIG_CLJR_DECODER)$(CONFIG_CLJR_ENCODER),) |
| 48 OBJS+= cljr.o | |
| 49 endif | |
| 50 ifeq ($(CONFIG_CYUV_DECODER),yes) | |
| 51 OBJS+= cyuv.o | |
| 52 endif | |
|
2948
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_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
|
54 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
|
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_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
|
57 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
|
58 endif |
|
aebeb38eea7a
Make DV(B|D) subtitles (en|de)coders be conditonnaly compiled depending on the configure system
gpoirier
parents:
2946
diff
changeset
|
59 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
|
60 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
|
61 endif |
|
aebeb38eea7a
Make DV(B|D) subtitles (en|de)coders be conditonnaly compiled depending on the configure system
gpoirier
parents:
2946
diff
changeset
|
62 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
|
63 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
|
64 endif |
| 2639 | 65 ifneq ($(CONFIG_DVVIDEO_DECODER)$(CONFIG_DVVIDEO_ENCODER),) |
| 66 OBJS+= dv.o | |
| 67 endif | |
| 68 ifeq ($(CONFIG_EIGHTBPS_DECODER),yes) | |
| 69 OBJS+= 8bps.o | |
| 70 endif | |
| 71 ifneq ($(CONFIG_FFV1_DECODER)$(CONFIG_FFV1_ENCODER),) | |
| 72 OBJS+= ffv1.o | |
| 73 endif | |
| 74 ifeq ($(CONFIG_FLAC_DECODER),yes) | |
| 75 OBJS+= flac.o | |
| 76 endif | |
|
3353
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
3340
diff
changeset
|
77 ifeq ($(CONFIG_FLAC_ENCODER),yes) |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
3340
diff
changeset
|
78 OBJS+= flacenc.o |
|
5b901881d6ed
first rudimentary version of (Justin Ruggles jruggle earthlink net) flac encoder
michael
parents:
3340
diff
changeset
|
79 endif |
| 2639 | 80 ifeq ($(CONFIG_FLIC_DECODER),yes) |
| 81 OBJS+= flicvideo.o | |
| 82 endif | |
| 83 ifeq ($(CONFIG_FOURXM_DECODER),yes) | |
| 84 OBJS+= 4xm.o | |
| 85 endif | |
|
2700
485571c9182f
Fraps FPS1 video decoder (v1 & v2), courtesy of Roine Gustafsson <roine
melanson
parents:
2697
diff
changeset
|
86 ifeq ($(CONFIG_FRAPS_DECODER),yes) |
|
485571c9182f
Fraps FPS1 video decoder (v1 & v2), courtesy of Roine Gustafsson <roine
melanson
parents:
2697
diff
changeset
|
87 OBJS+= fraps.o |
|
485571c9182f
Fraps FPS1 video decoder (v1 & v2), courtesy of Roine Gustafsson <roine
melanson
parents:
2697
diff
changeset
|
88 endif |
| 2639 | 89 ifneq ($(CONFIG_H261_DECODER)$(CONFIG_H261_ENCODER),) |
| 90 OBJS+= h261.o | |
| 91 endif | |
| 92 ifneq ($(CONFIG_H264_DECODER)$(CONFIG_SVQ3_DECODER),) | |
| 93 OBJS+= h264.o | |
| 94 endif | |
| 95 ifneq ($(CONFIG_HUFFYUV_DECODER)$(CONFIG_HUFFYUV_ENCODER)$(CONFIG_FFVHUFF_DECODER)$(CONFIG_FFVHUFF_ENCODER),) | |
| 96 OBJS+= huffyuv.o | |
| 97 endif | |
| 98 ifeq ($(CONFIG_IDCIN_DECODER),yes) | |
| 99 OBJS+= idcinvideo.o | |
| 100 endif | |
| 101 ifeq ($(CONFIG_INDEO2_DECODER),yes) | |
| 102 OBJS+= indeo2.o | |
| 103 endif | |
| 104 ifeq ($(CONFIG_INDEO3_DECODER),yes) | |
| 105 OBJS+= indeo3.o | |
| 106 endif | |
| 107 ifeq ($(CONFIG_INTERPLAY_VIDEO_DECODER),yes) | |
| 108 OBJS+= interplayvideo.o | |
| 109 endif | |
|
3253
226ffbb6fd02
KMVC (used in Worms games) decoder. Works fine with samples from MPHQ
kostya
parents:
3229
diff
changeset
|
110 ifeq ($(CONFIG_KMVC_DECODER),yes) |
|
226ffbb6fd02
KMVC (used in Worms games) decoder. Works fine with samples from MPHQ
kostya
parents:
3229
diff
changeset
|
111 OBJS+= kmvc.o |
|
226ffbb6fd02
KMVC (used in Worms games) decoder. Works fine with samples from MPHQ
kostya
parents:
3229
diff
changeset
|
112 endif |
| 2639 | 113 ifneq ($(CONFIG_MSZH_DECODER)$(CONFIG_ZLIB_DECODER)$(CONFIG_ZLIB_ENCODER),) |
| 114 OBJS+= lcl.o | |
| 115 endif | |
| 116 ifeq ($(CONFIG_LOCO_DECODER),yes) | |
| 117 OBJS+= loco.o | |
| 118 endif | |
| 119 ifneq ($(CONFIG_MACE3_DECODER)$(CONFIG_MACE6_DECODER),) | |
| 120 OBJS+= mace.o | |
| 121 endif | |
| 122 ifeq ($(CONFIG_MSRLE_DECODER),yes) | |
| 123 OBJS+= msrle.o | |
| 124 endif | |
| 125 ifeq ($(CONFIG_MSVIDEO1_DECODER),yes) | |
| 126 OBJS+= msvideo1.o | |
| 127 endif | |
| 128 ifneq ($(CONFIG_PNG_DECODER)$(CONFIG_PNG_ENCODER),) | |
| 129 OBJS+= png.o | |
| 130 endif | |
|
2930
f9320ccf9f09
Place qdm2 and truemotion2 in ifdef block so that they can be disabled
rtognimp
parents:
2918
diff
changeset
|
131 ifeq ($(CONFIG_QDM2_DECODER),yes) |
|
f9320ccf9f09
Place qdm2 and truemotion2 in ifdef block so that they can be disabled
rtognimp
parents:
2918
diff
changeset
|
132 OBJS+= qdm2.o |
|
f9320ccf9f09
Place qdm2 and truemotion2 in ifdef block so that they can be disabled
rtognimp
parents:
2918
diff
changeset
|
133 endif |
| 2639 | 134 ifeq ($(CONFIG_QDRAW_DECODER),yes) |
| 135 OBJS+= qdrw.o | |
| 136 endif | |
| 137 ifeq ($(CONFIG_QPEG_DECODER),yes) | |
| 138 OBJS+= qpeg.o | |
| 139 endif | |
| 140 ifeq ($(CONFIG_QTRLE_DECODER),yes) | |
| 141 OBJS+= qtrle.o | |
| 142 endif | |
| 143 ifeq ($(CONFIG_RA_144_DECODER),yes) | |
| 144 OBJS+= ra144.o | |
| 145 endif | |
| 146 ifeq ($(CONFIG_RA_288_DECODER),yes) | |
| 147 OBJS+= ra288.o | |
| 148 endif | |
| 149 ifeq ($(CONFIG_ROQ_DECODER),yes) | |
| 150 OBJS+= roqvideo.o | |
| 151 endif | |
| 152 ifeq ($(CONFIG_RPZA_DECODER),yes) | |
| 153 OBJS+= rpza.o | |
| 154 endif | |
| 155 ifneq ($(CONFIG_RV10_DECODER)$(CONFIG_RV20_DECODER)$(CONFIG_RV10_ENCODER)$(CONFIG_RV20_ENCODER),) | |
| 156 OBJS+= rv10.o | |
| 157 endif | |
| 158 ifeq ($(CONFIG_SHORTEN_DECODER),yes) | |
| 159 OBJS+= shorten.o | |
| 160 endif | |
| 3209 | 161 ifneq ($(CONFIG_SMACKER_DECODER)$(CONFIG_SMACKAUD_DECODER),) |
| 162 OBJS+= smacker.o | |
| 163 endif | |
| 2639 | 164 ifeq ($(CONFIG_SMC_DECODER),yes) |
| 165 OBJS+= smc.o | |
| 166 endif | |
| 2662 | 167 ifneq ($(CONFIG_SNOW_DECODER)$(CONFIG_SNOW_ENCODER),) |
| 2639 | 168 OBJS+= snow.o |
| 169 endif | |
| 170 ifneq ($(CONFIG_SONIC_DECODER)$(CONFIG_SONIC_ENCODER)$(CONFIG_SONIC_LS_ENCODER),) | |
| 171 OBJS+= sonic.o | |
| 172 endif | |
| 173 ifneq ($(CONFIG_SVQ1_DECODER)$(CONFIG_SVQ1_ENCODER),) | |
| 174 OBJS+= svq1.o | |
| 175 endif | |
| 176 ifeq ($(CONFIG_TRUEMOTION1_DECODER),yes) | |
| 177 OBJS+= truemotion1.o | |
| 178 endif | |
|
2930
f9320ccf9f09
Place qdm2 and truemotion2 in ifdef block so that they can be disabled
rtognimp
parents:
2918
diff
changeset
|
179 ifeq ($(CONFIG_TRUEMOTION2_DECODER),yes) |
|
f9320ccf9f09
Place qdm2 and truemotion2 in ifdef block so that they can be disabled
rtognimp
parents:
2918
diff
changeset
|
180 OBJS+= truemotion2.o |
|
f9320ccf9f09
Place qdm2 and truemotion2 in ifdef block so that they can be disabled
rtognimp
parents:
2918
diff
changeset
|
181 endif |
|
3006
4007989367bc
TrueSpeech compatible audio decoder by Konstantin Shishkov
diego
parents:
2967
diff
changeset
|
182 ifeq ($(CONFIG_TRUESPEECH_DECODER),yes) |
|
4007989367bc
TrueSpeech compatible audio decoder by Konstantin Shishkov
diego
parents:
2967
diff
changeset
|
183 OBJS+= truespeech.o |
|
4007989367bc
TrueSpeech compatible audio decoder by Konstantin Shishkov
diego
parents:
2967
diff
changeset
|
184 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
|
185 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
|
186 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
|
187 endif |
| 2639 | 188 ifeq ($(CONFIG_TSCC_DECODER),yes) |
| 189 OBJS+= tscc.o | |
| 190 endif | |
| 3030 | 191 ifeq ($(CONFIG_CSCD_DECODER),yes) |
| 192 OBJS+= cscd.o | |
|
3034
d37065d8aeff
Our own LZO (1X) implementation, under LGPL and optimized for readability.
reimar
parents:
3032
diff
changeset
|
193 OBJS+= lzo.o |
| 3030 | 194 endif |
|
3224
28aaf0a0135e
NuppelVideo/MythTVVideo support, including rtjpeg decoder
reimar
parents:
3223
diff
changeset
|
195 ifeq ($(CONFIG_NUV_DECODER),yes) |
|
28aaf0a0135e
NuppelVideo/MythTVVideo support, including rtjpeg decoder
reimar
parents:
3223
diff
changeset
|
196 OBJS+= nuv.o |
|
28aaf0a0135e
NuppelVideo/MythTVVideo support, including rtjpeg decoder
reimar
parents:
3223
diff
changeset
|
197 OBJS+= rtjpeg.o |
|
28aaf0a0135e
NuppelVideo/MythTVVideo support, including rtjpeg decoder
reimar
parents:
3223
diff
changeset
|
198 OBJS+= lzo.o |
|
28aaf0a0135e
NuppelVideo/MythTVVideo support, including rtjpeg decoder
reimar
parents:
3223
diff
changeset
|
199 endif |
| 2639 | 200 ifeq ($(CONFIG_ULTI_DECODER),yes) |
| 201 OBJS+= ulti.o | |
| 202 endif | |
| 3359 | 203 ifneq ($(CONFIG_VC1_DECODER)$(CONFIG_WMV3_DECODER),) |
| 204 OBJS+= vc1.o | |
| 2639 | 205 endif |
| 206 ifneq ($(CONFIG_VCR1_DECODER)$(CONFIG_VCR1_ENCODER),) | |
| 207 OBJS+= vcr1.o | |
| 208 endif | |
| 209 ifneq ($(CONFIG_VMDVIDEO_DECODER)$(CONFIG_VMDAUDIO_DECODER),) | |
| 210 OBJS+= vmdav.o | |
| 211 endif | |
|
2697
4fe1c19fc7a3
Vorbis decoder by (Balatoni Denes | dbalatoni programozo hu)
michael
parents:
2662
diff
changeset
|
212 ifeq ($(CONFIG_VORBIS_DECODER),yes) |
|
4fe1c19fc7a3
Vorbis decoder by (Balatoni Denes | dbalatoni programozo hu)
michael
parents:
2662
diff
changeset
|
213 OBJS+= vorbis.o |
|
4fe1c19fc7a3
Vorbis decoder by (Balatoni Denes | dbalatoni programozo hu)
michael
parents:
2662
diff
changeset
|
214 endif |
| 2639 | 215 ifneq ($(CONFIG_VP3_DECODER)$(CONFIG_THEORA_DECODER),) |
| 216 OBJS+= vp3.o | |
| 217 endif | |
| 218 ifeq ($(CONFIG_VQA_DECODER),yes) | |
| 219 OBJS+= vqavideo.o | |
| 220 endif | |
| 221 ifneq ($(CONFIG_WMAV1_DECODER)$(CONFIG_WMAV2_DECODER),) | |
| 222 OBJS+= wmadec.o | |
| 223 endif | |
| 224 ifeq ($(CONFIG_WNV1_DECODER),yes) | |
| 225 OBJS+= wnv1.o | |
| 226 endif | |
| 227 ifeq ($(CONFIG_WS_SND1_DECODER),yes) | |
| 228 OBJS+= ws-snd1.o | |
| 229 endif | |
| 230 ifneq ($(CONFIG_XAN_WC3_DECODER)$(CONFIG_XAN_WC4_DECODER),) | |
| 231 OBJS+= xan.o | |
| 232 endif | |
| 233 ifeq ($(CONFIG_XL_DECODER),yes) | |
| 234 OBJS+= xl.o | |
| 235 endif | |
| 2949 | 236 ifeq ($(CONFIG_BMP_DECODER),yes) |
| 237 OBJS+= bmp.o | |
| 238 endif | |
|
3119
09ae2e981d64
complete American Laser Games MM playback system, courtesy of Peter Ross
melanson
parents:
3118
diff
changeset
|
239 ifeq ($(CONFIG_MMVIDEO_DECODER),yes) |
|
09ae2e981d64
complete American Laser Games MM playback system, courtesy of Peter Ross
melanson
parents:
3118
diff
changeset
|
240 OBJS+= mmvideo.o |
|
09ae2e981d64
complete American Laser Games MM playback system, courtesy of Peter Ross
melanson
parents:
3118
diff
changeset
|
241 endif |
| 3120 | 242 ifeq ($(CONFIG_ZMBV_DECODER),yes) |
| 243 OBJS+= zmbv.o | |
| 244 endif | |
| 3329 | 245 ifeq ($(CONFIG_FLASHSV_DECODER),yes) |
| 246 OBJS+= flashsv.o | |
| 247 endif | |
| 2949 | 248 |
|
3275
13460cb4ec73
cosmetics: Group all AMR variables together, add some newlines.
diego
parents:
3274
diff
changeset
|
249 |
| 3292 | 250 ifeq ($(AMR),yes) |
| 251 OBJS+= amr.o | |
| 252 endif | |
|
3275
13460cb4ec73
cosmetics: Group all AMR variables together, add some newlines.
diego
parents:
3274
diff
changeset
|
253 |
|
1258
802614404398
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
1247
diff
changeset
|
254 ifeq ($(AMR_NB),yes) |
| 3413 | 255 OBJS+= amr_float/sp_dec.o amr_float/sp_enc.o \ |
| 256 amr_float/interf_dec.o amr_float/interf_enc.o | |
|
3276
941c00ef6d94
Disentangle dependencies between amr_nb and amr_nb-fixed: amr_nb-fixed does
diego
parents:
3275
diff
changeset
|
257 endif |
|
941c00ef6d94
Disentangle dependencies between amr_nb and amr_nb-fixed: amr_nb-fixed does
diego
parents:
3275
diff
changeset
|
258 |
| 1297 | 259 ifeq ($(AMR_NB_FIXED),yes) |
| 3277 | 260 EXTRAOBJS += amr/*.o |
| 261 EXTRADEPS=amrlibs | |
|
1258
802614404398
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
1247
diff
changeset
|
262 endif |
|
802614404398
AMR-NB audio support patch by (<joca at rixmail dot se>)
michaelni
parents:
1247
diff
changeset
|
263 |
|
3275
13460cb4ec73
cosmetics: Group all AMR variables together, add some newlines.
diego
parents:
3274
diff
changeset
|
264 ifeq ($(AMR_WB),yes) |
|
13460cb4ec73
cosmetics: Group all AMR variables together, add some newlines.
diego
parents:
3274
diff
changeset
|
265 OBJS+= amrwb_float/dec_acelp.o amrwb_float/dec_dtx.o amrwb_float/dec_gain.o \ |
|
13460cb4ec73
cosmetics: Group all AMR variables together, add some newlines.
diego
parents:
3274
diff
changeset
|
266 amrwb_float/dec_if.o amrwb_float/dec_lpc.o amrwb_float/dec_main.o \ |
|
13460cb4ec73
cosmetics: Group all AMR variables together, add some newlines.
diego
parents:
3274
diff
changeset
|
267 amrwb_float/dec_rom.o amrwb_float/dec_util.o amrwb_float/enc_acelp.o \ |
|
13460cb4ec73
cosmetics: Group all AMR variables together, add some newlines.
diego
parents:
3274
diff
changeset
|
268 amrwb_float/enc_dtx.o amrwb_float/enc_gain.o amrwb_float/enc_if.o \ |
|
13460cb4ec73
cosmetics: Group all AMR variables together, add some newlines.
diego
parents:
3274
diff
changeset
|
269 amrwb_float/enc_lpc.o amrwb_float/enc_main.o amrwb_float/enc_rom.o \ |
|
13460cb4ec73
cosmetics: Group all AMR variables together, add some newlines.
diego
parents:
3274
diff
changeset
|
270 amrwb_float/enc_util.o amrwb_float/if_rom.o |
|
13460cb4ec73
cosmetics: Group all AMR variables together, add some newlines.
diego
parents:
3274
diff
changeset
|
271 endif |
|
13460cb4ec73
cosmetics: Group all AMR variables together, add some newlines.
diego
parents:
3274
diff
changeset
|
272 |
|
13460cb4ec73
cosmetics: Group all AMR variables together, add some newlines.
diego
parents:
3274
diff
changeset
|
273 |
| 1799 | 274 ifeq ($(HAVE_PTHREADS),yes) |
| 275 OBJS+= pthread.o | |
| 276 endif | |
| 277 | |
|
1822
7366bb5c363f
w32threads by (Gildas Bazin <gbazin at altern dot org>)
michael
parents:
1812
diff
changeset
|
278 ifeq ($(HAVE_W32THREADS),yes) |
|
7366bb5c363f
w32threads by (Gildas Bazin <gbazin at altern dot org>)
michael
parents:
1812
diff
changeset
|
279 OBJS+= w32thread.o |
|
7366bb5c363f
w32threads by (Gildas Bazin <gbazin at altern dot org>)
michael
parents:
1812
diff
changeset
|
280 endif |
|
7366bb5c363f
w32threads by (Gildas Bazin <gbazin at altern dot org>)
michael
parents:
1812
diff
changeset
|
281 |
|
3081
4bf348f8e2b1
os2 thread, network and freetype2 support by (Paul Smedley | paulat a t smedleydot d o t info)
michael
parents:
3073
diff
changeset
|
282 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
|
283 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
|
284 endif |
|
4bf348f8e2b1
os2 thread, network and freetype2 support by (Paul Smedley | paulat a t smedleydot d o t info)
michael
parents:
3073
diff
changeset
|
285 |
|
4bf348f8e2b1
os2 thread, network and freetype2 support by (Paul Smedley | paulat a t smedleydot d o t info)
michael
parents:
3073
diff
changeset
|
286 |
|
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
|
287 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
|
288 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
|
289 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
|
290 |
| 2 | 291 ASM_OBJS= |
| 0 | 292 |
| 1383 | 293 ifeq ($(HAVE_XVMC_ACCEL),yes) |
| 294 OBJS+= xvmcvideo.o | |
| 295 endif | |
| 296 | |
| 338 | 297 # 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
|
298 ifeq ($(CONFIG_AC3),yes) |
| 338 | 299 OBJS+= a52dec.o |
| 300 | |
| 301 # using builtin liba52 or runtime linked liba52.so.0 | |
| 429 | 302 ifneq ($(CONFIG_A52BIN),yes) |
| 338 | 303 OBJS+= liba52/bit_allocate.o liba52/bitstream.o liba52/downmix.o \ |
| 1194 | 304 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
|
305 endif |
| 429 | 306 endif |
| 0 | 307 |
|
3263
f554f78569b6
Have EXTRALIBS appear after other link options, fixes shared build on Cygwin.
diego
parents:
3253
diff
changeset
|
308 EXTRALIBS := -L../libavutil -lavutil$(BUILDSUF) $(EXTRALIBS) |
|
2817
b128802eb77b
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
2796
diff
changeset
|
309 |
|
2123
ef54decf5624
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
2085
diff
changeset
|
310 # currently using libdts for dts decoding |
|
ef54decf5624
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
2085
diff
changeset
|
311 ifeq ($(CONFIG_DTS),yes) |
|
ef54decf5624
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
2085
diff
changeset
|
312 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
|
313 CFLAGS += $(DTS_INC) |
|
2123
ef54decf5624
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
2085
diff
changeset
|
314 endif |
|
ef54decf5624
libdts support by (Benjamin Zores <ben at geexbox dot org>)
michael
parents:
2085
diff
changeset
|
315 |
| 1245 | 316 ifeq ($(CONFIG_FAAD),yes) |
| 317 OBJS+= faad.o | |
| 318 endif | |
| 319 | |
|
1500
726a81d83ddd
Patch for AAC encoding with libfaac by (Gildas Bazin <gbazin at altern dot org>)
michaelni
parents:
1498
diff
changeset
|
320 ifeq ($(CONFIG_FAAC),yes) |
|
726a81d83ddd
Patch for AAC encoding with libfaac by (Gildas Bazin <gbazin at altern dot org>)
michaelni
parents:
1498
diff
changeset
|
321 OBJS+= faac.o |
|
726a81d83ddd
Patch for AAC encoding with libfaac by (Gildas Bazin <gbazin at altern dot org>)
michaelni
parents:
1498
diff
changeset
|
322 endif |
|
726a81d83ddd
Patch for AAC encoding with libfaac by (Gildas Bazin <gbazin at altern dot org>)
michaelni
parents:
1498
diff
changeset
|
323 |
|
2131
060053df9538
XviD Support patch by (Adam Thayer <krevnik at comcast dot net>)
michael
parents:
2123
diff
changeset
|
324 ifeq ($(CONFIG_XVID),yes) |
|
060053df9538
XviD Support patch by (Adam Thayer <krevnik at comcast dot net>)
michael
parents:
2123
diff
changeset
|
325 OBJS+= xvidff.o |
| 3064 | 326 OBJS+= xvid_rc.o |
|
2131
060053df9538
XviD Support patch by (Adam Thayer <krevnik at comcast dot net>)
michael
parents:
2123
diff
changeset
|
327 endif |
|
060053df9538
XviD Support patch by (Adam Thayer <krevnik at comcast dot net>)
michael
parents:
2123
diff
changeset
|
328 |
|
2556
e5af3bc1d038
H.264 encoding with x264 by (M?ns Rullg?rd <mru inprovide com>)
michael
parents:
2552
diff
changeset
|
329 ifeq ($(CONFIG_X264),yes) |
|
e5af3bc1d038
H.264 encoding with x264 by (M?ns Rullg?rd <mru inprovide com>)
michael
parents:
2552
diff
changeset
|
330 OBJS+= x264.o |
|
e5af3bc1d038
H.264 encoding with x264 by (M?ns Rullg?rd <mru inprovide com>)
michael
parents:
2552
diff
changeset
|
331 endif |
|
e5af3bc1d038
H.264 encoding with x264 by (M?ns Rullg?rd <mru inprovide com>)
michael
parents:
2552
diff
changeset
|
332 |
|
258
9c975237ec64
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
333 ifeq ($(CONFIG_MP3LAME),yes) |
|
9c975237ec64
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
334 OBJS += mp3lameaudio.o |
|
9c975237ec64
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
335 endif |
|
9c975237ec64
- Added MP3 encoding through libmp3lame contributed by Lennert Buytenhek.
pulento
parents:
252
diff
changeset
|
336 |
| 2520 | 337 ifeq ($(CONFIG_LIBOGG),yes) |
| 338 ifeq ($(CONFIG_LIBVORBIS),yes) | |
|
636
57b9a37546a0
oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents:
633
diff
changeset
|
339 OBJS += oggvorbis.o |
|
57b9a37546a0
oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents:
633
diff
changeset
|
340 endif |
| 2520 | 341 ifeq ($(CONFIG_LIBTHEORA), yes) |
| 342 OBJS += oggtheora.o | |
| 343 endif | |
| 344 endif | |
|
636
57b9a37546a0
oggvorbis support patch by (Mark Hills <mark at pogo dot org dot uk>)
michaelni
parents:
633
diff
changeset
|
345 |
| 2729 | 346 ifeq ($(CONFIG_LIBGSM),yes) |
| 347 OBJS += libgsm.o | |
| 348 endif | |
| 349 | |
| 0 | 350 # i386 mmx specific stuff |
| 2 | 351 ifeq ($(TARGET_MMX),yes) |
| 74 | 352 OBJS += i386/fdct_mmx.o i386/cputest.o \ |
| 32 | 353 i386/dsputil_mmx.o i386/mpegvideo_mmx.o \ |
| 338 | 354 i386/idct_mmx.o i386/motion_est_mmx.o \ |
| 1972 | 355 i386/simple_idct_mmx.o i386/fft_sse.o i386/vp3dsp_mmx.o \ |
|
3207
33110c1008a4
Add the mmx and sse2 implementations of ff_snow_vertical_compose().
gpoirier
parents:
3175
diff
changeset
|
356 i386/vp3dsp_sse2.o i386/fft_3dn.o i386/fft_3dn2.o i386/snowdsp_mmx.o |
| 2868 | 357 ifeq ($(CONFIG_GPL),yes) |
| 358 OBJS += i386/idct_mmx_xvid.o | |
| 359 endif | |
| 3340 | 360 ifeq ($(TARGET_BUILTIN_VECTOR),yes) |
|
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
|
361 i386/fft_sse.o: CFLAGS+= -msse |
| 1869 | 362 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
|
363 endif |
| 3340 | 364 ifeq ($(TARGET_BUILTIN_3DNOW),yes) |
| 3175 | 365 i386/fft_3dn.o: CFLAGS+= -m3dnow |
|
3308
57078a058b96
fix compilation of 3dnowext instinsincs, both on ia32 and AMD64.
gpoirier
parents:
3307
diff
changeset
|
366 ifeq ($(TARGET_ARCH_X86),yes) |
|
57078a058b96
fix compilation of 3dnowext instinsincs, both on ia32 and AMD64.
gpoirier
parents:
3307
diff
changeset
|
367 i386/fft_3dn2.o: CFLAGS+= -march=athlon |
|
57078a058b96
fix compilation of 3dnowext instinsincs, both on ia32 and AMD64.
gpoirier
parents:
3307
diff
changeset
|
368 endif |
|
57078a058b96
fix compilation of 3dnowext instinsincs, both on ia32 and AMD64.
gpoirier
parents:
3307
diff
changeset
|
369 ifeq ($(TARGET_ARCH_X86_64),yes) |
|
57078a058b96
fix compilation of 3dnowext instinsincs, both on ia32 and AMD64.
gpoirier
parents:
3307
diff
changeset
|
370 i386/fft_3dn2.o: CFLAGS+= -march=k8 |
|
57078a058b96
fix compilation of 3dnowext instinsincs, both on ia32 and AMD64.
gpoirier
parents:
3307
diff
changeset
|
371 endif |
| 3175 | 372 endif |
| 0 | 373 endif |
| 374 | |
| 62 | 375 # armv4l specific stuff |
| 376 ifeq ($(TARGET_ARCH_ARMV4L),yes) | |
|
2734
aeea63c97878
Better ARM support for mplayer/ffmpeg, ported from atty fork
michael
parents:
2730
diff
changeset
|
377 ASM_OBJS += armv4l/jrevdct_arm.o armv4l/simple_idct_arm.o armv4l/dsputil_arm_s.o |
| 730 | 378 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
|
379 ifeq ($(TARGET_IWMMXT),yes) |
|
aeea63c97878
Better ARM support for mplayer/ffmpeg, ported from atty fork
michael
parents:
2730
diff
changeset
|
380 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
|
381 endif |
| 62 | 382 endif |
| 383 | |
| 88 | 384 # sun mediaLib specific stuff |
| 385 # currently only works when libavcodec is used in mplayer | |
| 386 ifeq ($(HAVE_MLIB),yes) | |
| 387 OBJS += mlib/dsputil_mlib.o | |
| 388 CFLAGS += $(MLIB_INC) | |
| 389 endif | |
| 390 | |
|
2734
aeea63c97878
Better ARM support for mplayer/ffmpeg, ported from atty fork
michael
parents:
2730
diff
changeset
|
391 # Intel IPP specific stuff |
|
aeea63c97878
Better ARM support for mplayer/ffmpeg, ported from atty fork
michael
parents:
2730
diff
changeset
|
392 # 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
|
393 ifeq ($(HAVE_IPP),yes) |
|
aeea63c97878
Better ARM support for mplayer/ffmpeg, ported from atty fork
michael
parents:
2730
diff
changeset
|
394 CFLAGS += $(IPP_INC) |
|
aeea63c97878
Better ARM support for mplayer/ffmpeg, ported from atty fork
michael
parents:
2730
diff
changeset
|
395 endif |
|
aeea63c97878
Better ARM support for mplayer/ffmpeg, ported from atty fork
michael
parents:
2730
diff
changeset
|
396 |
|
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
397 # alpha specific stuff |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
398 ifeq ($(TARGET_ARCH_ALPHA),yes) |
|
744
2f7da29ede37
Move Alpha optimized IDCT to own file. Based on a patch by M?ns
mellum
parents:
730
diff
changeset
|
399 OBJS += alpha/dsputil_alpha.o alpha/mpegvideo_alpha.o \ |
|
2f7da29ede37
Move Alpha optimized IDCT to own file. Based on a patch by M?ns
mellum
parents:
730
diff
changeset
|
400 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
|
401 ASM_OBJS += alpha/dsputil_alpha_asm.o alpha/motion_est_mvi_asm.o |
| 2545 | 402 CFLAGS += -fforce-addr |
|
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
403 endif |
|
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
404 |
|
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
|
405 ifeq ($(TARGET_ARCH_POWERPC),yes) |
|
828
ace3ccd18dd2
Altivec Patch (Mark III) by (Dieter Shirley <dieters at schemasoft dot com>)
michaelni
parents:
827
diff
changeset
|
406 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
|
407 endif |
|
0012f75c92bb
altivec build tidyup patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
636
diff
changeset
|
408 |
|
689
efcbfbd18864
ps2 idct patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents:
683
diff
changeset
|
409 ifeq ($(TARGET_MMI),yes) |
|
721
71f669e9f633
ps2 optimizations update patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents:
705
diff
changeset
|
410 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
|
411 endif |
|
efcbfbd18864
ps2 idct patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents:
683
diff
changeset
|
412 |
|
638
0012f75c92bb
altivec build tidyup patch by (Brian Foley <bfoley at compsoc dot nuigalway dot ie>)
michaelni
parents:
636
diff
changeset
|
413 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
|
414 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
|
415 ppc/fft_altivec.o ppc/gmc_altivec.o ppc/fdct_altivec.o \ |
| 3223 | 416 ppc/dsputil_h264_altivec.o ppc/dsputil_snow_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
|
417 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
|
418 |
|
1259
e8c3884f2c7e
sh4 optimized idct & bswap patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
1258
diff
changeset
|
419 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
|
420 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
|
421 endif |
|
e8c3884f2c7e
sh4 optimized idct & bswap patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
1258
diff
changeset
|
422 |
|
1965
f74f306c30b5
vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents:
1960
diff
changeset
|
423 ifeq ($(TARGET_ARCH_SPARC),yes) |
|
f74f306c30b5
vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents:
1960
diff
changeset
|
424 OBJS+=sparc/dsputil_vis.o |
|
f74f306c30b5
vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents:
1960
diff
changeset
|
425 sparc/%.o: sparc/%.c |
| 3417 | 426 $(CC) -mcpu=ultrasparc -mtune=ultrasparc $(CFLAGS) $(LIBOBJFLAGS) -c -o $@ $< |
|
1965
f74f306c30b5
vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents:
1960
diff
changeset
|
427 endif |
| 2 | 428 |
|
3044
ed98beb48872
Move library name generation to configure, simplifies build system a bit more.
diego
parents:
3040
diff
changeset
|
429 NAME=avcodec |
|
2817
b128802eb77b
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
2796
diff
changeset
|
430 LIBAVUTIL= $(SRC_PATH)/libavutil/$(LIBPREF)avutil$(LIBSUF) |
| 136 | 431 ifeq ($(BUILD_SHARED),yes) |
|
3040
6a388c616fa3
Create symbolic links for all library sonames and clean up Makefiles.
diego
parents:
3037
diff
changeset
|
432 LIBVERSION=$(LAVCVERSION) |
|
6a388c616fa3
Create symbolic links for all library sonames and clean up Makefiles.
diego
parents:
3037
diff
changeset
|
433 LIBMAJOR=$(LAVCMAJOR) |
| 136 | 434 endif |
| 784 | 435 TESTS= imgresample-test dct-test motion-test fft-test |
| 0 | 436 |
| 3124 | 437 include $(SRC_PATH)/common.mak |
| 438 | |
| 1297 | 439 amrlibs: |
| 440 $(MAKE) -C amr spclib fipoplib | |
| 441 | |
| 43 | 442 tests: apiexample cpuid_test $(TESTS) |
| 0 | 443 |
| 444 dsputil.o: dsputil.c dsputil.h | |
| 445 | |
| 3289 | 446 clean:: |
| 3124 | 447 rm -f \ |
|
3050
61e47d203191
Make clean/distclean consistent throughout all the Makefiles.
diego
parents:
3048
diff
changeset
|
448 i386/*.o i386/*~ \ |
| 62 | 449 armv4l/*.o armv4l/*~ \ |
| 88 | 450 mlib/*.o mlib/*~ \ |
|
214
73df666cacc7
Alpha optimizations by Falk Hueffner <falk.hueffner@student.uni-tuebingen.de>
nickols_k
parents:
174
diff
changeset
|
451 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
|
452 ppc/*.o ppc/*~ \ |
|
689
efcbfbd18864
ps2 idct patch by (Leon van Stuivenberg <leonvs at iae dot nl>)
michaelni
parents:
683
diff
changeset
|
453 ps2/*.o ps2/*~ \ |
|
1259
e8c3884f2c7e
sh4 optimized idct & bswap patch by (BERO <bero at geocities dot co dot jp>)
michaelni
parents:
1258
diff
changeset
|
454 sh4/*.o sh4/*~ \ |
|
1965
f74f306c30b5
vis detection patch by (James Morrison <ja2morri at csclub dot uwaterloo dot ca>)
michael
parents:
1960
diff
changeset
|
455 sparc/*.o sparc/*~ \ |
| 338 | 456 liba52/*.o liba52/*~ \ |
| 3289 | 457 amr_float/*.o \ |
| 338 | 458 apiexample $(TESTS) |
| 3290 | 459 -$(MAKE) -C amr clean |
| 460 -$(MAKE) -C amrwb_float -f makefile.gcc clean | |
|
1486
f22010affdce
AMR-WB support by (Johannes Carlsson <joca at rixmail dot se>)
michaelni
parents:
1472
diff
changeset
|
461 |
| 0 | 462 # api example program |
| 463 apiexample: apiexample.c $(LIB) | |
|
3229
0afff8f416e6
EXTRALIBS already contains -lm, no need to add it explicitly.
diego
parents:
3224
diff
changeset
|
464 $(CC) $(CFLAGS) -o $@ $< $(LIB) $(LIBAVUTIL) $(EXTRALIBS) |
| 0 | 465 |
| 43 | 466 # cpuid test |
| 467 cpuid_test: i386/cputest.c | |
| 468 $(CC) $(CFLAGS) -D__TEST__ -o $@ $< | |
| 469 | |
| 0 | 470 # testing progs |
| 471 | |
| 472 imgresample-test: imgresample.c | |
| 644 | 473 $(CC) $(CFLAGS) -DTEST -o $@ $^ -lm |
| 0 | 474 |
| 979 | 475 dct-test: dct-test.o fdctref.o $(LIB) |
| 2872 | 476 $(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
|
477 |
| 74 | 478 motion-test: motion_test.o $(LIB) |
| 644 | 479 $(CC) -o $@ $^ -lm |
| 74 | 480 |
|
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
|
481 fft-test: fft-test.o $(LIB) |
|
2817
b128802eb77b
libavutil: Utility code from libavcodec moved to a separate library.
al
parents:
2796
diff
changeset
|
482 $(CC) -o $@ $^ $(LIBAVUTIL) -lm |
