mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-05 22:12:34 +00:00
Original commit message from CVS: * actually recurse into sndfile if we are able * big ladspa cleanups, mainly to comply with the buffer-frames caps property, but also general cleanups - the samplerate prop is gone, if you want to set it explicitly (as in for get-based plugins) you need to use a filtered connection, just like with buffer-frames * big float2int and int2float changes for buffer-frames compatibility - I think it's quite a bit simpler * make the ossclock general, add it to gstaudio, and use it in sndfile as well i need to update mimetypes, but that's coming soon. there are some other plugins that don't support buffer-frames, i guess i need to get around to fixing them as well.
20 lines
565 B
Makefile
20 lines
565 B
Makefile
plugindir = $(libdir)/gstreamer-@GST_MAJORMINOR@
|
|
|
|
plugin_LTLIBRARIES = libgstossaudio.la
|
|
|
|
EXTRA_LTLIBRARIES = libgstosshelper.la
|
|
|
|
libgstossaudio_la_SOURCES = gstosssink.c \
|
|
gstosssrc.c \
|
|
gstossaudio.c \
|
|
gstossgst.c \
|
|
gstosscommon.c
|
|
|
|
libgstossaudio_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstossaudio_la_LIBADD =
|
|
libgstossaudio_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
libgstosshelper_la_SOURCES = gstosshelper.c
|
|
libgstosshelper_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = gstosssink.h gstosssrc.h gstossgst.h gstosshelper.h gstosscommon.h
|