mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
9664d1a6b1
Can be used to fix misbehaving sinks. It will pass through all buffers until it encounters GST_FLOW_ERROR or GST_FLOW_NOT_NEGOTIATED (configurable). At that point it will unref the buffers and return GST_FLOW_NOT_LINKED (configurable) - until the next READY_TO_PAUSED or FLUSH_STOP. https://bugzilla.gnome.org/show_bug.cgi?id=750098
41 lines
1.1 KiB
Makefile
41 lines
1.1 KiB
Makefile
glib_gen_prefix = __gst_debugutils
|
|
glib_gen_basename = debugutils
|
|
|
|
include $(top_srcdir)/common/gst-glib-gen.mak
|
|
|
|
built_sources = debugutils-marshal.c
|
|
built_headers = debugutils-marshal.h
|
|
|
|
BUILT_SOURCES = $(built_sources) $(built_headers)
|
|
|
|
CLEANFILES = $(BUILT_SOURCES)
|
|
|
|
EXTRA_DIST = debugutils-marshal.list
|
|
|
|
plugin_LTLIBRARIES = libgstdebugutilsbad.la
|
|
|
|
libgstdebugutilsbad_la_SOURCES = \
|
|
gstdebugspy.c \
|
|
debugutilsbad.c \
|
|
fpsdisplaysink.c \
|
|
gstchecksumsink.c \
|
|
gstchopmydata.c \
|
|
gstcompare.c \
|
|
gstwatchdog.c \
|
|
gsterrorignore.c
|
|
|
|
nodist_libgstdebugutilsbad_la_SOURCES = $(BUILT_SOURCES)
|
|
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)
|
|
libgstdebugutilsbad_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
|
|
|
noinst_HEADERS = fpsdisplaysink.h \
|
|
gstchecksumsink.h \
|
|
gstchopmydata.h \
|
|
gstcompare.h \
|
|
gstdebugspy.h \
|
|
gstwatchdog.h \
|
|
gsterrorignore.h
|