Mercurial > mplayer.hg
annotate libaf/Makefile @ 22152:1f6c89bc1c3a
Fix compilation after deprecation of some lav log level and
pixel format stuff.
author | reimar |
---|---|
date | Wed, 07 Feb 2007 09:58:23 +0000 |
parents | 490dc8ba9ea4 |
children | 8bcff5c7e387 |
rev | line source |
---|---|
19034 | 1 include ../config.mak |
7568 | 2 |
3 LIBNAME = libaf.a | |
4 | |
15772 | 5 SRCS=af.c \ |
6 af_center.c \ | |
7 af_channels.c \ | |
8 af_comp.c \ | |
9 af_delay.c \ | |
10 af_dummy.c \ | |
11 af_equalizer.c \ | |
12 af_export.c \ | |
13 af_extrastereo.c \ | |
14 af_format.c \ | |
15 af_gate.c \ | |
16 af_hrtf.c \ | |
18470 | 17 af_karaoke.c \ |
15772 | 18 af_pan.c \ |
19 af_resample.c \ | |
18611
1c2f694d5232
Rename sinesupress to sinesuppress, including af_sinesupress.c file rename.
corey
parents:
18470
diff
changeset
|
20 af_sinesuppress.c \ |
15772 | 21 af_sub.c \ |
22 af_surround.c \ | |
23 af_sweep.c \ | |
24 af_tools.c \ | |
25 af_volnorm.c \ | |
26 af_volume.c \ | |
27 filter.c \ | |
28 format.c \ | |
29 window.c \ | |
19034 | 30 $(AF_SRCS) \ |
7568 | 31 |
21309 | 32 SRCS-$(CONFIG_LIBAVCODEC) += af_lavcresample.c |
33 SRCS-$(CONFIG_LIBAVCODEC_SO) += af_lavcresample.c | |
34 | |
21390
fd1495e1538d
Add libav include paths to CFLAGS without indirection.
diego
parents:
21374
diff
changeset
|
35 CFLAGS-$(CONFIG_LIBAVUTIL) += -I../libavutil |
fd1495e1538d
Add libav include paths to CFLAGS without indirection.
diego
parents:
21374
diff
changeset
|
36 CFLAGS-$(CONFIG_LIBAVCODEC) += -I../libavcodec |
9770 | 37 |
12706 | 38 ifeq ($(TARGET_OS),MINGW32) |
9770 | 39 CFLAGS += -D_IO_H_ |
40 endif | |
41 | |
21259
92b122592776
Merge common parts of all Makefiles into one file included by all.
diego
parents:
21206
diff
changeset
|
42 include ../mpcommon.mak |