From afe112e12179246bb32e170f13c379ade4d1389c Mon Sep 17 00:00:00 2001 From: Sebastian Dröge Date: Wed, 14 May 2008 07:32:44 +0000 Subject: 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. --- gst/interleave/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gst/interleave/Makefile.am') diff --git a/gst/interleave/Makefile.am b/gst/interleave/Makefile.am index 9a09cdbc..62e7f3e3 100644 --- a/gst/interleave/Makefile.am +++ b/gst/interleave/Makefile.am @@ -6,4 +6,4 @@ libgstinterleave_la_CFLAGS = $(GST_CFLAGS) libgstinterleave_la_LIBADD = $(GST_LIBS) libgstinterleave_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -noinst_HEADERS = plugin.h +noinst_HEADERS = plugin.h interleave.h deinterleave.h -- cgit