Mercurial > mplayer.hg
annotate libmpcodecs/Makefile @ 20900:b0f2e9a16bb1
Move xscreensaver_heartbeat call next to vo check_events
author | uau |
---|---|
date | Tue, 14 Nov 2006 09:52:49 +0000 |
parents | ef6ce7551081 |
children | 41773d188756 |
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 |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
62 |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
63 |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
64 VIDEO_SRCS_LIB=vd_lzo.c \ |
15772 | 65 vd_nuv.c \ |
66 | |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
67 ifeq ($(LIBMPEG2),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
68 VIDEO_SRCS_LIB+=vd_libmpeg2.c |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
69 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
70 |
15772 | 71 VIDEO_SRCS_NAT=vd_hmblck.c \ |
72 vd_mpegpes.c \ | |
73 vd_mtga.c \ | |
74 vd_null.c \ | |
75 vd_raw.c \ | |
76 vd_sgi.c \ | |
77 | |
16521
3636c18a1b5e
Break up all long lines that were missed during the last reformatting round.
diego
parents:
16520
diff
changeset
|
78 VIDEO_SRCS=dec_video.c \ |
3636c18a1b5e
Break up all long lines that were missed during the last reformatting round.
diego
parents:
16520
diff
changeset
|
79 vd.c \ |
3636c18a1b5e
Break up all long lines that were missed during the last reformatting round.
diego
parents:
16520
diff
changeset
|
80 $(VIDEO_SRCS_NAT) \ |
3636c18a1b5e
Break up all long lines that were missed during the last reformatting round.
diego
parents:
16520
diff
changeset
|
81 $(VIDEO_SRCS_LIB) \ |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
82 |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
83 ifeq ($(CONFIG_LIBAVCODEC),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
84 VIDEO_SRCS+=vd_ffmpeg.c |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
85 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
86 ifeq ($(CONFIG_LIBAVCODEC_SO),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
87 VIDEO_SRCS+=vd_ffmpeg.c |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
88 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
89 ifeq ($(WIN32DLL),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
90 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
|
91 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
92 ifeq ($(QTX_CODECS),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
93 VIDEO_SRCS+=vd_qtvideo.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 ($(REAL_CODECS),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
96 VIDEO_SRCS+=vd_realvid.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 ($(XANIM_CODECS),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
99 VIDEO_SRCS+=vd_xanim.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 ($(LIBDV),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
102 VIDEO_SRCS+=vd_libdv.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 ($(LIBTHEORA),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
105 VIDEO_SRCS+=vd_theora.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 ($(XVID4),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
108 VIDEO_SRCS+=vd_xvid4.c |
20773 | 109 endif |
110 ifeq ($(XVID3),yes) | |
111 VIDEO_SRCS+=vd_xvid.c | |
18771
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 ($(ZORAN),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
114 VIDEO_SRCS+=vd_zrmjpeg.c |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
115 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
116 |
8024 | 117 |
15772 | 118 VFILTER_SRCS=vf.c \ |
119 pullup.c \ | |
120 vf_1bpp.c \ | |
121 vf_2xsai.c \ | |
19094 | 122 vf_blackframe.c \ |
15772 | 123 vf_bmovl.c \ |
124 vf_boxblur.c \ | |
125 vf_crop.c \ | |
126 vf_cropdetect.c \ | |
127 vf_decimate.c \ | |
128 vf_delogo.c \ | |
129 vf_denoise3d.c \ | |
130 vf_detc.c \ | |
131 vf_dint.c \ | |
132 vf_divtc.c \ | |
133 vf_down3dright.c \ | |
134 vf_dsize.c \ | |
135 vf_dvbscale.c \ | |
136 vf_eq2.c \ | |
137 vf_eq.c \ | |
138 vf_expand.c \ | |
139 vf_field.c \ | |
140 vf_fil.c \ | |
141 vf_filmdint.c \ | |
142 vf_flip.c \ | |
143 vf_format.c \ | |
144 vf_framestep.c \ | |
145 vf_halfpack.c \ | |
146 vf_harddup.c \ | |
147 vf_hqdn3d.c \ | |
148 vf_hue.c \ | |
149 vf_il.c \ | |
150 vf_ilpack.c \ | |
151 vf_ivtc.c \ | |
152 vf_kerndeint.c \ | |
153 vf_mirror.c \ | |
154 vf_noformat.c \ | |
155 vf_noise.c \ | |
156 vf_palette.c \ | |
157 vf_perspective.c \ | |
158 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
|
159 vf_pp7.c \ |
15772 | 160 vf_pullup.c \ |
161 vf_rectangle.c \ | |
162 vf_remove_logo.c \ | |
163 vf_rgb2bgr.c \ | |
164 vf_rgbtest.c \ | |
165 vf_rotate.c \ | |
166 vf_sab.c \ | |
167 vf_scale.c \ | |
168 vf_smartblur.c \ | |
169 vf_softpulldown.c \ | |
170 vf_softskip.c \ | |
171 vf_swapuv.c \ | |
172 vf_telecine.c \ | |
173 vf_test.c \ | |
174 vf_tfields.c \ | |
175 vf_tile.c \ | |
176 vf_tinterlace.c \ | |
177 vf_unsharp.c \ | |
178 vf_vo.c \ | |
179 vf_yuvcsp.c \ | |
180 vf_yuy2.c \ | |
181 vf_yvu9.c \ | |
18608 | 182 vf_yadif.c \ |
15772 | 183 |
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
|
184 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
|
185 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
|
186 |
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
|
187 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
|
188 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
|
189 vf_qp.c \ |
20266 | 190 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
|
191 vf_spp.c \ |
18590 | 192 vf_mcdeint.c \ |
17523
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
193 |
17463 | 194 ifeq ($(CONFIG_LIBPOSTPROC),yes) |
195 VFILTER_SRCS += vf_pp.c | |
196 endif | |
197 ifeq ($(CONFIG_LIBPOSTPROC_SO),yes) | |
11141 | 198 VFILTER_SRCS += vf_pp.c |
199 endif | |
200 | |
17523
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
201 ifeq ($(CONFIG_LIBAVCODEC),yes) |
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
202 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
|
203 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
|
204 endif |
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
205 ifeq ($(CONFIG_LIBAVCODEC_SO),yes) |
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
206 VFILTER_SRCS += $(VFILTER_LAVC_SRCS) |
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
207 endif |
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
208 |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
209 ifeq ($(PNG),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
210 VFILTER_SRCS += vf_screenshot.c |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
211 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
212 |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
213 |
15772 | 214 ENCODER_SRCS=ae.c \ |
215 ae_pcm.c \ | |
216 ve.c \ | |
217 ve_nuv.c \ | |
218 ve_raw.c \ | |
8024 | 219 |
17523
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
220 ifeq ($(CONFIG_LIBAVCODEC),yes) |
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
221 ENCODER_SRCS+=ve_lavc.c |
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
222 endif |
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
223 ifeq ($(CONFIG_LIBAVCODEC_SO),yes) |
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
224 ENCODER_SRCS+=ve_lavc.c |
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
225 endif |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
226 ifeq ($(WIN32DLL),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
227 ENCODER_SRCS+=ve_vfw.c |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
228 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
229 ifeq ($(QTX_CODECS),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
230 ENCODER_SRCS+=ve_qtvideo.c |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
231 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
232 ifeq ($(LIBDV),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
233 ENCODER_SRCS+=ve_libdv.c |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
234 endif |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
235 ifeq ($(XVID4),yes) |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
236 ENCODER_SRCS+=ve_xvid4.c |
20773 | 237 endif |
238 ifeq ($(XVID3),yes) | |
239 ENCODER_SRCS+=ve_xvid.c | |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
240 endif |
17523
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
241 ifeq ($(X264),yes) |
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
242 ENCODER_SRCS+=ve_x264.c |
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
243 endif |
f0e7712385dc
Move conditional compilation out of the code and into the build system.
diego
parents:
17488
diff
changeset
|
244 |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
245 |
17151
9a6b48d19e12
Remove MPlayer native 14_4 and 28_8 codecs (they are in lavc)
rtognimp
parents:
16946
diff
changeset
|
246 NATIVE_SRCS=native/minilzo.c \ |
15772 | 247 native/nuppelvideo.c \ |
248 native/RTjpegN.c \ | |
249 native/xa_gsm.c \ | |
5029 | 250 |
11662
173f22eb0505
vf_zrmjpeg MJPEG encoding filter, works together with vo_zr2. Only YV12
rik
parents:
11600
diff
changeset
|
251 ifeq ($(ZORAN),yes) |
173f22eb0505
vf_zrmjpeg MJPEG encoding filter, works together with vo_zr2. Only YV12
rik
parents:
11600
diff
changeset
|
252 VFILTER_SRCS += vf_zrmjpeg.c |
173f22eb0505
vf_zrmjpeg MJPEG encoding filter, works together with vo_zr2. Only YV12
rik
parents:
11600
diff
changeset
|
253 endif |
173f22eb0505
vf_zrmjpeg MJPEG encoding filter, works together with vo_zr2. Only YV12
rik
parents:
11600
diff
changeset
|
254 |
5029 | 255 ifeq ($(PNG),yes) |
5344 | 256 VIDEO_SRCS += vd_mpng.c |
5029 | 257 endif |
258 | |
259 ifeq ($(JPEG),yes) | |
5344 | 260 VIDEO_SRCS += vd_ijpg.c |
5029 | 261 endif |
4878 | 262 |
13426 | 263 ifeq ($(TOOLAME),yes) |
15234 | 264 ENCODER_SRCS += ae_toolame.c |
13426 | 265 EXTRA_INC += $(TOOLAME_EXTRAFLAGS) |
266 endif | |
267 | |
15359 | 268 ifeq ($(TWOLAME),yes) |
269 ENCODER_SRCS += ae_twolame.c | |
270 endif | |
271 | |
15234 | 272 ifeq ($(CONFIG_MP3LAME),yes) |
273 ENCODER_SRCS += ae_lame.c | |
274 endif | |
275 | |
16165 | 276 LIBAV_INC = |
277 ifeq ($(CONFIG_LIBAVUTIL),yes) | |
278 LIBAV_INC += -I../libavutil | |
279 endif | |
15234 | 280 ifeq ($(CONFIG_LIBAVCODEC),yes) |
16165 | 281 LIBAV_INC += -I../libavcodec |
15234 | 282 ENCODER_SRCS += ae_lavc.c |
283 endif | |
17387 | 284 ifeq ($(CONFIG_LIBAVCODEC_SO),yes) |
16251 | 285 ENCODER_SRCS += ae_lavc.c |
286 endif | |
287 | |
15958
087142ef3a2d
musepack demuxing and decoding support (demuxing is v7 bitstream only).
reimar
parents:
15944
diff
changeset
|
288 ifeq ($(MUSEPACK),yes) |
087142ef3a2d
musepack demuxing and decoding support (demuxing is v7 bitstream only).
reimar
parents:
15944
diff
changeset
|
289 AUDIO_SRCS += ad_mpc.c |
087142ef3a2d
musepack demuxing and decoding support (demuxing is v7 bitstream only).
reimar
parents:
15944
diff
changeset
|
290 endif |
087142ef3a2d
musepack demuxing and decoding support (demuxing is v7 bitstream only).
reimar
parents:
15944
diff
changeset
|
291 |
16915
6b1d1e4adaea
Speex support. Seeking and pts generation does not work.
reimar
parents:
16521
diff
changeset
|
292 ifeq ($(SPEEX),yes) |
6b1d1e4adaea
Speex support. Seeking and pts generation does not work.
reimar
parents:
16521
diff
changeset
|
293 AUDIO_SRCS += ad_speex.c |
6b1d1e4adaea
Speex support. Seeking and pts generation does not work.
reimar
parents:
16521
diff
changeset
|
294 endif |
6b1d1e4adaea
Speex support. Seeking and pts generation does not work.
reimar
parents:
16521
diff
changeset
|
295 |
15259 | 296 ifeq ($(FAAC),yes) |
297 ENCODER_SRCS += ae_faac.c | |
298 endif | |
299 | |
18937
9e95ac641e77
Initial libass release (without mencoder support).
eugeni
parents:
18771
diff
changeset
|
300 ifeq ($(CONFIG_ASS),yes) |
9e95ac641e77
Initial libass release (without mencoder support).
eugeni
parents:
18771
diff
changeset
|
301 VFILTER_SRCS += vf_ass.c |
9e95ac641e77
Initial libass release (without mencoder support).
eugeni
parents:
18771
diff
changeset
|
302 endif |
9e95ac641e77
Initial libass release (without mencoder support).
eugeni
parents:
18771
diff
changeset
|
303 |
16521
3636c18a1b5e
Break up all long lines that were missed during the last reformatting round.
diego
parents:
16520
diff
changeset
|
304 SRCS=$(AUDIO_SRCS) \ |
3636c18a1b5e
Break up all long lines that were missed during the last reformatting round.
diego
parents:
16520
diff
changeset
|
305 $(VIDEO_SRCS) \ |
3636c18a1b5e
Break up all long lines that were missed during the last reformatting round.
diego
parents:
16520
diff
changeset
|
306 $(VFILTER_SRCS) \ |
3636c18a1b5e
Break up all long lines that were missed during the last reformatting round.
diego
parents:
16520
diff
changeset
|
307 $(NATIVE_SRCS) \ |
3636c18a1b5e
Break up all long lines that were missed during the last reformatting round.
diego
parents:
16520
diff
changeset
|
308 img_format.c \ |
3636c18a1b5e
Break up all long lines that were missed during the last reformatting round.
diego
parents:
16520
diff
changeset
|
309 |
4878 | 310 OBJS=$(SRCS:.c=.o) |
311 | |
5550 | 312 SRCS2=$(ENCODER_SRCS) |
313 OBJS2=$(SRCS2:.c=.o) | |
314 | |
19420
4f71ed7cb512
Move all internal -I parameters to the front of CFLAGS to avoid using external
diego
parents:
19271
diff
changeset
|
315 CFLAGS = -I. -I.. \ |
16521
3636c18a1b5e
Break up all long lines that were missed during the last reformatting round.
diego
parents:
16520
diff
changeset
|
316 -Inative \ |
3636c18a1b5e
Break up all long lines that were missed during the last reformatting round.
diego
parents:
16520
diff
changeset
|
317 -I../libmpdemux \ |
19271
64d82a45a05d
introduce new 'stream' directory for all stream layer related components and split them from libmpdemux
ben
parents:
19190
diff
changeset
|
318 -I../stream \ |
16521
3636c18a1b5e
Break up all long lines that were missed during the last reformatting round.
diego
parents:
16520
diff
changeset
|
319 -I../loader \ |
3636c18a1b5e
Break up all long lines that were missed during the last reformatting round.
diego
parents:
16520
diff
changeset
|
320 $(LIBAV_INC) \ |
19420
4f71ed7cb512
Move all internal -I parameters to the front of CFLAGS to avoid using external
diego
parents:
19271
diff
changeset
|
321 $(OPTFLAGS) \ |
16521
3636c18a1b5e
Break up all long lines that were missed during the last reformatting round.
diego
parents:
16520
diff
changeset
|
322 -D_GNU_SOURCE \ |
4878 | 323 |
324 .SUFFIXES: .c .o | |
325 | |
326 # .PHONY: all clean | |
327 | |
328 .c.o: | |
329 $(CC) -c $(CFLAGS) -o $@ $< | |
330 | |
17524
cc6cf286e337
Only compile libmpencoders if MEncoder has been enabled.
diego
parents:
17523
diff
changeset
|
331 all: $(LIBS) |
5550 | 332 |
4878 | 333 $(LIBNAME): $(OBJS) |
334 $(AR) r $(LIBNAME) $(OBJS) | |
12634 | 335 $(RANLIB) $(LIBNAME) |
4878 | 336 |
5550 | 337 $(LIBNAME2): $(OBJS2) |
338 $(AR) r $(LIBNAME2) $(OBJS2) | |
12634 | 339 $(RANLIB) $(LIBNAME2) |
4878 | 340 |
341 clean: | |
342 rm -f *.o *.a *~ | |
14138
40ac42c6dd6d
make clean should also clean the native subdirectory.
diego
parents:
13426
diff
changeset
|
343 rm -f native/*.o native/*.a native/*~ |
4878 | 344 |
17488
ce1ba8fd57e7
Make clean/distclean behave uniformly in all directories.
diego
parents:
17463
diff
changeset
|
345 distclean: clean |
ce1ba8fd57e7
Make clean/distclean behave uniformly in all directories.
diego
parents:
17463
diff
changeset
|
346 rm -f .depend |
4878 | 347 |
348 dep: depend | |
349 | |
350 depend: | |
5550 | 351 $(CC) -MM $(CFLAGS) $(SRCS) $(SRCS2) 1>.depend |
4878 | 352 |
353 # | |
354 # include dependency files if they exist | |
355 # | |
356 ifneq ($(wildcard .depend),) | |
357 include .depend | |
358 endif | |
359 |