mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
cfb228b0f9
Original commit message from CVS: * add notify back to filesrc, it's needed for MVC applications * remove notify printouts from gst-launch * cleanup in gst-plugins configure.ac * some jack updates * remove SELF_ITERATING flag in favor of SEF_SCHEDULABLE (not a clear name, but it's what we have for the moment) * improve parsing of request pad names, no more sscanf * fixes to the fastscheduler Makefile.am
24 lines
1.1 KiB
Makefile
24 lines
1.1 KiB
Makefile
plugindir = $(libdir)/gst
|
|
|
|
plugin_LTLIBRARIES = libgstbasicscheduler.la libgststandardscheduler.la libgstfastscheduler.la
|
|
|
|
libgstbasicscheduler_la_SOURCES = gstbasicscheduler.c
|
|
libgstbasicscheduler_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstbasicscheduler_la_LIBADD = ../libcothreads.la
|
|
libgstbasicscheduler_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
libgststandardscheduler_la_SOURCES = gststandardscheduler.c
|
|
libgststandardscheduler_la_CFLAGS = $(GST_CFLAGS) -I$(top_srcdir)/libs/ext/cothreads
|
|
libgststandardscheduler_la_LIBADD = $(top_builddir)/libs/ext/cothreads/cothreads/libcothreads-gthreads.la
|
|
libgststandardscheduler_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
libgstfastscheduler_la_SOURCES = gstfastscheduler.c
|
|
libgstfastscheduler_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstfastscheduler_la_LIBADD = ../libcothreads.la
|
|
libgstfastscheduler_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
## this is a REALLY evil hack
|
|
## but we need to keep it as long as we have libs/gst and libs/ext
|
|
$(top_builddir)/libs/ext/cothreads/cothreads/libcothreads-gthreads.la:
|
|
cd $(top_builddir)/libs/ext/cothreads/cothreads && make
|
|
|