Mercurial > mplayer.hg
annotate libmpcodecs/Makefile @ 25376:382aeacc771f
The buffer used for pread need be aligned, but currently it got an offset 23
to the structure head. This will cause the pread always got random data
on some machines (such as my iMac G5 PPC with 10.5 os) so can not play vcd.
I also tried use DKIOCCDREAD ioctl call, but the result is same -- buffer need
be aligned. It could be a bug of os x or its dev lib.
Now fix this problem by move the buffer to a good aligned position in structure.
author | ulion |
---|---|
date | Sat, 15 Dec 2007 12:17:51 +0000 |
parents | 1d9ea74f79a0 |
children | 7d74f109704b |
rev | line source |
---|---|
4878 | 1 include ../config.mak |
2 | |
22528
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22341
diff
changeset
|
3 LIBNAME_COMMON = libmpcodecs.a |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22341
diff
changeset
|
4 LIBNAME_MENCODER = libmpencoders.a |
17524
cc6cf286e337
Only compile libmpencoders if MEncoder has been enabled.
diego
parents:
17523
diff
changeset
|
5 |
22528
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22341
diff
changeset
|
6 SRCS_COMMON = native/nuppelvideo.c \ |
22531
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
7 native/RTjpegN.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
8 native/xa_gsm.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
9 img_format.c \ |
23994
8572d2ef5263
Move alloc_mpi and copy_mpi from libmenu/vf_menu.c to libmpcodecs/mp_image.c.
cehoyos
parents:
23831
diff
changeset
|
10 mp_image.c \ |
22531
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
11 dec_audio.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
12 ad.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
13 ad_alaw.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
14 ad_dk3adpcm.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
15 ad_dvdpcm.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
16 ad_hwac3.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
17 ad_hwmpa.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
18 ad_imaadpcm.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
19 ad_msadpcm.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
20 ad_msgsm.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
21 ad_pcm.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
22 dec_video.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
23 vd.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
24 vd_hmblck.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
25 vd_lzo.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
26 vd_mpegpes.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
27 vd_mtga.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
28 vd_null.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
29 vd_nuv.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
30 vd_raw.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
31 vd_sgi.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
32 vf.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
33 pullup.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
34 vf_1bpp.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
35 vf_2xsai.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
36 vf_blackframe.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
37 vf_boxblur.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
38 vf_crop.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
39 vf_cropdetect.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
40 vf_decimate.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
41 vf_delogo.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
42 vf_denoise3d.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
43 vf_detc.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
44 vf_dint.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
45 vf_divtc.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
46 vf_down3dright.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
47 vf_dsize.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
48 vf_dvbscale.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
49 vf_eq2.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
50 vf_eq.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
51 vf_expand.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
52 vf_field.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
53 vf_fil.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
54 vf_filmdint.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
55 vf_flip.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
56 vf_format.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
57 vf_framestep.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
58 vf_halfpack.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
59 vf_harddup.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
60 vf_hqdn3d.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
61 vf_hue.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
62 vf_il.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
63 vf_ilpack.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
64 vf_ivtc.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
65 vf_kerndeint.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
66 vf_mirror.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
67 vf_noformat.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
68 vf_noise.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
69 vf_palette.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
70 vf_perspective.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
71 vf_phase.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
72 vf_pp7.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
73 vf_pullup.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
74 vf_rectangle.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
75 vf_remove_logo.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
76 vf_rgb2bgr.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
77 vf_rgbtest.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
78 vf_rotate.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
79 vf_sab.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
80 vf_scale.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
81 vf_smartblur.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
82 vf_softpulldown.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
83 vf_softskip.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
84 vf_swapuv.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
85 vf_telecine.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
86 vf_test.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
87 vf_tfields.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
88 vf_tile.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
89 vf_tinterlace.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
90 vf_unsharp.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
91 vf_vo.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
92 vf_yadif.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
93 vf_yuvcsp.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
94 vf_yuy2.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
95 vf_yvu9.c \ |
24677 | 96 vf_ow.c \ |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
97 |
21280 | 98 # These filters use private headers and do not work with shared libavcodec. |
23101
253a6da2be20
Add general variables for either static or shared FFmpeg libraries.
diego
parents:
23093
diff
changeset
|
99 SRCS_COMMON-$(LIBAVCODEC_A) += vf_fspp.c \ |
22531
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
100 vf_geq.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
101 vf_mcdeint.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
102 vf_qp.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
103 vf_spp.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
104 vf_uspp.c \ |
21329 | 105 |
23093
ee9bbad25dc7
cosmetics: Rename Makefile variable CONFIG_ASS --> ASS.
diego
parents:
23092
diff
changeset
|
106 SRCS_COMMON-$(ASS) += vf_ass.c |
22528
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22341
diff
changeset
|
107 SRCS_COMMON-$(FAAD) += ad_faad.c |
22752
936f98562a5f
Conditionally compile vf_bmovl.c instead of enclosing all of the file
diego
parents:
22717
diff
changeset
|
108 SRCS_COMMON-$(HAVE_POSIX_SELECT) += vf_bmovl.c |
22528
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22341
diff
changeset
|
109 SRCS_COMMON-$(JPEG) += vd_ijpg.c |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22341
diff
changeset
|
110 SRCS_COMMON-$(LIBA52) += ad_liba52.c |
24731 | 111 SRCS_COMMON-$(LIBAVCODEC) += ad_ffmpeg.c vd_ffmpeg.c vf_lavc.c vf_lavcdeint.c vf_screenshot.c |
23821 | 112 SRCS_COMMON-$(LIBDCA) += ad_libdca.c |
22528
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22341
diff
changeset
|
113 SRCS_COMMON-$(LIBDV) += ad_libdv.c vd_libdv.c |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22341
diff
changeset
|
114 SRCS_COMMON-$(LIBMAD) += ad_libmad.c |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22341
diff
changeset
|
115 SRCS_COMMON-$(LIBMPEG2) += vd_libmpeg2.c |
23092
21e496522217
cosmetics: Remove CONFIG_ prefix from FFmpeg library Makefile variables.
diego
parents:
22752
diff
changeset
|
116 SRCS_COMMON-$(LIBPOSTPROC) += vf_pp.c |
22528
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22341
diff
changeset
|
117 SRCS_COMMON-$(LIBTHEORA) += vd_theora.c |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22341
diff
changeset
|
118 SRCS_COMMON-$(LIBVORBIS) += ad_libvorbis.c |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22341
diff
changeset
|
119 SRCS_COMMON-$(MP3LIB) += ad_mp3lib.c |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22341
diff
changeset
|
120 SRCS_COMMON-$(MUSEPACK) += ad_mpc.c |
24731 | 121 SRCS_COMMON-$(PNG) += vd_mpng.c |
22528
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22341
diff
changeset
|
122 SRCS_COMMON-$(QTX_CODECS) += ad_qtaudio.c vd_qtvideo.c |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22341
diff
changeset
|
123 SRCS_COMMON-$(REAL_CODECS) += ad_realaud.c vd_realvid.c |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22341
diff
changeset
|
124 SRCS_COMMON-$(SPEEX) += ad_speex.c |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22341
diff
changeset
|
125 SRCS_COMMON-$(WIN32DLL) += ad_acm.c ad_dmo.c ad_dshow.c ad_twin.c \ |
22531
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
126 vd_dmo.c vd_dshow.c vd_vfw.c vd_vfwex.c |
22528
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22341
diff
changeset
|
127 SRCS_COMMON-$(XANIM_CODECS) += vd_xanim.c |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22341
diff
changeset
|
128 SRCS_COMMON-$(XVID4) += vd_xvid4.c |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22341
diff
changeset
|
129 SRCS_COMMON-$(ZORAN) += vd_zrmjpeg.c vf_zrmjpeg.c |
18771
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
130 |
a1807995e2ab
Move #ifdefs around complete files into the build system.
diego
parents:
18765
diff
changeset
|
131 |
22531
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
132 SRCS_MENCODER = ae.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
133 ae_pcm.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
134 ve.c \ |
090ec2169aee
cosmetics: Fix indentation, reorder some lines for consistency.
diego
parents:
22528
diff
changeset
|
135 ve_raw.c \ |
8024 | 136 |
23092
21e496522217
cosmetics: Remove CONFIG_ prefix from FFmpeg library Makefile variables.
diego
parents:
22752
diff
changeset
|
137 SRCS_MENCODER-$(LIBAVCODEC) += ae_lavc.c ve_lavc.c |
22528
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22341
diff
changeset
|
138 SRCS_MENCODER-$(LIBDV) += ve_libdv.c |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22341
diff
changeset
|
139 SRCS_MENCODER-$(LIBLZO) += ve_nuv.c |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22341
diff
changeset
|
140 SRCS_MENCODER-$(QTX_CODECS) += ve_qtvideo.c |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22341
diff
changeset
|
141 SRCS_MENCODER-$(WIN32DLL) += ve_vfw.c |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22341
diff
changeset
|
142 SRCS_MENCODER-$(X264) += ve_x264.c |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22341
diff
changeset
|
143 SRCS_MENCODER-$(XVID4) += ve_xvid4.c |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22341
diff
changeset
|
144 SRCS_MENCODER-$(FAAC) += ae_faac.c |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22341
diff
changeset
|
145 SRCS_MENCODER-$(TOOLAME) += ae_toolame.c |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22341
diff
changeset
|
146 SRCS_MENCODER-$(TWOLAME) += ae_twolame.c |
8bcff5c7e387
Give more descriptive names to the source and library variables and split
diego
parents:
22341
diff
changeset
|
147 SRCS_MENCODER-$(MP3LAME) += ae_lame.c |
15234 | 148 |
21275 | 149 |
21259
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21228
diff
changeset
|
150 include ../mpcommon.mak |
4878 | 151 |
21259
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21228
diff
changeset
|
152 clean:: |
14138
40ac42c6dd6d
make clean should also clean the native subdirectory.
diego
parents:
13426
diff
changeset
|
153 rm -f native/*.o native/*.a native/*~ |
23782
b0454664f1e0
Put a compilation fix bandaid in place for the png.h issue.
diego
parents:
23101
diff
changeset
|
154 |
b0454664f1e0
Put a compilation fix bandaid in place for the png.h issue.
diego
parents:
23101
diff
changeset
|
155 |
23831
e3a414ce67c8
Compilation fix workaround for dca.h conflict (it exists in libavcodec
rtogni
parents:
23821
diff
changeset
|
156 ad_libdca.o vd_mpng.o vf_screenshot.o: CFLAGS := $(filter-out -I../libavcodec,$(CFLAGS)) |