mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
959f8e4a3e
Also: - Don't modify size on early buffer The size is the size of the buffer, not of remaining part. - Use the input caps when manipulating the input buffer Also store in in the sink pad - Reply to the position query in bytes too - Put GAP flag on output if all inputs are GAP data - Only try to clip buffer if the incoming segment is in time or samples - Use incoming segment with incoming timestamp Handle non-time segments and NONE timestamps - Don't reset the position when pushing out new caps - Make a number of member variables private - Correctly handle case where no pad has a buffer If none of the pads have buffers that can be handled, don't claim to be EOS. - Ensure proper locking - Only support time segments https://bugzilla.gnome.org/show_bug.cgi?id=740236
22 lines
780 B
Makefile
22 lines
780 B
Makefile
plugin_LTLIBRARIES = libgstaudiomixer.la
|
|
|
|
ORC_SOURCE=gstaudiomixerorc
|
|
include $(top_srcdir)/common/orc.mak
|
|
|
|
|
|
libgstaudiomixer_la_SOURCES = gstaudiomixer.c gstaudioaggregator.c
|
|
nodist_libgstaudiomixer_la_SOURCES = $(ORC_NODIST_SOURCES)
|
|
libgstaudiomixer_la_CFLAGS = \
|
|
-I$(top_srcdir)/gst-libs \
|
|
-I$(top_builddir)/gst-libs \
|
|
$(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) \
|
|
$(GST_CFLAGS) $(ORC_CFLAGS)
|
|
libgstaudiomixer_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstaudiomixer_la_LIBADD = \
|
|
$(top_builddir)/gst-libs/gst/base/libgstbadbase-$(GST_API_VERSION).la \
|
|
$(GST_PLUGINS_BASE_LIBS) -lgstaudio-@GST_API_VERSION@ \
|
|
$(GST_BASE_LIBS) $(GST_LIBS) $(ORC_LIBS)
|
|
libgstaudiomixer_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
|
|
|
noinst_HEADERS = gstaudiomixer.h gstaudioaggregator.h
|
|
|