mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 04:31:06 +00:00
bde8ec9bf7
Original commit message from CVS: * gst/audioresample/Makefile.am: Leet audioresampling code * 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:
21 lines
470 B
Makefile
21 lines
470 B
Makefile
|
|
plugin_LTLIBRARIES = libgstaudioresample.la
|
|
|
|
resample_SOURCES = \
|
|
functable.c \
|
|
functable.h \
|
|
resample.c \
|
|
resample_functable.c \
|
|
resample_ref.c \
|
|
resample_chunk.c \
|
|
resample.h \
|
|
debug.c \
|
|
debug.h \
|
|
buffer.c \
|
|
buffer.h
|
|
|
|
libgstaudioresample_la_SOURCES = gstaudioresample.c $(resample_SOURCES)
|
|
libgstaudioresample_la_CFLAGS = $(GST_CFLAGS) $(LIBOIL_CFLAGS)
|
|
libgstaudioresample_la_LIBADD = $(LIBOIL_LIBS)
|
|
libgstaudioresample_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|