mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-26 10:10:32 +00:00
b415d7b34f
This helps in cases where raw audio data is being delivered, but the buffers do not come in sample aligned sizes. The new unalignedaudioparse bin can be autoplugged and configures an internal audioparse element to align the data. audioparse itself gets support for audio/x-unaligned-raw input caps; the output caps then contain the same information, except that the name is changed to audio/x-raw (since audioparse aligns the data). This ensures that souphttpsrc ! audioparse still works. https://bugzilla.gnome.org/show_bug.cgi?id=689460
27 lines
645 B
Makefile
27 lines
645 B
Makefile
|
|
plugin_LTLIBRARIES = libgstrawparse.la
|
|
|
|
libgstrawparse_la_SOURCES = \
|
|
gstrawparse.c \
|
|
gstunalignedaudioparse.c \
|
|
gstaudioparse.c \
|
|
gstvideoparse.c \
|
|
plugin.c
|
|
libgstrawparse_la_CFLAGS = \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_CFLAGS)
|
|
libgstrawparse_la_LIBADD = \
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
-lgstvideo-@GST_API_VERSION@ -lgstaudio-@GST_API_VERSION@ \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_LIBS)
|
|
libgstrawparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstrawparse_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
unalignedaudio.h \
|
|
gstunalignedaudioparse.h \
|
|
gstaudioparse.h \
|
|
gstrawparse.h \
|
|
gstvideoparse.h
|