2007-11-20 12:56:00 +00:00
|
|
|
plugin_LTLIBRARIES = libgstspeexresample.la
|
|
|
|
|
|
|
|
libgstspeexresample_la_SOURCES = \
|
|
|
|
gstspeexresample.c \
|
|
|
|
speex_resampler_int.c \
|
Add support for double samples as input and refactor the usage of the different compilation flavors of the speex resa...
Original commit message from CVS:
* gst/speexresample/Makefile.am:
* gst/speexresample/arch.h:
* gst/speexresample/gstspeexresample.c: (gst_speex_resample_stop),
(gst_speex_resample_get_unit_size), (gst_speex_resample_get_funcs),
(gst_speex_resample_init_state), (gst_speex_resample_update_state),
(gst_speex_resample_reset_state), (gst_speex_resample_parse_caps),
(_gcd), (gst_speex_resample_transform_size),
(gst_speex_resample_set_caps), (gst_speex_resample_push_drain),
(gst_speex_resample_process), (gst_speex_resample_transform),
(gst_speex_resample_query), (gst_speex_resample_set_property):
* gst/speexresample/gstspeexresample.h:
* gst/speexresample/resample.c:
* gst/speexresample/speex_resampler.h:
* gst/speexresample/speex_resampler_double.c:
* gst/speexresample/speex_resampler_wrapper.h:
* tests/check/elements/speexresample.c: (setup_speexresample),
(test_perfect_stream_instance), (GST_START_TEST),
(test_discont_stream_instance):
Add support for double samples as input and refactor the usage
of the different compilation flavors of the speex resampler.
2008-10-30 12:43:44 +00:00
|
|
|
speex_resampler_float.c \
|
|
|
|
speex_resampler_double.c
|
2007-11-20 12:56:00 +00:00
|
|
|
|
|
|
|
libgstspeexresample_la_CFLAGS = \
|
|
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
|
|
$(GST_BASE_CFLAGS) \
|
2008-11-01 19:38:36 +00:00
|
|
|
$(GST_CFLAGS) \
|
|
|
|
$(LIBOIL_CFLAGS)
|
2007-11-20 12:56:00 +00:00
|
|
|
|
|
|
|
libgstspeexresample_la_LIBADD = \
|
|
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
|
|
$(GST_BASE_LIBS) \
|
|
|
|
$(GST_LIBS) \
|
|
|
|
-lgstaudio-$(GST_MAJORMINOR) \
|
2008-11-01 19:38:36 +00:00
|
|
|
$(LIBOIL_LIBS) \
|
2007-11-20 12:56:00 +00:00
|
|
|
$(LIBM)
|
|
|
|
|
|
|
|
libgstspeexresample_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
2008-11-04 12:42:18 +00:00
|
|
|
libgstspeexresample_la_LIBTOOLFLAGS = --tag=disable-static
|
2007-11-20 12:56:00 +00:00
|
|
|
|
|
|
|
noinst_HEADERS = \
|
|
|
|
arch.h \
|
2008-11-01 19:38:36 +00:00
|
|
|
fixed_arm4.h \
|
|
|
|
fixed_arm5e.h \
|
|
|
|
fixed_bfin.h \
|
|
|
|
fixed_debug.h \
|
2007-11-20 12:56:00 +00:00
|
|
|
fixed_generic.h \
|
|
|
|
gstspeexresample.h \
|
2008-11-01 19:38:36 +00:00
|
|
|
resample.c \
|
|
|
|
resample_sse.h \
|
2007-12-14 16:23:06 +00:00
|
|
|
speex_resampler.h \
|
|
|
|
speex_resampler_wrapper.h
|
2007-11-20 12:56:00 +00:00
|
|
|
|