Add an echo/reverb filter to the audiofx plugin, with configurable echo delay, intens...
[platform/upstream/gst-plugins-good.git] / gst / audiofx / Makefile.am
1 # plugindir is set in configure
2
3 plugin_LTLIBRARIES = libgstaudiofx.la
4
5 # sources used to compile this plug-in
6 libgstaudiofx_la_SOURCES = audiofx.c\
7         audiopanorama.c \
8         audioinvert.c \
9         audioamplify.c \
10         audiodynamic.c \
11         audiokaraoke.c \
12         audiofxbaseiirfilter.c \
13         audiocheblimit.c \
14         audiochebband.c \
15         audioiirfilter.c \
16         audiofxbasefirfilter.c \
17         audiowsincband.c \
18         audiowsinclimit.c \
19         audiofirfilter.c \
20         audioreverb.c
21
22 # flags used to compile this plugin
23 libgstaudiofx_la_CFLAGS = $(GST_CFLAGS) \
24         $(GST_BASE_CFLAGS) \
25         $(GST_CONTROLLER_CFLAGS) \
26         $(GST_PLUGINS_BASE_CFLAGS)
27 libgstaudiofx_la_LIBADD = $(GST_LIBS) \
28         $(GST_BASE_LIBS) \
29         $(GST_CONTROLLER_LIBS) \
30         $(GST_PLUGINS_BASE_LIBS) \
31         -lgstaudio-$(GST_MAJORMINOR) \
32         $(LIBM)
33 libgstaudiofx_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
34 libgstaudiofx_la_LIBTOOLFLAGS = --tag=disable-static
35
36 # headers we need but don't want installed
37 noinst_HEADERS = audiopanorama.h \
38         audioinvert.h \
39         audioamplify.h \
40         audiodynamic.h \
41         audiokaraoke.h \
42         audiofxbaseiirfilter.h \
43         audiocheblimit.h \
44         audiochebband.h \
45         audioiirfilter.h \
46         audiofxbasefirfilter.h \
47         audiowsincband.h \
48         audiowsinclimit.h \
49         audiofirfilter.h \
50         audioreverb.h \
51         math_compat.h
52