gstreamer/sys/kms/Makefile.am
Víctor Manuel Jáquez Leal 620e1d2fcd kmssink: add plugin and sink element
This is simple video sink that use libdrm/libkms API to render frames.

The element uses planes to render through drmModeSetPlane().

It has been tested in an Exynos4412 board and in a Freescale I.MX6 board.

https://bugzilla.gnome.org/show_bug.cgi?id=761059
2016-04-11 19:57:48 +02:00

39 lines
752 B
Makefile

plugin_LTLIBRARIES = libgstkmssink.la
libgstkmssink_la_SOURCES = \
gstkmssink.c \
gstkmsutils.c \
gstkmsallocator.c \
gstkmsbufferpool.c \
$(NUL)
libgstkmssink_la_CFLAGS = \
$(GST_PLUGINS_BASE_CFLAGS) \
$(GST_BASE_CFLAGS) \
$(GST_VIDEO_CFLAGS) \
$(GST_CFLAGS) \
$(DRM_CFLAGS) \
$(NULL)
libgstkmssink_la_LIBADD = \
$(GST_PLUGINS_BASE_LIBS) \
$(GST_BASE_LIBS) \
$(GST_VIDEO_LIBS) \
$(GST_LIBS) \
$(DRM_LIBS) \
$(NULL)
libgstkmssink_la_LDFLAGS = \
$(GST_PLUGIN_LDFLAGS) \
$(NULL)
libgstkmssink_la_LIBTOOLFLAGS = \
$(GST_PLUGIN_LIBTOOLFLAGS) \
$(NULL)
noinst_HEADERS = \
gstkmssink.h \
gstkmsutils.h \
gstkmsallocator.h \
gstkmsbufferpool.h \
$(NULL)