mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 11:29:55 +00:00
d41620bc75
Original commit message from CVS: Added initial version of audioconvert, a generic converter of integer audio/raw formats. It currently supports conversion of - channels (mono/stereo only, until someone tells me how to mix other channels) - endianness (little/bi endian) - signedness - width (8, 1, 24 and 32 bits) - depth (1 - width bits) missing: - enough testing (I intend to write a testsuite for this, but that's pending) - samplerate conversion - other goodies like format conversion etc Expect bugs when using it. problems this should solve: - encoding wav files on big endian machines - goom working with mono audio files in gst-player - Iain's soundcard (that one is a problem in itself) - complaints about missing conversion - too many age old, nearly unmaintained plugins (stereo2mono etc.) Have fun.
8 lines
274 B
Makefile
8 lines
274 B
Makefile
plugindir = $(libdir)/gstreamer-@GST_MAJORMINOR@
|
|
|
|
plugin_LTLIBRARIES = libgstaudioconvert.la
|
|
|
|
libgstaudioconvert_la_SOURCES = gstaudioconvert.c
|
|
libgstaudioconvert_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstaudioconvert_la_LIBADD =
|
|
libgstaudioconvert_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|