mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-12 12:21:30 +00:00
05c2afa7f9
Original commit message from CVS: * gst/gstbin.c: (gst_bin_iterate_func), (gst_bin_iterate): don't * gst/schedulers/entryscheduler.c: (safe_cothread_switch), (safe_cothread_destroy), (gst_entry_scheduler_remove_all_cothreads), (gst_entry_scheduler_reset), (_remove_cothread), (gst_entry_scheduler_state_transition): hold off cothread destruction if we're not in main cothread * configure.ac: * testsuite/Makefile.am: add new test dir * testsuite/schedulers/.cvsignore: * testsuite/schedulers/Makefile.am: add tests * testsuite/schedulers/relink.c: (cb_handoff), (main): check relinking and adding/removing elements from a running pipeline * testsuite/schedulers/unlink.c: (cb_handoff), (main): check unlinking in a running pipeline * testsuite/schedulers/unref.c: (cb_handoff), (main): check unreffing a running pipeline * testsuite/schedulers/useless_iteration.c: (main): check iterating a pipeline that contains running threads works
31 lines
665 B
Makefile
31 lines
665 B
Makefile
include Rules
|
|
|
|
|
|
if GST_DISABLE_PARSE
|
|
GST_PARSE_DIRS =
|
|
else
|
|
GST_PARSE_DIRS = parse
|
|
endif
|
|
|
|
if GST_DISABLE_GST_DEBUG
|
|
GST_DEBUG_DIRS =
|
|
else
|
|
GST_DEBUG_DIRS = debug
|
|
endif
|
|
|
|
SUBDIRS = bins bytestream cleanup dynparams ghostpads \
|
|
caps plugin elements clock refcounting tags threads \
|
|
indexers debug $(GST_PARSE_DIRS) $(GST_DEBUG_DIRS) \
|
|
dlopen negotiation schedulers
|
|
|
|
DIST_SUBDIRS = bins bytestream caps cleanup clock dynparams elements indexers \
|
|
plugin refcounting tags threads parse debug ghostpads \
|
|
dlopen negotiation schedulers
|
|
|
|
tests_pass = test_gst_init
|
|
tests_fail =
|
|
tests_ignore =
|
|
|
|
# we makes them, we gots to clean them
|
|
CLEANFILES += test-registry.xml
|
|
|