2006-03-11 22:50:03 +00:00
|
|
|
plugin_LTLIBRARIES = libgstvideo4linux2.la
|
2002-09-09 07:14:35 +00:00
|
|
|
|
sys/: Remove client-side overlay handling, use the X-server v4l plugin for that. Nicer overlay, less code. Also make ...
Original commit message from CVS:
* sys/v4l/Makefile.am:
* sys/v4l/gstv4l.c: (plugin_init):
* sys/v4l/gstv4lelement.c: (gst_v4lelement_get_type),
(gst_v4lelement_init), (gst_v4lelement_dispose),
(gst_v4lelement_change_state):
* sys/v4l/gstv4lelement.h:
* sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_open),
(gst_v4l_xoverlay_close), (idle_refresh),
(gst_v4l_xoverlay_set_xwindow_id):
* sys/v4l/gstv4lxoverlay.h:
* sys/v4l/v4l-overlay_calls.c:
* sys/v4l/v4l_calls.h:
* sys/v4l2/Makefile.am:
* sys/v4l2/gstv4l2.c: (plugin_init):
* sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_type),
(gst_v4l2element_init), (gst_v4l2element_dispose),
(gst_v4l2element_change_state):
* sys/v4l2/gstv4l2element.h:
* sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_open),
(gst_v4l2_xoverlay_close), (idle_refresh),
(gst_v4l2_xoverlay_set_xwindow_id):
* sys/v4l2/gstv4l2xoverlay.h:
* sys/v4l2/v4l2-overlay_calls.c:
* sys/v4l2/v4l2_calls.h:
Remove client-side overlay handling, use the X-server v4l plugin
for that. Nicer overlay, less code. Also make the plugin
compileable without X (but then without overlay, obviously).
Makes xwindowlistener obsolete, should we remove that?
2004-10-25 08:51:15 +00:00
|
|
|
if USE_XVIDEO
|
|
|
|
xv_source = gstv4l2xoverlay.c
|
|
|
|
xv_libs = $(X_LIBS) $(XVIDEO_LIBS)
|
|
|
|
else
|
|
|
|
xv_source =
|
|
|
|
xv_libs =
|
|
|
|
endif
|
|
|
|
|
2003-09-13 08:58:49 +00:00
|
|
|
libgstvideo4linux2_la_SOURCES = \
|
2003-10-14 10:13:05 +00:00
|
|
|
gstv4l2.c \
|
2006-03-11 22:50:03 +00:00
|
|
|
gstv4l2colorbalance.c \
|
|
|
|
gstv4l2element.c \
|
|
|
|
gstv4l2src.c \
|
2003-10-14 10:13:05 +00:00
|
|
|
gstv4l2tuner.c \
|
2006-03-11 22:50:03 +00:00
|
|
|
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)
|
2003-10-14 10:13:05 +00:00
|
|
|
libgstvideo4linux2_la_LIBADD = \
|
2006-03-11 22:50:03 +00:00
|
|
|
-lgstinterfaces-$(GST_MAJORMINOR) \
|
|
|
|
$(GST_BASE_LIBS) $(GST_LIBS) $(xv_libs)
|
2002-09-09 07:14:35 +00:00
|
|
|
|
|
|
|
noinst_HEADERS = gstv4l2element.h v4l2_calls.h \
|
2003-09-13 08:58:49 +00:00
|
|
|
gstv4l2src.h v4l2src_calls.h \
|
2003-10-14 10:13:05 +00:00
|
|
|
gstv4l2tuner.h gstv4l2xoverlay.h \
|
|
|
|
gstv4l2colorbalance.h
|