mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
fc50d2dc64
Original commit message from CVS: * ext/alsa/Makefile.am: There is no GST_PLUGINS_BASE_LIBS defined. * ext/alsa/gstalsa.c: * ext/alsa/gstalsasink.c: (gst_alsasink_delay): * ext/alsa/gstalsasrc.c: (gst_alsasrc_delay): Add support for ALSA 24-bit formats. snd_pcm_delay can return an error code, especially during XRUNS. In that case, the best we can do is assume delay = 0. * gst/audioconvert/Makefile.am: Add flags from -base before any more-remote dependencies.
29 lines
811 B
Makefile
29 lines
811 B
Makefile
plugin_LTLIBRARIES = libgstaudioconvert.la
|
|
|
|
libgstaudioconvert_la_SOURCES = \
|
|
gstaudioconvert.c \
|
|
audioconvert.c \
|
|
gstchannelmix.c \
|
|
gstaudioquantize.c \
|
|
plugin.c
|
|
|
|
libgstaudioconvert_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
|
libgstaudioconvert_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstaudioconvert_la_LIBADD = \
|
|
$(top_builddir)/gst-libs/gst/audio/libgstaudio-@GST_MAJORMINOR@.la \
|
|
$(GST_BASE_LIBS) $(GST_LIBS)
|
|
|
|
noinst_HEADERS = \
|
|
gstaudioconvert.h \
|
|
audioconvert.h \
|
|
gstchannelmix.h \
|
|
gstaudioquantize.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)
|