mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-31 03:29:50 +00:00
3ff7128293
Default view finder sink in camerabin is autovideosink which doesn't support xoverlay iface. If application decides to use another sink that supports xoverlay, then it can use the interface directly.
39 lines
1.2 KiB
Makefile
39 lines
1.2 KiB
Makefile
glib_enum_prefix = __gst_camerabin
|
|
|
|
include $(top_srcdir)/common/glib-gen.mak
|
|
|
|
built_sources = gstcamerabin-marshal.c
|
|
built_headers = gstcamerabin-marshal.h
|
|
|
|
BUILT_SOURCES = $(built_sources) $(built_headers)
|
|
|
|
CLEANFILES = $(BUILT_SOURCES)
|
|
|
|
EXTRA_DIST = gstcamerabin-marshal.list
|
|
|
|
plugin_LTLIBRARIES = libgstcamerabin.la
|
|
|
|
libgstcamerabin_la_SOURCES = gstcamerabin.c \
|
|
gstcamerabincolorbalance.c \
|
|
camerabinimage.c \
|
|
camerabinvideo.c \
|
|
camerabingeneral.c \
|
|
gstcamerabinphotography.c
|
|
|
|
nodist_libgstcamerabin_la_SOURCES = $(built_sources)
|
|
libgstcamerabin_la_CFLAGS = \
|
|
$(GST_CFLAGS) $(GST_BASE_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) -DGST_USE_UNSTABLE_API
|
|
libgstcamerabin_la_LIBADD = \
|
|
$(GST_LIBS) $(GST_BASE_LIBS) $(GST_PLUGINS_BASE_LIBS) \
|
|
-lgstinterfaces-$(GST_MAJORMINOR) \
|
|
$(top_builddir)/gst-libs/gst/interfaces/libgstphotography-$(GST_MAJORMINOR).la
|
|
|
|
libgstcamerabin_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstcamerabin_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = gstcamerabin.h \
|
|
gstcamerabincolorbalance.h \
|
|
camerabinimage.h \
|
|
camerabinvideo.h \
|
|
camerabingeneral.h \
|
|
gstcamerabinphotography.h
|