mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 18:51:11 +00:00
d56af9d36d
Original commit message from CVS: * gst/speexresample/Makefile.am: * gst/speexresample/README: * gst/speexresample/arch.h: * gst/speexresample/fixed_arm4.h: * gst/speexresample/fixed_arm5e.h: * gst/speexresample/fixed_bfin.h: * gst/speexresample/fixed_debug.h: * gst/speexresample/fixed_generic.h: * gst/speexresample/gstspeexresample.c: * gst/speexresample/gstspeexresample.h: * gst/speexresample/resample.c: * gst/speexresample/resample_sse.h: * gst/speexresample/speex_resampler.h: * gst/speexresample/speex_resampler_double.c: * gst/speexresample/speex_resampler_float.c: * gst/speexresample/speex_resampler_int.c: * gst/speexresample/speex_resampler_wrapper.h: * tests/check/elements/speexresample.c: Remove old speexresample files.
31 lines
597 B
Makefile
31 lines
597 B
Makefile
plugin_LTLIBRARIES = libgstspeexresample.la
|
|
|
|
libgstspeexresample_la_SOURCES = \
|
|
gstspeexresample.c \
|
|
speex_resampler_int.c \
|
|
speex_resampler_float.c
|
|
|
|
libgstspeexresample_la_CFLAGS = \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_CFLAGS)
|
|
|
|
libgstspeexresample_la_LIBADD = \
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_LIBS) \
|
|
-lgstaudio-$(GST_MAJORMINOR) \
|
|
$(LIBM)
|
|
|
|
libgstspeexresample_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
arch.h \
|
|
fixed_generic.h \
|
|
gstspeexresample.h \
|
|
speex_resampler.h \
|
|
speex_resampler_wrapper.h
|
|
|
|
EXTRA_DIST = \
|
|
resample.c
|
|
|