mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
7cd0ac046a
Renames the subdevice property to just device, and has it return the number of devices in the system in response to a probe. This is useful both for using multiple capture cards, and for detecting whether it's worth adding the element to a pipeline. Also cleans up the property descriptions.
39 lines
849 B
Makefile
39 lines
849 B
Makefile
plugin_LTLIBRARIES = libgstdecklink.la
|
|
|
|
libgstdecklink_la_CPPFLAGS = \
|
|
$(GST_PLUGINS_BAD_CFLAGS) \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_CXXFLAGS) \
|
|
$(DECKLINK_CXXFLAGS)
|
|
libgstdecklink_la_LIBADD = \
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_LIBS) \
|
|
-lgstvideo-@GST_MAJORMINOR@ \
|
|
-lgstinterfaces-@GST_MAJORMINOR@ \
|
|
$(DECKLINK_LIBS) \
|
|
$(LIBM)
|
|
libgstdecklink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstdecklink_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
libgstdecklink_la_SOURCES = \
|
|
gstdecklinksrc.cpp \
|
|
gstdecklinksink.cpp \
|
|
gstdecklink.cpp \
|
|
capture.cpp \
|
|
linux/DeckLinkAPIDispatch.cpp
|
|
|
|
noinst_HEADERS = \
|
|
gstdecklink.h \
|
|
gstdecklinksrc.h \
|
|
gstdecklinksink.h \
|
|
capture.h \
|
|
linux/DeckLinkAPI.h \
|
|
linux/LinuxCOM.h
|
|
|
|
EXTRA_DIST = \
|
|
win/DeckLinkAPI.h \
|
|
win/DeckLinkAPIDispatch.cpp \
|
|
win/DeckLinkAPI_i.c
|
|
|