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