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
|
|
|
|
|
2006-05-01 21:37:51 +00:00
|
|
|
libgstvideo4linux2_la_SOURCES = gstv4l2.c \
|
|
|
|
gstv4l2colorbalance.c \
|
2006-05-11 17:59:59 +00:00
|
|
|
gstv4l2object.c \
|
2006-05-01 21:37:51 +00:00
|
|
|
gstv4l2src.c \
|
|
|
|
gstv4l2tuner.c \
|
|
|
|
v4l2_calls.c \
|
|
|
|
v4l2src_calls.c \
|
|
|
|
$(xv_source)
|
2006-03-11 22:50:03 +00:00
|
|
|
|
2006-05-01 21:37:51 +00:00
|
|
|
libgstvideo4linux2_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) \
|
|
|
|
$(GST_BASE_CFLAGS) \
|
|
|
|
$(GST_CFLAGS) \
|
|
|
|
$(X_CFLAGS)
|
|
|
|
|
2006-03-11 22:50:03 +00:00
|
|
|
libgstvideo4linux2_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
2006-05-01 21:37:51 +00:00
|
|
|
|
|
|
|
libgstvideo4linux2_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
|
|
|
$(GST_BASE_LIBS) \
|
|
|
|
$(GST_LIBS) \
|
|
|
|
$(xv_libs) \
|
|
|
|
-lgstinterfaces-$(GST_MAJORMINOR)
|
2002-09-09 07:14:35 +00:00
|
|
|
|
2006-05-11 17:59:59 +00:00
|
|
|
noinst_HEADERS = gstv4l2object.h v4l2_calls.h \
|
2006-05-01 21:37:51 +00:00
|
|
|
gstv4l2src.h v4l2src_calls.h \
|
|
|
|
gstv4l2tuner.h gstv4l2xoverlay.h \
|
|
|
|
gstv4l2colorbalance.h
|