diff options
author | Andy Wingo <wingo@pobox.com> | 2007-01-07 22:03:54 +0000 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2007-01-07 22:03:54 +0000 |
commit | 215773aadaaa2e7e6a96761735c26fc4c213d16e (patch) | |
tree | f81829e74b0a5c6c3c3eadb8fe830cd43d3ee4fd /gst/interleave/Makefile.am | |
parent | c1429dc970ece9f8b177e4133db3f2cd61b23105 (diff) | |
download | gst-plugins-bad-215773aadaaa2e7e6a96761735c26fc4c213d16e.tar.gz gst-plugins-bad-215773aadaaa2e7e6a96761735c26fc4c213d16e.tar.bz2 gst-plugins-bad-215773aadaaa2e7e6a96761735c26fc4c213d16e.zip |
New elements interleave and deinterleave, implement channel interleaving and deinterleaving.
Original commit message from CVS:
2007-01-07 Andy Wingo <wingo@pobox.com>
* configure.ac:
* gst/interleave/Makefile.am:
* gst/interleave/plugin.h:
* gst/interleave/plugin.c:
* gst/interleave/interleave.c:
* gst/interleave/deinterleave.c: New elements interleave and
deinterleave, implement channel interleaving and deinterleaving.
The interleaver can operate in pull or push mode but the
deinterleaver is more like a demuxer and can only operate in push
mode.
Diffstat (limited to 'gst/interleave/Makefile.am')
-rw-r--r-- | gst/interleave/Makefile.am | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gst/interleave/Makefile.am b/gst/interleave/Makefile.am new file mode 100644 index 00000000..9a09cdbc --- /dev/null +++ b/gst/interleave/Makefile.am @@ -0,0 +1,9 @@ + +plugin_LTLIBRARIES = libgstinterleave.la + +libgstinterleave_la_SOURCES = plugin.c interleave.c deinterleave.c +libgstinterleave_la_CFLAGS = $(GST_CFLAGS) +libgstinterleave_la_LIBADD = $(GST_LIBS) +libgstinterleave_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) + +noinst_HEADERS = plugin.h |