2007-01-07 22:03:54 +00:00
|
|
|
|
|
|
|
plugin_LTLIBRARIES = libgstinterleave.la
|
|
|
|
|
|
|
|
libgstinterleave_la_SOURCES = plugin.c interleave.c deinterleave.c
|
2010-03-18 21:14:17 +00:00
|
|
|
libgstinterleave_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
|
|
|
libgstinterleave_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_MAJORMINOR) $(GST_BASE_LIBS) $(GST_LIBS)
|
2007-01-07 22:03:54 +00:00
|
|
|
libgstinterleave_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
2008-11-04 12:28:34 +00:00
|
|
|
libgstinterleave_la_LIBTOOLFLAGS = --tag=disable-static
|
2007-01-07 22:03:54 +00:00
|
|
|
|
gst/interleave/: Split definitions into separate header files for better documentation generation.
Original commit message from CVS:
* gst/interleave/Makefile.am:
* gst/interleave/deinterleave.h:
* gst/interleave/interleave.h:
* gst/interleave/plugin.h:
Split definitions into separate header files for better documentation
generation.
* gst/interleave/deinterleave.c: (gst_deinterleave_base_init),
(gst_deinterleave_class_init), (gst_deinterleave_sink_setcaps),
(gst_deinterleave_process):
Don't use alloca, allow caps changes as long as the number of channels
does not change, don't use g_warning, return NOT_NEGOTIATED as early
as possible and some other cleanup.
* gst/interleave/interleave.c: (gst_interleave_base_init),
(gst_interleave_class_init):
Do some random cleanup.
* tests/check/Makefile.am:
* tests/check/elements/deinterleave.c: (GST_START_TEST),
(deinterleave_chain_func), (deinterleave_pad_added),
(deinterleave_suite):
Add unit tests for the deinterleave element.
2008-05-14 07:32:44 +00:00
|
|
|
noinst_HEADERS = plugin.h interleave.h deinterleave.h
|