mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-23 06:59:53 -05:00
add a generic priority queue implementation
This commit is contained in:
parent
3e16d2f40d
commit
3ad8c04564
5 changed files with 372 additions and 1 deletions
|
|
@ -263,7 +263,8 @@ noinst_PROGRAMS = \
|
|||
proplist-test \
|
||||
rtstutter \
|
||||
stripnul \
|
||||
lock-autospawn-test
|
||||
lock-autospawn-test \
|
||||
prioq-test
|
||||
|
||||
if HAVE_SIGXCPU
|
||||
noinst_PROGRAMS += \
|
||||
|
|
@ -458,6 +459,11 @@ lock_autospawn_test_LDADD = $(AM_LDADD) libpulsecore.la
|
|||
lock_autospawn_test_CFLAGS = $(AM_CFLAGS) $(LIBOIL_CFLAGS)
|
||||
lock_autospawn_test_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS) $(LIBOIL_LIBS)
|
||||
|
||||
prioq_test_SOURCES = tests/prioq-test.c
|
||||
prioq_test_LDADD = $(AM_LDADD) libpulsecore.la
|
||||
prioq_test_CFLAGS = $(AM_CFLAGS) $(LIBOIL_CFLAGS)
|
||||
prioq_test_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS) $(LIBOIL_LIBS)
|
||||
|
||||
###################################
|
||||
# Client library #
|
||||
###################################
|
||||
|
|
@ -757,6 +763,7 @@ libpulsecore_la_SOURCES += \
|
|||
pulsecore/g711.c pulsecore/g711.h \
|
||||
pulsecore/hashmap.c pulsecore/hashmap.h \
|
||||
pulsecore/idxset.c pulsecore/idxset.h \
|
||||
pulsecore/prioq.c pulsecore/prioq.h \
|
||||
pulsecore/log.c pulsecore/log.h \
|
||||
pulsecore/mcalign.c pulsecore/mcalign.h \
|
||||
pulsecore/memblock.c pulsecore/memblock.h \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue