mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 09:00:54 +00:00
c0dbf25683
Original commit message from CVS: V4L2 ported to 0.10.
29 lines
748 B
Makefile
29 lines
748 B
Makefile
plugin_LTLIBRARIES = libgstvideo4linux2.la
|
|
|
|
if USE_XVIDEO
|
|
xv_source = gstv4l2xoverlay.c
|
|
xv_libs = $(X_LIBS) $(XVIDEO_LIBS)
|
|
else
|
|
xv_source =
|
|
xv_libs =
|
|
endif
|
|
|
|
libgstvideo4linux2_la_SOURCES = \
|
|
gstv4l2.c \
|
|
gstv4l2colorbalance.c \
|
|
gstv4l2element.c \
|
|
gstv4l2src.c \
|
|
gstv4l2tuner.c \
|
|
v4l2_calls.c \
|
|
v4l2src_calls.c $(xv_source)
|
|
|
|
libgstvideo4linux2_la_CFLAGS = $(GST_CFLAGS) $(X_CFLAGS) $(GST_BASE_LIBS_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS)
|
|
libgstvideo4linux2_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstvideo4linux2_la_LIBADD = \
|
|
-lgstinterfaces-$(GST_MAJORMINOR) \
|
|
$(GST_BASE_LIBS) $(GST_LIBS) $(xv_libs)
|
|
|
|
noinst_HEADERS = gstv4l2element.h v4l2_calls.h \
|
|
gstv4l2src.h v4l2src_calls.h \
|
|
gstv4l2tuner.h gstv4l2xoverlay.h \
|
|
gstv4l2colorbalance.h
|