mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 16:26:39 +00:00
7afac6e23a
Original commit message from CVS: * gst/audioresample/Makefile.am: * gst/audioresample/buffer.c: * gst/audioresample/buffer.h: * gst/audioresample/debug.c: * gst/audioresample/debug.h: * gst/audioresample/functable.c: * gst/audioresample/functable.h: * gst/audioresample/gstaudioresample.c: * gst/audioresample/gstaudioresample.h: * gst/audioresample/resample.c: * gst/audioresample/resample.h: * gst/audioresample/resample_chunk.c: * gst/audioresample/resample_functable.c: * gst/audioresample/resample_ref.c: * tests/check/elements/audioresample.c: Remove audioresample files.
21 lines
572 B
Makefile
21 lines
572 B
Makefile
plugin_LTLIBRARIES = libgstaudioresample.la
|
|
|
|
resample_SOURCES = \
|
|
functable.c \
|
|
resample.c \
|
|
resample_functable.c \
|
|
resample_ref.c \
|
|
resample_chunk.c \
|
|
resample.h \
|
|
buffer.c
|
|
|
|
noinst_HEADERS = \
|
|
gstaudioresample.h \
|
|
functable.h \
|
|
debug.h \
|
|
buffer.h
|
|
|
|
libgstaudioresample_la_SOURCES = gstaudioresample.c $(resample_SOURCES)
|
|
libgstaudioresample_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(LIBOIL_CFLAGS)
|
|
libgstaudioresample_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) $(LIBOIL_LIBS)
|
|
libgstaudioresample_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|