Mercurial > mplayer.hg
annotate libmpcodecs/Makefile @ 21270:64d299933e17
Reorder entries for better readability.
author | diego |
---|---|
date | Sun, 26 Nov 2006 21:55:40 +0000 |
parents | 45cdeb103b6f |
children | 02da705f907d |
rev | line source |
---|---|
4878 | 1 |
2 include ../config.mak | |
3 | |
4 LIBNAME = libmpcodecs.a | |
5550 | 5 LIBNAME2 = libmpencoders.a |
4878 | 6 |
17524
cc6cf286e337
Only compile libmpencoders if MEncoder has been enabled.
diego
parents:
17523
diff
changeset
|
7 LIBS =$(LIBNAME) |
cc6cf286e337
Only compile libmpencoders if MEncoder has been enabled.
diego
parents:
17523
diff
changeset
|
8 ifeq ($(MENCODER),yes) |
cc6cf286e337
Only compile libmpencoders if MEncoder has been enabled.
diego
parents:
17523
diff
changeset
|
9 LIBS+=$(LIBNAME2) |
cc6cf286e337
Only compile libmpencoders if MEncoder has been enabled.
diego
parents:
17523
diff
changeset
|
10 endif |
cc6cf286e337
Only compile libmpencoders if MEncoder has been enabled.
diego
parents:
17523
diff
changeset
|
11 |
15772 | 12 AUDIO_SRCS_LIB=ad_hwac3.c \ |
17397
2e20dd653147
ad_hwmpa: pass-through fake audio codec for hardware mpeg decoders
nicodvb
parents:
17387
diff
changeset
|
13 ad_hwmpa.c \ |
15772 | 14 |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
15 ifeq ($(LIBA52),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
16 AUDIO_SRCS_LIB+=ad_liba52.c |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
17 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
18 ifeq ($(MP3LIB),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
19 AUDIO_SRCS_LIB+=ad_mp3lib.c |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
20 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
21 |
15772 | 22 AUDIO_SRCS_NAT=ad_alaw.c \ |
23 ad_dk3adpcm.c \ | |
24 ad_dvdpcm.c \ | |
25 ad_imaadpcm.c \ | |
26 ad_msadpcm.c \ | |
27 ad_msgsm.c \ | |
28 ad_pcm.c \ | |
29 | |
16521
3636c18a1b5e
Break up all long lines that were missed during the last reformatting round.
diego
parents:
16520
diff
changeset
|
30 AUDIO_SRCS=dec_audio.c \ |
3636c18a1b5e
Break up all long lines that were missed during the last reformatting round.
diego
parents:
16520
diff
changeset
|
31 ad.c \ |
3636c18a1b5e
Break up all long lines that were missed during the last reformatting round.
diego
parents:
16520
diff
changeset
|
32 $(AUDIO_SRCS_LIB) \ |
3636c18a1b5e
Break up all long lines that were missed during the last reformatting round.
diego
parents:
16520
diff
changeset
|
33 $(AUDIO_SRCS_NAT) \ |
8024 | 34 |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
35 ifeq ($(CONFIG_LIBAVCODEC),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
36 AUDIO_SRCS+=ad_ffmpeg.c |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
37 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
38 ifeq ($(CONFIG_LIBAVCODEC_SO),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
39 AUDIO_SRCS+=ad_ffmpeg.c |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
40 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
41 ifeq ($(WIN32DLL),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
42 AUDIO_SRCS+=ad_acm.c ad_dmo.c ad_dshow.c ad_twin.c |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
43 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
44 ifeq ($(QTX_CODECS),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
45 AUDIO_SRCS+=ad_qtaudio.c |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
46 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
47 ifeq ($(REAL_CODECS),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
48 AUDIO_SRCS+=ad_realaud.c |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
49 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
50 ifeq ($(FAAD),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
51 AUDIO_SRCS += ad_faad.c |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
52 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
53 ifeq ($(LIBDV),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
54 AUDIO_SRCS+=ad_libdv.c |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
55 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
56 ifeq ($(LIBMAD),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
57 AUDIO_SRCS+=ad_libmad.c |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
58 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
59 ifeq ($(LIBVORBIS),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
60 AUDIO_SRCS+=ad_libvorbis.c |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
61 endif |
21270 | 62 ifeq ($(MUSEPACK),yes) |
63 AUDIO_SRCS += ad_mpc.c | |
64 endif | |
65 ifeq ($(SPEEX),yes) | |
66 AUDIO_SRCS += ad_speex.c | |
67 endif | |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
68 |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
69 |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
70 VIDEO_SRCS_LIB=vd_lzo.c \ |
15772 | 71 vd_nuv.c \ |
72 | |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
73 ifeq ($(LIBMPEG2),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
74 VIDEO_SRCS_LIB+=vd_libmpeg2.c |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
75 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
76 |
15772 | 77 VIDEO_SRCS_NAT=vd_hmblck.c \ |
78 vd_mpegpes.c \ | |
79 vd_mtga.c \ | |
80 vd_null.c \ | |
81 vd_raw.c \ | |
82 vd_sgi.c \ | |
83 | |
16521
3636c18a1b5e
Break up all long lines that were missed during the last reformatting round.
diego
parents:
16520
diff
changeset
|
84 VIDEO_SRCS=dec_video.c \ |
3636c18a1b5e
Break up all long lines that were missed during the last reformatting round.
diego
parents:
16520
diff
changeset
|
85 vd.c \ |
3636c18a1b5e
Break up all long lines that were missed during the last reformatting round.
diego
parents:
16520
diff
changeset
|
86 $(VIDEO_SRCS_NAT) \ |
3636c18a1b5e
Break up all long lines that were missed during the last reformatting round.
diego
parents:
16520
diff
changeset
|
87 $(VIDEO_SRCS_LIB) \ |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
88 |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
89 ifeq ($(CONFIG_LIBAVCODEC),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
90 VIDEO_SRCS+=vd_ffmpeg.c |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
91 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
92 ifeq ($(CONFIG_LIBAVCODEC_SO),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
93 VIDEO_SRCS+=vd_ffmpeg.c |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
94 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
95 ifeq ($(WIN32DLL),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
96 VIDEO_SRCS+=vd_dmo.c vd_dshow.c vd_vfw.c vd_vfwex.c |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
97 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
98 ifeq ($(QTX_CODECS),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
99 VIDEO_SRCS+=vd_qtvideo.c |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
100 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
101 ifeq ($(REAL_CODECS),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
102 VIDEO_SRCS+=vd_realvid.c |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
103 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
104 ifeq ($(XANIM_CODECS),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
105 VIDEO_SRCS+=vd_xanim.c |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
106 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
107 ifeq ($(LIBDV),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
108 VIDEO_SRCS+=vd_libdv.c |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
109 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
110 ifeq ($(LIBTHEORA),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
111 VIDEO_SRCS+=vd_theora.c |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
112 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
113 ifeq ($(XVID4),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
114 VIDEO_SRCS+=vd_xvid4.c |
20773 | 115 endif |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
116 ifeq ($(ZORAN),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
117 VIDEO_SRCS+=vd_zrmjpeg.c |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
118 endif |
21270 | 119 ifeq ($(PNG),yes) |
120 VIDEO_SRCS += vd_mpng.c | |
121 endif | |
122 ifeq ($(JPEG),yes) | |
123 VIDEO_SRCS += vd_ijpg.c | |
124 endif | |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
125 |
8024 | 126 |
15772 | 127 VFILTER_SRCS=vf.c \ |
128 pullup.c \ | |
129 vf_1bpp.c \ | |
130 vf_2xsai.c \ | |
19094 | 131 vf_blackframe.c \ |
15772 | 132 vf_bmovl.c \ |
133 vf_boxblur.c \ | |
134 vf_crop.c \ | |
135 vf_cropdetect.c \ | |
136 vf_decimate.c \ | |
137 vf_delogo.c \ | |
138 vf_denoise3d.c \ | |
139 vf_detc.c \ | |
140 vf_dint.c \ | |
141 vf_divtc.c \ | |
142 vf_down3dright.c \ | |
143 vf_dsize.c \ | |
144 vf_dvbscale.c \ | |
145 vf_eq2.c \ | |
146 vf_eq.c \ | |
147 vf_expand.c \ | |
148 vf_field.c \ | |
149 vf_fil.c \ | |
150 vf_filmdint.c \ | |
151 vf_flip.c \ | |
152 vf_format.c \ | |
153 vf_framestep.c \ | |
154 vf_halfpack.c \ | |
155 vf_harddup.c \ | |
156 vf_hqdn3d.c \ | |
157 vf_hue.c \ | |
158 vf_il.c \ | |
159 vf_ilpack.c \ | |
160 vf_ivtc.c \ | |
161 vf_kerndeint.c \ | |
162 vf_mirror.c \ | |
163 vf_noformat.c \ | |
164 vf_noise.c \ | |
165 vf_palette.c \ | |
166 vf_perspective.c \ | |
167 vf_phase.c \ | |
15944
1a0c715343d2
pp7 filter (spp=6 filter with 7 point dct where only the center sample is used after idct)
michael
parents:
15772
diff
changeset
|
168 vf_pp7.c \ |
15772 | 169 vf_pullup.c \ |
170 vf_rectangle.c \ | |
171 vf_remove_logo.c \ | |
172 vf_rgb2bgr.c \ | |
173 vf_rgbtest.c \ | |
174 vf_rotate.c \ | |
175 vf_sab.c \ | |
176 vf_scale.c \ | |
177 vf_smartblur.c \ | |
178 vf_softpulldown.c \ | |
179 vf_softskip.c \ | |
180 vf_swapuv.c \ | |
181 vf_telecine.c \ | |
182 vf_test.c \ | |
183 vf_tfields.c \ | |
184 vf_tile.c \ | |
185 vf_tinterlace.c \ | |
186 vf_unsharp.c \ | |
187 vf_vo.c \ | |
188 vf_yuvcsp.c \ | |
189 vf_yuy2.c \ | |
190 vf_yvu9.c \ | |
18608 | 191 vf_yadif.c \ |
15772 | 192 |
17882
8dd9503e4d19
compile in the filters that depend on libavcodec/dsputil.h only when mplayer is configured to use the imported libavcodec
nicodvb
parents:
17524
diff
changeset
|
193 VFILTER_LAVC_SRCS += vf_lavc.c \ |
17523
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
194 vf_lavcdeint.c \ |
17882
8dd9503e4d19
compile in the filters that depend on libavcodec/dsputil.h only when mplayer is configured to use the imported libavcodec
nicodvb
parents:
17524
diff
changeset
|
195 |
8dd9503e4d19
compile in the filters that depend on libavcodec/dsputil.h only when mplayer is configured to use the imported libavcodec
nicodvb
parents:
17524
diff
changeset
|
196 VFILTER_LAVC_DSPUTIL_SRCS += vf_uspp.c \ |
8dd9503e4d19
compile in the filters that depend on libavcodec/dsputil.h only when mplayer is configured to use the imported libavcodec
nicodvb
parents:
17524
diff
changeset
|
197 vf_fspp.c \ |
8dd9503e4d19
compile in the filters that depend on libavcodec/dsputil.h only when mplayer is configured to use the imported libavcodec
nicodvb
parents:
17524
diff
changeset
|
198 vf_qp.c \ |
20266 | 199 vf_geq.c \ |
17882
8dd9503e4d19
compile in the filters that depend on libavcodec/dsputil.h only when mplayer is configured to use the imported libavcodec
nicodvb
parents:
17524
diff
changeset
|
200 vf_spp.c \ |
18590 | 201 vf_mcdeint.c \ |
17523
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
202 |
17463 | 203 ifeq ($(CONFIG_LIBPOSTPROC),yes) |
204 VFILTER_SRCS += vf_pp.c | |
205 endif | |
206 ifeq ($(CONFIG_LIBPOSTPROC_SO),yes) | |
11141 | 207 VFILTER_SRCS += vf_pp.c |
208 endif | |
17523
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
209 ifeq ($(CONFIG_LIBAVCODEC),yes) |
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
210 VFILTER_SRCS += $(VFILTER_LAVC_SRCS) |
17882
8dd9503e4d19
compile in the filters that depend on libavcodec/dsputil.h only when mplayer is configured to use the imported libavcodec
nicodvb
parents:
17524
diff
changeset
|
211 VFILTER_SRCS += $(VFILTER_LAVC_DSPUTIL_SRCS) |
17523
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
212 endif |
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
213 ifeq ($(CONFIG_LIBAVCODEC_SO),yes) |
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
214 VFILTER_SRCS += $(VFILTER_LAVC_SRCS) |
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
215 endif |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
216 ifeq ($(PNG),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
217 VFILTER_SRCS += vf_screenshot.c |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
218 endif |
21270 | 219 ifeq ($(ZORAN),yes) |
220 VFILTER_SRCS += vf_zrmjpeg.c | |
221 endif | |
222 ifeq ($(CONFIG_ASS),yes) | |
223 VFILTER_SRCS += vf_ass.c | |
224 endif | |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
225 |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
226 |
15772 | 227 ENCODER_SRCS=ae.c \ |
228 ae_pcm.c \ | |
229 ve.c \ | |
230 ve_nuv.c \ | |
231 ve_raw.c \ | |
8024 | 232 |
17523
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
233 ifeq ($(CONFIG_LIBAVCODEC),yes) |
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
234 ENCODER_SRCS+=ve_lavc.c |
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
235 endif |
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
236 ifeq ($(CONFIG_LIBAVCODEC_SO),yes) |
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
237 ENCODER_SRCS+=ve_lavc.c |
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
238 endif |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
239 ifeq ($(WIN32DLL),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
240 ENCODER_SRCS+=ve_vfw.c |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
241 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
242 ifeq ($(QTX_CODECS),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
243 ENCODER_SRCS+=ve_qtvideo.c |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
244 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
245 ifeq ($(LIBDV),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
246 ENCODER_SRCS+=ve_libdv.c |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
247 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
248 ifeq ($(XVID4),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
249 ENCODER_SRCS+=ve_xvid4.c |
20773 | 250 endif |
17523
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
251 ifeq ($(X264),yes) |
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
252 ENCODER_SRCS+=ve_x264.c |
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
253 endif |
13426 | 254 ifeq ($(TOOLAME),yes) |
15234 | 255 ENCODER_SRCS += ae_toolame.c |
13426 | 256 endif |
15359 | 257 ifeq ($(TWOLAME),yes) |
258 ENCODER_SRCS += ae_twolame.c | |
259 endif | |
21180
2f1d3f01a244
Rename CONFIG_MP3LAME variable, the variable for LAME support in FFmpeg
diego
parents:
21104
diff
changeset
|
260 ifeq ($(MP3LAME),yes) |
15234 | 261 ENCODER_SRCS += ae_lame.c |
262 endif | |
21270 | 263 ifeq ($(FAAC),yes) |
264 ENCODER_SRCS += ae_faac.c | |
265 endif | |
266 ifeq ($(CONFIG_LIBAVCODEC_SO),yes) | |
267 ENCODER_SRCS += ae_lavc.c | |
268 endif | |
269 ifeq ($(CONFIG_LIBAVCODEC),yes) | |
270 ENCODER_SRCS += ae_lavc.c | |
271 endif | |
15234 | 272 |
16165 | 273 ifeq ($(CONFIG_LIBAVUTIL),yes) |
274 LIBAV_INC += -I../libavutil | |
275 endif | |
15234 | 276 ifeq ($(CONFIG_LIBAVCODEC),yes) |
16165 | 277 LIBAV_INC += -I../libavcodec |
15958
087142ef3a2d
musepack demuxing and decoding support (demuxing is v7 bitstream only).
reimar
parents:
15944
diff
changeset
|
278 endif |
087142ef3a2d
musepack demuxing and decoding support (demuxing is v7 bitstream only).
reimar
parents:
15944
diff
changeset
|
279 |
16915
6b1d1e4adaea
Speex support. Seeking and pts generation does not work.
reimar
parents:
16521
diff
changeset
|
280 |
21270 | 281 NATIVE_SRCS=native/minilzo.c \ |
282 native/nuppelvideo.c \ | |
283 native/RTjpegN.c \ | |
284 native/xa_gsm.c \ | |
18937
9e95ac641e77
Initial libass release (without mencoder support).
eugeni
parents:
18771
diff
changeset
|
285 |
16521
3636c18a1b5e
Break up all long lines that were missed during the last reformatting round.
diego
parents:
16520
diff
changeset
|
286 SRCS=$(AUDIO_SRCS) \ |
3636c18a1b5e
Break up all long lines that were missed during the last reformatting round.
diego
parents:
16520
diff
changeset
|
287 $(VIDEO_SRCS) \ |
3636c18a1b5e
Break up all long lines that were missed during the last reformatting round.
diego
parents:
16520
diff
changeset
|
288 $(VFILTER_SRCS) \ |
3636c18a1b5e
Break up all long lines that were missed during the last reformatting round.
diego
parents:
16520
diff
changeset
|
289 $(NATIVE_SRCS) \ |
3636c18a1b5e
Break up all long lines that were missed during the last reformatting round.
diego
parents:
16520
diff
changeset
|
290 img_format.c \ |
3636c18a1b5e
Break up all long lines that were missed during the last reformatting round.
diego
parents:
16520
diff
changeset
|
291 |
4878 | 292 OBJS=$(SRCS:.c=.o) |
293 | |
5550 | 294 SRCS2=$(ENCODER_SRCS) |
295 OBJS2=$(SRCS2:.c=.o) | |
296 | |
21259
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21228
diff
changeset
|
297 CFLAGS = -I.. \ |
16521
3636c18a1b5e
Break up all long lines that were missed during the last reformatting round.
diego
parents:
16520
diff
changeset
|
298 -Inative \ |
3636c18a1b5e
Break up all long lines that were missed during the last reformatting round.
diego
parents:
16520
diff
changeset
|
299 -I../libmpdemux \ |
19271
64d82a45a05d
introduce new 'stream' directory for all stream layer related components and split them from libmpdemux
ben
parents:
19190
diff
changeset
|
300 -I../stream \ |
16521
3636c18a1b5e
Break up all long lines that were missed during the last reformatting round.
diego
parents:
16520
diff
changeset
|
301 -I../loader \ |
3636c18a1b5e
Break up all long lines that were missed during the last reformatting round.
diego
parents:
16520
diff
changeset
|
302 $(LIBAV_INC) \ |
3636c18a1b5e
Break up all long lines that were missed during the last reformatting round.
diego
parents:
16520
diff
changeset
|
303 -D_GNU_SOURCE \ |
4878 | 304 |
21259
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21228
diff
changeset
|
305 include ../mpcommon.mak |
4878 | 306 |
17524
cc6cf286e337
Only compile libmpencoders if MEncoder has been enabled.
diego
parents:
17523
diff
changeset
|
307 all: $(LIBS) |
5550 | 308 |
21228 | 309 $(LIBNAME2): $(OBJS2) |
310 $(AR) r $@ $^ | |
311 $(RANLIB) $@ | |
4878 | 312 |
21259
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21228
diff
changeset
|
313 clean:: |
14138
40ac42c6dd6d
make clean should also clean the native subdirectory.
diego
parents:
13426
diff
changeset
|
314 rm -f native/*.o native/*.a native/*~ |
4878 | 315 |