mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-02 06:31:08 +00:00
f0326eea55
Original commit message from CVS: - Remove the propsprivate header file - Added new API for properties. - Moved the clock distribution to the scheduler. - Removed the lock from GstCaps - Added boxed types for Caps/Props - Simplified the clock, new systemclock implementation - Removed deprecated element_info/send_event functions - First step at exposing more info in the pad_connect functions - Queue cleanup - Make the scheduler aware of other schedulers inside it - Added the _SELF_SCHEDULABLE flag to gstthread - Removed _get_widget from _utils, changed to new props API - Make fakesink sync on timestamps when requested - Removed the offset notify from filesrc - Added a fast scheduler - some scheduler cleanups.
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 = $(GST_LIBS) ../libcothreads.la
|
|
libgstfastscheduler_la_LDFLAGS = @GST_LT_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
|
|
|