2003-09-13 08:58:48 +00:00
|
|
|
plugin_LTLIBRARIES = libgstvideo4linux.la
|
2001-12-17 19:03:14 +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:14 +00:00
|
|
|
if USE_XVIDEO
|
|
|
|
xv_source = gstv4lxoverlay.c
|
|
|
|
xv_libs = $(X_LIBS) $(XVIDEO_LIBS)
|
|
|
|
else
|
|
|
|
xv_source =
|
|
|
|
xv_libs =
|
|
|
|
endif
|
|
|
|
|
2003-09-13 08:58:48 +00:00
|
|
|
libgstvideo4linux_la_SOURCES = \
|
2003-10-14 10:13:05 +00:00
|
|
|
gstv4l.c \
|
2005-07-07 11:29:29 +00:00
|
|
|
gstv4lcolorbalance.c \
|
|
|
|
gstv4lelement.c \
|
|
|
|
gstv4lsrc.c \
|
2003-10-14 10:13:05 +00:00
|
|
|
gstv4ltuner.c \
|
2005-07-07 11:29:29 +00:00
|
|
|
v4l_calls.c \
|
|
|
|
v4lsrc_calls.c $(xv_source)
|
|
|
|
|
|
|
|
# gstv4ljpegsrc.c \
|
|
|
|
# gstv4lmjpegsrc.c v4lmjpegsrc_calls.c \
|
|
|
|
# gstv4lmjpegsink.c v4lmjpegsink_calls.c
|
|
|
|
|
2007-01-09 13:35:08 +00:00
|
|
|
libgstvideo4linux_la_CFLAGS = \
|
|
|
|
$(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(X_CFLAGS)
|
2003-10-14 10:13:05 +00:00
|
|
|
libgstvideo4linux_la_LIBADD = \
|
2006-06-11 14:08:54 +00:00
|
|
|
$(top_builddir)/gst-libs/gst/interfaces/libgstinterfaces-$(GST_MAJORMINOR).la \
|
2005-07-13 17:58:07 +00:00
|
|
|
$(GST_BASE_LIBS) $(GST_LIBS) $(xv_libs)
|
2006-06-11 14:08:54 +00:00
|
|
|
libgstvideo4linux_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
2008-10-16 15:07:00 +00:00
|
|
|
libgstvideo4linux_la_LIBTOOLFLAGS = --tag=disable-static
|
2001-12-23 15:31:15 +00:00
|
|
|
|
|
|
|
noinst_HEADERS = gstv4lelement.h v4l_calls.h \
|
|
|
|
gstv4lsrc.h v4lsrc_calls.h \
|
2005-02-03 18:23:17 +00:00
|
|
|
gstv4ljpegsrc.h \
|
2001-12-24 21:43:31 +00:00
|
|
|
gstv4lmjpegsrc.h v4lmjpegsrc_calls.h \
|
2003-03-02 21:58:52 +00:00
|
|
|
gstv4lmjpegsink.h v4lmjpegsink_calls.h \
|
2003-10-14 10:13:05 +00:00
|
|
|
videodev_mjpeg.h \
|
|
|
|
gstv4ltuner.h gstv4lxoverlay.h \
|
|
|
|
gstv4lcolorbalance.h
|