mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
12359919d3
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.
9 lines
273 B
Makefile
9 lines
273 B
Makefile
|
|
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
|