mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-04 16:39:39 +00:00
19efac956e
Original commit message from CVS: * gst/audioconvert/Makefile.am: * gst/audioconvert/bufferframesconvert.c: * gst/audioconvert/plugin.c: (plugin_init): * gst/audioconvert/plugin.h: And bye bye buffer-frames-convert
27 lines
740 B
Makefile
27 lines
740 B
Makefile
plugin_LTLIBRARIES = libgstaudioconvert.la
|
|
|
|
libgstaudioconvert_la_SOURCES = \
|
|
gstaudioconvert.c \
|
|
audioconvert.c \
|
|
gstchannelmix.c \
|
|
plugin.c
|
|
|
|
libgstaudioconvert_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS)
|
|
libgstaudioconvert_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstaudioconvert_la_LIBADD = \
|
|
$(top_builddir)/gst-libs/gst/audio/libgstaudio-@GST_MAJORMINOR@.la \
|
|
$(GST_LIBS) $(GST_BASE_LIBS)
|
|
|
|
noinst_HEADERS = \
|
|
gstaudioconvert.h \
|
|
audioconvert.h \
|
|
gstchannelmix.h \
|
|
plugin.h
|
|
|
|
#TESTS = channelmixtest
|
|
#noinst_PROGRAMS = channelmixtest
|
|
|
|
#channelmixtest_CFLAGS = $(GST_CFLAGS)
|
|
#channelmixtest_LDADD = libgstaudioconvert.la \
|
|
# $(top_builddir)/gst-libs/gst/audio/libgstaudio-@GST_MAJORMINOR@.la
|
|
#channelmixtest_LDFLAGS = $(GST_LIBS)
|