mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 01:30:38 +00:00
4cc2e05629
Add an example to demonstrate the use of a custom taskpool and how to configure it on the task. Currently the taskpool does not do much yet but it'll create some custom threads later on.
9 lines
289 B
Makefile
9 lines
289 B
Makefile
noinst_PROGRAMS = stream-status rtpool-test
|
|
|
|
stream_status_SOURCES = stream-status.c
|
|
stream_status_LDADD = $(GST_OBJ_LIBS)
|
|
stream_status_CFLAGS = $(GST_OBJ_CFLAGS)
|
|
|
|
rtpool_test_SOURCES = rtpool-test.c testrtpool.c
|
|
rtpool_test_LDADD = $(GST_OBJ_LIBS)
|
|
rtpool_test_CFLAGS = $(GST_OBJ_CFLAGS)
|