mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 11:29:55 +00:00
9ee0b03986
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.
12 lines
389 B
Makefile
12 lines
389 B
Makefile
librarydir = $(libdir)/gstreamer-@GST_MAJORMINOR@
|
|
|
|
library_LTLIBRARIES = libgstaudio.la
|
|
|
|
libgstaudio_la_SOURCES = audio.c audioclock.c
|
|
|
|
libgstaudioincludedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst/audio
|
|
libgstaudioinclude_HEADERS = audio.h audioclock.h
|
|
|
|
libgstaudio_la_LIBADD =
|
|
libgstaudio_la_CFLAGS = $(GST_CFLAGS) $(GST_OPT_CFLAGS)
|
|
libgstaudio_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|