mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 20:51:13 +00:00
75d668e152
Add a resampler to the processing chain when needed. port the audio resampler to the new audioconverter library
32 lines
774 B
Makefile
32 lines
774 B
Makefile
plugin_LTLIBRARIES = libgstaudioresample.la
|
|
|
|
# FIXME: we still link against orc if it's there, even if --disable-orc was used
|
|
if HAVE_ORC
|
|
ORC_TEST_LIBS = -lorc-test-0.4
|
|
else
|
|
ORC_TEST_LIBS =
|
|
endif
|
|
|
|
libgstaudioresample_la_SOURCES = \
|
|
gstaudioresample.c
|
|
|
|
nodist_libgstaudioresample_la_SOURCES = $(BUILT_SOURCES)
|
|
|
|
libgstaudioresample_la_CFLAGS = \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_CFLAGS) \
|
|
$(ORC_CFLAGS)
|
|
|
|
libgstaudioresample_la_LIBADD = \
|
|
$(top_builddir)/gst-libs/gst/audio/libgstaudio-@GST_API_VERSION@.la \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_LIBS) \
|
|
$(ORC_LIBS) $(ORC_TEST_LIBS) \
|
|
$(LIBM)
|
|
|
|
libgstaudioresample_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstaudioresample_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
gstaudioresample.h
|