mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 09:00:54 +00:00
3ec5a0a054
Original commit message from CVS: this adds video4linux2 source and element plugins. The division in v4l2* plugins is the same as for v4l1 - i.e. an element, a src and a sink, but there won't be separate encoding plugins (like v4lmjpegsrc) - all functionality is (thanks to video4linux2) integrated in one plugin: v4l2src. v4l2sink is still to be done, that'll come later.
18 lines
576 B
Makefile
18 lines
576 B
Makefile
plugindir = $(libdir)/gst
|
|
|
|
plugin_LTLIBRARIES = \
|
|
libgstv4l2element.la \
|
|
libgstv4l2src.la
|
|
|
|
libgstv4l2element_la_SOURCES = gstv4l2element.c v4l2_calls.c v4l2-overlay_calls.c
|
|
libgstv4l2element_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstv4l2element_la_LIBADD =
|
|
libgstv4l2element_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
libgstv4l2src_la_SOURCES = gstv4l2src.c v4l2src_calls.c
|
|
libgstv4l2src_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstv4l2src_la_LIBADD = libgstv4l2element.la
|
|
libgstv4l2src_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = gstv4l2element.h v4l2_calls.h \
|
|
gstv4l2src.h v4l2src_calls.h
|