gstreamer/gst/debugutils/Makefile.am
Nicolas Dufresne f0c676c0f9 Add fakevideosink element
This is a wrapper around fakesink that will advertise GstVideoMeta
and other meta API in order to achieve zero-copy whenever possible.
his new element is useful when doing performance testing with
video stream and don't want the sink capability to change the
upstream behaviour.

https://bugzilla.gnome.org/show_bug.cgi?id=793624
2018-02-21 11:30:33 -05:00

28 lines
700 B
Makefile

plugin_LTLIBRARIES = libgstdebugutilsbad.la
libgstdebugutilsbad_la_SOURCES = \
gstdebugspy.c \
debugutilsbad.c \
fpsdisplaysink.c \
gstchecksumsink.c \
gstchopmydata.c \
gstcompare.c \
gstwatchdog.c \
gsterrorignore.c \
gstfakevideosink.c
libgstdebugutilsbad_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS)
libgstdebugutilsbad_la_LIBADD = $(GST_BASE_LIBS) $(GST_PLUGINS_BASE_LIBS) \
-lgstvideo-$(GST_API_VERSION) \
$(GST_LIBS)
libgstdebugutilsbad_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
noinst_HEADERS = fpsdisplaysink.h \
gstchecksumsink.h \
gstchopmydata.h \
gstcompare.h \
gstdebugspy.h \
gstwatchdog.h \
gsterrorignore.h \
gstfakevideosink.h