summaryrefslogtreecommitdiffstats
path: root/gst/interleave/plugin.h
diff options
context:
space:
mode:
authorSebastian Dröge <slomo@circular-chaos.org>2008-05-14 07:32:44 +0000
committerSebastian Dröge <slomo@circular-chaos.org>2008-05-14 07:32:44 +0000
commitafe112e12179246bb32e170f13c379ade4d1389c (patch)
treed9a4bb2399b679c6ea7e9915b7cfcc3955ed4653 /gst/interleave/plugin.h
parent94414c07a67cc0b9112651384bf516d74aef9551 (diff)
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.
Diffstat (limited to 'gst/interleave/plugin.h')
-rw-r--r--gst/interleave/plugin.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/gst/interleave/plugin.h b/gst/interleave/plugin.h
index bc722bdb..3e96a7e1 100644
--- a/gst/interleave/plugin.h
+++ b/gst/interleave/plugin.h
@@ -25,12 +25,7 @@
#include <gst/gst.h>
-
-G_BEGIN_DECLS
-
-GType gst_interleave_get_type (void);
-GType gst_deinterleave_get_type (void);
-
-G_END_DECLS
+#include "interleave.h"
+#include "deinterleave.h"
#endif /* __GST_PLUGIN_INTERLEAVE_H__ */