mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 10:41:04 +00:00
cd177c8577
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?
33 lines
865 B
Makefile
33 lines
865 B
Makefile
plugin_LTLIBRARIES = libgstvideo4linux.la
|
|
|
|
if USE_XVIDEO
|
|
xv_source = gstv4lxoverlay.c
|
|
xv_libs = $(X_LIBS) $(XVIDEO_LIBS)
|
|
else
|
|
xv_source =
|
|
xv_libs =
|
|
endif
|
|
|
|
libgstvideo4linux_la_SOURCES = \
|
|
gstv4lelement.c v4l_calls.c \
|
|
gstv4lsrc.c v4lsrc_calls.c \
|
|
gstv4lmjpegsrc.c v4lmjpegsrc_calls.c \
|
|
gstv4lmjpegsink.c v4lmjpegsink_calls.c \
|
|
gstv4l.c \
|
|
gstv4ltuner.c \
|
|
$(xv_source) \
|
|
gstv4lcolorbalance.c
|
|
libgstvideo4linux_la_CFLAGS = $(GST_CFLAGS) $(X_CFLAGS)
|
|
libgstvideo4linux_la_LIBADD = \
|
|
$(top_builddir)/gst-libs/gst/libgstinterfaces-@GST_MAJORMINOR@.la
|
|
libgstvideo4linux_la_LDFLAGS = \
|
|
$(GST_PLUGIN_LDFLAGS) \
|
|
$(xv_libs)
|
|
|
|
noinst_HEADERS = gstv4lelement.h v4l_calls.h \
|
|
gstv4lsrc.h v4lsrc_calls.h \
|
|
gstv4lmjpegsrc.h v4lmjpegsrc_calls.h \
|
|
gstv4lmjpegsink.h v4lmjpegsink_calls.h \
|
|
videodev_mjpeg.h \
|
|
gstv4ltuner.h gstv4lxoverlay.h \
|
|
gstv4lcolorbalance.h
|