mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 19:31:12 +00:00
84c6815cf7
Original commit message from CVS: * gst/debug/Makefile.am: * gst/debug/gstdebug.c: (plugin_init): * gst/debug/gstpushfilesrc.c: * gst/debug/gstpushfilesrc.h: Add code for a pushfilesrc element that implements a pushfile:// URI handler, to make debugging push-mode operation of demuxer/decoders that support both easier in connection with seek/playbin/etc. The element isn't registered at the moment.
43 lines
1.1 KiB
Makefile
43 lines
1.1 KiB
Makefile
if GST_HAVE_MMAP
|
|
EFENCE_PLUGIN=libgstefence.la
|
|
else
|
|
EFENCE_PLUGIN=
|
|
endif
|
|
|
|
plugin_LTLIBRARIES = $(EFENCE_PLUGIN) libgstdebug.la libgstnavigationtest.la
|
|
|
|
noinst_HEADERS = \
|
|
efence.h \
|
|
gstnavigationtest.h \
|
|
gstnavseek.h \
|
|
gstpushfilesrc.h \
|
|
progressreport.h \
|
|
tests.h
|
|
|
|
libgstefence_la_SOURCES = efence.c
|
|
libgstefence_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstefence_la_LIBADD = $(GST_LIBS)
|
|
libgstefence_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
libgstnavigationtest_la_SOURCES = gstnavigationtest.c
|
|
libgstnavigationtest_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) \
|
|
$(GST_PLUGINS_BASE_CFLAGS)
|
|
libgstnavigationtest_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) \
|
|
$(GST_PLUGINS_BASE_LIBS) -lgstvideo-@GST_MAJORMINOR@
|
|
libgstnavigationtest_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
libgstdebug_la_SOURCES = \
|
|
gstdebug.c \
|
|
breakmydata.c \
|
|
progressreport.c \
|
|
progressreport.h \
|
|
gstnavseek.c \
|
|
gstpushfilesrc.c \
|
|
gstpushfilesrc.h \
|
|
tests.c \
|
|
testplugin.c
|
|
# negotiation.c
|
|
|
|
libgstdebug_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS)
|
|
libgstdebug_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS)
|
|
libgstdebug_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|