Mercurial > mplayer.hg
annotate libmpcodecs/Makefile @ 22324:475c60dcd459
10, checked for the wrong thing. Do aspect scaling only in config_video_out
if the vo responds that it supports this scheme by providing VOCTRL_UPDATE_SCREENINFO.
Fixes vo_xmga
author | reimar |
---|---|
date | Sun, 25 Feb 2007 14:35:53 +0000 |
parents | 675574bebb04 |
children | dd297c5f9ccd |
rev | line source |
---|---|
4878 | 1 |
2 include ../config.mak | |
3 | |
4 LIBNAME = libmpcodecs.a | |
21287
f423ce0a1c36
Move common code for generating multiple libraries to mpcommon.mak.
diego
parents:
21281
diff
changeset
|
5 ifeq ($(MENCODER),yes) |
5550 | 6 LIBNAME2 = libmpencoders.a |
17524
cc6cf286e337
Only compile libmpencoders if MEncoder has been enabled.
diego
parents:
17523
diff
changeset
|
7 endif |
cc6cf286e337
Only compile libmpencoders if MEncoder has been enabled.
diego
parents:
17523
diff
changeset
|
8 |
22241
be27c7642939
Remove internal minilzo, external liblzo can be used instead.
diego
parents:
21588
diff
changeset
|
9 SRCS = native/nuppelvideo.c \ |
21272
045618c5a082
cosmetics: Move around some entries for better readability.
diego
parents:
21271
diff
changeset
|
10 native/RTjpegN.c \ |
045618c5a082
cosmetics: Move around some entries for better readability.
diego
parents:
21271
diff
changeset
|
11 native/xa_gsm.c \ |
045618c5a082
cosmetics: Move around some entries for better readability.
diego
parents:
21271
diff
changeset
|
12 img_format.c \ |
21276 | 13 dec_audio.c \ |
14 ad.c \ | |
15 ad_alaw.c \ | |
16 ad_dk3adpcm.c \ | |
17 ad_dvdpcm.c \ | |
18 ad_hwac3.c \ | |
19 ad_hwmpa.c \ | |
20 ad_imaadpcm.c \ | |
21 ad_msadpcm.c \ | |
22 ad_msgsm.c \ | |
23 ad_pcm.c \ | |
24 dec_video.c \ | |
25 vd.c \ | |
26 vd_hmblck.c \ | |
27 vd_lzo.c \ | |
28 vd_mpegpes.c \ | |
29 vd_mtga.c \ | |
30 vd_null.c \ | |
31 vd_nuv.c \ | |
32 vd_raw.c \ | |
33 vd_sgi.c \ | |
34 vf.c \ | |
35 pullup.c \ | |
36 vf_1bpp.c \ | |
37 vf_2xsai.c \ | |
38 vf_blackframe.c \ | |
39 vf_bmovl.c \ | |
40 vf_boxblur.c \ | |
41 vf_crop.c \ | |
42 vf_cropdetect.c \ | |
43 vf_decimate.c \ | |
44 vf_delogo.c \ | |
45 vf_denoise3d.c \ | |
46 vf_detc.c \ | |
47 vf_dint.c \ | |
48 vf_divtc.c \ | |
49 vf_down3dright.c \ | |
50 vf_dsize.c \ | |
51 vf_dvbscale.c \ | |
52 vf_eq2.c \ | |
53 vf_eq.c \ | |
54 vf_expand.c \ | |
55 vf_field.c \ | |
56 vf_fil.c \ | |
57 vf_filmdint.c \ | |
58 vf_flip.c \ | |
59 vf_format.c \ | |
60 vf_framestep.c \ | |
61 vf_halfpack.c \ | |
62 vf_harddup.c \ | |
63 vf_hqdn3d.c \ | |
64 vf_hue.c \ | |
65 vf_il.c \ | |
66 vf_ilpack.c \ | |
67 vf_ivtc.c \ | |
68 vf_kerndeint.c \ | |
69 vf_mirror.c \ | |
70 vf_noformat.c \ | |
71 vf_noise.c \ | |
72 vf_palette.c \ | |
73 vf_perspective.c \ | |
74 vf_phase.c \ | |
75 vf_pp7.c \ | |
76 vf_pullup.c \ | |
77 vf_rectangle.c \ | |
78 vf_remove_logo.c \ | |
79 vf_rgb2bgr.c \ | |
80 vf_rgbtest.c \ | |
81 vf_rotate.c \ | |
82 vf_sab.c \ | |
83 vf_scale.c \ | |
84 vf_smartblur.c \ | |
85 vf_softpulldown.c \ | |
86 vf_softskip.c \ | |
87 vf_swapuv.c \ | |
88 vf_telecine.c \ | |
89 vf_test.c \ | |
90 vf_tfields.c \ | |
91 vf_tile.c \ | |
92 vf_tinterlace.c \ | |
93 vf_unsharp.c \ | |
94 vf_vo.c \ | |
95 vf_yadif.c \ | |
96 vf_yuvcsp.c \ | |
97 vf_yuy2.c \ | |
98 vf_yvu9.c \ | |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
99 |
21275 | 100 SRCS-$(CONFIG_ASS) += vf_ass.c |
21280 | 101 # These filters use private headers and do not work with shared libavcodec. |
102 SRCS-$(CONFIG_LIBAVCODEC) += vf_fspp.c \ | |
103 vf_geq.c \ | |
104 vf_mcdeint.c \ | |
105 vf_qp.c \ | |
106 vf_spp.c \ | |
21329 | 107 vf_uspp.c \ |
108 | |
21281 | 109 SRCS-$(CONFIG_LIBAVCODEC) += ad_ffmpeg.c vd_ffmpeg.c vf_lavc.c vf_lavcdeint.c |
110 SRCS-$(CONFIG_LIBAVCODEC_SO) += ad_ffmpeg.c vd_ffmpeg.c vf_lavc.c vf_lavcdeint.c | |
21276 | 111 SRCS-$(CONFIG_LIBPOSTPROC) += vf_pp.c |
112 SRCS-$(CONFIG_LIBPOSTPROC_SO) += vf_pp.c | |
113 SRCS-$(FAAD) += ad_faad.c | |
114 SRCS-$(JPEG) += vd_ijpg.c | |
115 SRCS-$(LIBA52) += ad_liba52.c | |
21281 | 116 SRCS-$(LIBDV) += ad_libdv.c vd_libdv.c |
21276 | 117 SRCS-$(LIBMAD) += ad_libmad.c |
118 SRCS-$(LIBMPEG2) += vd_libmpeg2.c | |
119 SRCS-$(LIBTHEORA) += vd_theora.c | |
120 SRCS-$(LIBVORBIS) += ad_libvorbis.c | |
121 SRCS-$(MP3LIB) += ad_mp3lib.c | |
122 SRCS-$(MUSEPACK) += ad_mpc.c | |
21281 | 123 SRCS-$(PNG) += vd_mpng.c vf_screenshot.c |
124 SRCS-$(QTX_CODECS) += ad_qtaudio.c vd_qtvideo.c | |
125 SRCS-$(REAL_CODECS) += ad_realaud.c vd_realvid.c | |
21276 | 126 SRCS-$(SPEEX) += ad_speex.c |
21281 | 127 SRCS-$(WIN32DLL) += ad_acm.c ad_dmo.c ad_dshow.c ad_twin.c \ |
128 vd_dmo.c vd_dshow.c vd_vfw.c vd_vfwex.c | |
21276 | 129 SRCS-$(XANIM_CODECS) += vd_xanim.c |
130 SRCS-$(XVID4) += vd_xvid4.c | |
21281 | 131 SRCS-$(ZORAN) += vd_zrmjpeg.c vf_zrmjpeg.c |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
132 |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
133 |
21288 | 134 SRCS2=ae.c \ |
15772 | 135 ae_pcm.c \ |
136 ve.c \ | |
137 ve_raw.c \ | |
8024 | 138 |
21288 | 139 SRCS2-$(CONFIG_LIBAVCODEC) += ae_lavc.c ve_lavc.c |
140 SRCS2-$(CONFIG_LIBAVCODEC_SO) += ae_lavc.c ve_lavc.c | |
141 SRCS2-$(LIBDV) += ve_libdv.c | |
22244
675574bebb04
Make liblzo conditional to the appropriate #defines.
diego
parents:
22241
diff
changeset
|
142 SRCS2-$(LIBLZO) += ve_nuv.c |
21288 | 143 SRCS2-$(QTX_CODECS) += ve_qtvideo.c |
144 SRCS2-$(WIN32DLL) += ve_vfw.c | |
145 SRCS2-$(X264) += ve_x264.c | |
146 SRCS2-$(XVID4) += ve_xvid4.c | |
147 SRCS2-$(FAAC) += ae_faac.c | |
148 SRCS2-$(TOOLAME) += ae_toolame.c | |
149 SRCS2-$(TWOLAME) += ae_twolame.c | |
150 SRCS2-$(MP3LAME) += ae_lame.c | |
15234 | 151 |
21275 | 152 |
21373 | 153 # -I.. to include ../liba52 before ../libavcodec/liba52. |
21259
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21228
diff
changeset
|
154 CFLAGS = -I.. \ |
16521
3636c18a1b5e
Break up all long lines that were missed during the last reformatting round.
diego
parents:
16520
diff
changeset
|
155 -Inative \ |
3636c18a1b5e
Break up all long lines that were missed during the last reformatting round.
diego
parents:
16520
diff
changeset
|
156 -I../libmpdemux \ |
19271
64d82a45a05d
introduce new 'stream' directory for all stream layer related components and split them from libmpdemux
ben
parents:
19190
diff
changeset
|
157 -I../stream \ |
16521
3636c18a1b5e
Break up all long lines that were missed during the last reformatting round.
diego
parents:
16520
diff
changeset
|
158 -I../loader \ |
4878 | 159 |
21390
fd1495e1538d
Add libav include paths to CFLAGS without indirection.
diego
parents:
21373
diff
changeset
|
160 CFLAGS-$(CONFIG_LIBAVUTIL) += -I../libavutil |
fd1495e1538d
Add libav include paths to CFLAGS without indirection.
diego
parents:
21373
diff
changeset
|
161 CFLAGS-$(CONFIG_LIBAVCODEC) += -I../libavcodec |
fd1495e1538d
Add libav include paths to CFLAGS without indirection.
diego
parents:
21373
diff
changeset
|
162 |
21259
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21228
diff
changeset
|
163 include ../mpcommon.mak |
4878 | 164 |
21259
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21228
diff
changeset
|
165 clean:: |
14138
40ac42c6dd6d
make clean should also clean the native subdirectory.
diego
parents:
13426
diff
changeset
|
166 rm -f native/*.o native/*.a native/*~ |
4878 | 167 |