mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
537891db41
Original commit message from CVS: Adding a new plugin: switch. It takes N input and only has 1 output. You can "switch" the forwarded input through properties ("nb_sources", "active_source") and i will probably add tuner interface support soon. It should be able to handle any kind of data passing through it. It is still a work in progress don't consider it usable for production yet.
9 lines
219 B
Makefile
9 lines
219 B
Makefile
|
|
plugin_LTLIBRARIES = libgstswitch.la
|
|
|
|
libgstswitch_la_SOURCES = gstswitch.c
|
|
libgstswitch_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstswitch_la_LIBADD =
|
|
libgstswitch_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = gstswitch.h
|