mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-10-29 05:40:23 -04:00
Move xmalloc to the public side (libpolyp).
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@908 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
parent
cdd3588f3a
commit
d9cc2cfcb9
105 changed files with 193 additions and 109 deletions
|
|
@ -273,10 +273,10 @@ mainloop_test_glib12_LDFLAGS = $(AM_LDFLAGS) $(BINLDFLAGS)
|
|||
|
||||
memblockq_test_SOURCES = \
|
||||
tests/memblockq-test.c \
|
||||
polyp/xmalloc.c \
|
||||
polypcore/memblockq.c \
|
||||
polypcore/log.c \
|
||||
polypcore/memblock.c \
|
||||
polypcore/xmalloc.c \
|
||||
polypcore/util.c \
|
||||
polypcore/mcalign.c \
|
||||
polypcore/memchunk.c
|
||||
|
|
@ -313,7 +313,8 @@ polypinclude_HEADERS = \
|
|||
polyp/subscribe.h \
|
||||
polyp/version.h \
|
||||
polyp/sample.h \
|
||||
polyp/volume.h
|
||||
polyp/volume.h \
|
||||
polyp/xmalloc.h
|
||||
|
||||
if HAVE_HOWL
|
||||
polypinclude_HEADERS += \
|
||||
|
|
@ -360,6 +361,7 @@ libpolyp_la_SOURCES = \
|
|||
polyp/mainloop.c polyp/mainloop.h \
|
||||
polyp/mainloop-signal.c polyp/mainloop-signal.h \
|
||||
polyp/thread-mainloop.c polyp/thread-mainloop.h \
|
||||
polyp/xmalloc.c polyp/xmalloc.h \
|
||||
polypcore/pipe.c polypcore/pipe.h \
|
||||
polypcore/poll.c polypcore/poll.h
|
||||
|
||||
|
|
@ -392,7 +394,6 @@ libpolyp_la_SOURCES += \
|
|||
polypcore/tagstruct.c polypcore/tagstruct.h \
|
||||
polypcore/util.c polypcore/util.h \
|
||||
polypcore/winsock.h \
|
||||
polypcore/xmalloc.c polypcore/xmalloc.h \
|
||||
polypcore/llist.h
|
||||
|
||||
if OS_IS_WIN32
|
||||
|
|
@ -485,8 +486,7 @@ polypcoreinclude_HEADERS = \
|
|||
polypcore/strbuf.h \
|
||||
polypcore/tokenizer.h \
|
||||
polypcore/util.h \
|
||||
polypcore/utf8.h \
|
||||
polypcore/xmalloc.h
|
||||
polypcore/utf8.h
|
||||
|
||||
lib_LTLIBRARIES += libpolypcore.la
|
||||
|
||||
|
|
@ -497,7 +497,8 @@ libpolypcore_la_SOURCES = \
|
|||
polyp/mainloop-api.c polyp/mainloop-api.h \
|
||||
polyp/mainloop-signal.c polyp/mainloop-signal.h \
|
||||
polyp/sample.c polyp/sample.h \
|
||||
polyp/volume.c polyp/volume.h
|
||||
polyp/volume.c polyp/volume.h \
|
||||
polyp/xmalloc.c polyp/xmalloc.h
|
||||
|
||||
# Pure core stuff (some are shared in libpolyp though).
|
||||
libpolypcore_la_SOURCES += \
|
||||
|
|
@ -546,7 +547,6 @@ libpolypcore_la_SOURCES += \
|
|||
polypcore/tokenizer.c polypcore/tokenizer.h \
|
||||
polypcore/util.c polypcore/util.h \
|
||||
polypcore/winsock.h \
|
||||
polypcore/xmalloc.c polypcore/xmalloc.h \
|
||||
polypcore/utf8.c polypcore/utf8.h
|
||||
|
||||
if OS_IS_WIN32
|
||||
|
|
|
|||
|
|
@ -30,9 +30,10 @@
|
|||
#include <getopt.h>
|
||||
#include <sys/stat.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/util.h>
|
||||
#include <polypcore/strbuf.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
|
||||
#include "cmdline.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -29,8 +29,9 @@
|
|||
#include <assert.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/util.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/strbuf.h>
|
||||
#include <polypcore/conf-parser.h>
|
||||
#include <polypcore/resampler.h>
|
||||
|
|
|
|||
|
|
@ -51,6 +51,7 @@
|
|||
|
||||
#include <polyp/mainloop.h>
|
||||
#include <polyp/mainloop-signal.h>
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/core.h>
|
||||
#include <polypcore/memblock.h>
|
||||
|
|
@ -59,7 +60,6 @@
|
|||
#include <polypcore/log.h>
|
||||
#include <polypcore/util.h>
|
||||
#include <polypcore/sioman.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/cli-text.h>
|
||||
#include <polypcore/pid.h>
|
||||
#include <polypcore/namereg.h>
|
||||
|
|
|
|||
|
|
@ -27,7 +27,8 @@
|
|||
#include <asoundlib.h>
|
||||
|
||||
#include <polyp/sample.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/log.h>
|
||||
|
||||
#include "alsa-util.h"
|
||||
|
|
|
|||
|
|
@ -21,8 +21,9 @@
|
|||
|
||||
#include <assert.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/log.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/props.h>
|
||||
|
||||
#include "howl-wrap.h"
|
||||
|
|
|
|||
|
|
@ -34,6 +34,8 @@
|
|||
|
||||
#include <asoundlib.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/core.h>
|
||||
#include <polypcore/module.h>
|
||||
#include <polypcore/memchunk.h>
|
||||
|
|
@ -41,7 +43,6 @@
|
|||
#include <polypcore/modargs.h>
|
||||
#include <polypcore/util.h>
|
||||
#include <polypcore/sample-util.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/log.h>
|
||||
|
||||
#include "alsa-util.h"
|
||||
|
|
|
|||
|
|
@ -34,6 +34,8 @@
|
|||
|
||||
#include <asoundlib.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/core.h>
|
||||
#include <polypcore/module.h>
|
||||
#include <polypcore/memchunk.h>
|
||||
|
|
@ -41,7 +43,6 @@
|
|||
#include <polypcore/modargs.h>
|
||||
#include <polypcore/util.h>
|
||||
#include <polypcore/sample-util.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/log.h>
|
||||
|
||||
#include "alsa-util.h"
|
||||
|
|
|
|||
|
|
@ -26,6 +26,8 @@
|
|||
#include <assert.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/module.h>
|
||||
#include <polypcore/llist.h>
|
||||
#include <polypcore/sink.h>
|
||||
|
|
@ -33,7 +35,6 @@
|
|||
#include <polypcore/memblockq.h>
|
||||
#include <polypcore/log.h>
|
||||
#include <polypcore/util.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/modargs.h>
|
||||
#include <polypcore/namereg.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -33,9 +33,10 @@
|
|||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/module.h>
|
||||
#include <polypcore/modargs.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/log.h>
|
||||
#include <polypcore/util.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -33,12 +33,13 @@
|
|||
#include <unistd.h>
|
||||
#include <limits.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/iochannel.h>
|
||||
#include <polypcore/sink.h>
|
||||
#include <polypcore/module.h>
|
||||
#include <polypcore/util.h>
|
||||
#include <polypcore/modargs.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/log.h>
|
||||
#include <polypcore/socket-client.h>
|
||||
#include <polypcore/esound.h>
|
||||
|
|
|
|||
|
|
@ -36,12 +36,13 @@
|
|||
|
||||
#include <jack/jack.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/iochannel.h>
|
||||
#include <polypcore/sink.h>
|
||||
#include <polypcore/module.h>
|
||||
#include <polypcore/util.h>
|
||||
#include <polypcore/modargs.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/log.h>
|
||||
#include <polyp/mainloop-api.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -36,12 +36,13 @@
|
|||
|
||||
#include <jack/jack.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/iochannel.h>
|
||||
#include <polypcore/source.h>
|
||||
#include <polypcore/module.h>
|
||||
#include <polypcore/util.h>
|
||||
#include <polypcore/modargs.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/log.h>
|
||||
#include <polyp/mainloop-api.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -30,11 +30,12 @@
|
|||
#include <lirc/lirc_client.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/module.h>
|
||||
#include <polypcore/log.h>
|
||||
#include <polypcore/namereg.h>
|
||||
#include <polypcore/sink.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/modargs.h>
|
||||
|
||||
#include "module-lirc-symdef.h"
|
||||
|
|
|
|||
|
|
@ -32,12 +32,13 @@
|
|||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/module.h>
|
||||
#include <polypcore/util.h>
|
||||
#include <polypcore/modargs.h>
|
||||
#include <polypcore/log.h>
|
||||
#include <polypcore/core-subscribe.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/sink-input.h>
|
||||
#include <polypcore/util.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -33,11 +33,12 @@
|
|||
|
||||
#include <linux/input.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/module.h>
|
||||
#include <polypcore/log.h>
|
||||
#include <polypcore/namereg.h>
|
||||
#include <polypcore/sink.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/modargs.h>
|
||||
#include <polypcore/util.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -33,12 +33,13 @@
|
|||
#include <unistd.h>
|
||||
#include <limits.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/iochannel.h>
|
||||
#include <polypcore/sink.h>
|
||||
#include <polypcore/module.h>
|
||||
#include <polypcore/util.h>
|
||||
#include <polypcore/modargs.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/log.h>
|
||||
|
||||
#include "module-null-sink-symdef.h"
|
||||
|
|
|
|||
|
|
@ -36,6 +36,8 @@
|
|||
#include <limits.h>
|
||||
#include <sys/mman.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/iochannel.h>
|
||||
#include <polypcore/sink.h>
|
||||
#include <polypcore/source.h>
|
||||
|
|
@ -43,7 +45,6 @@
|
|||
#include <polypcore/sample-util.h>
|
||||
#include <polypcore/util.h>
|
||||
#include <polypcore/modargs.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/log.h>
|
||||
|
||||
#include "oss-util.h"
|
||||
|
|
|
|||
|
|
@ -35,6 +35,8 @@
|
|||
#include <unistd.h>
|
||||
#include <limits.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/iochannel.h>
|
||||
#include <polypcore/sink.h>
|
||||
#include <polypcore/source.h>
|
||||
|
|
@ -42,7 +44,6 @@
|
|||
#include <polypcore/sample-util.h>
|
||||
#include <polypcore/util.h>
|
||||
#include <polypcore/modargs.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/log.h>
|
||||
|
||||
#include "oss-util.h"
|
||||
|
|
|
|||
|
|
@ -33,12 +33,13 @@
|
|||
#include <unistd.h>
|
||||
#include <limits.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/iochannel.h>
|
||||
#include <polypcore/sink.h>
|
||||
#include <polypcore/module.h>
|
||||
#include <polypcore/util.h>
|
||||
#include <polypcore/modargs.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/log.h>
|
||||
|
||||
#include "module-pipe-sink-symdef.h"
|
||||
|
|
|
|||
|
|
@ -33,12 +33,13 @@
|
|||
#include <unistd.h>
|
||||
#include <limits.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/iochannel.h>
|
||||
#include <polypcore/source.h>
|
||||
#include <polypcore/module.h>
|
||||
#include <polypcore/util.h>
|
||||
#include <polypcore/modargs.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/log.h>
|
||||
|
||||
#include "module-pipe-source-symdef.h"
|
||||
|
|
|
|||
|
|
@ -42,6 +42,8 @@
|
|||
|
||||
#include "../polypcore/winsock.h"
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/module.h>
|
||||
#include <polypcore/socket-server.h>
|
||||
#include <polypcore/socket-util.h>
|
||||
|
|
@ -49,7 +51,6 @@
|
|||
#include <polypcore/modargs.h>
|
||||
#include <polypcore/log.h>
|
||||
#include <polypcore/native-common.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
|
||||
#ifdef USE_TCP_SOCKETS
|
||||
#define SOCKET_DESCRIPTION "(TCP sockets)"
|
||||
|
|
|
|||
|
|
@ -27,10 +27,11 @@
|
|||
#include <assert.h>
|
||||
#include <math.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/sink-input.h>
|
||||
#include <polypcore/module.h>
|
||||
#include <polypcore/modargs.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/namereg.h>
|
||||
#include <polypcore/log.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -41,6 +41,7 @@
|
|||
#include <sys/audio.h>
|
||||
|
||||
#include <polyp/mainloop-signal.h>
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/iochannel.h>
|
||||
#include <polypcore/sink.h>
|
||||
|
|
@ -49,7 +50,6 @@
|
|||
#include <polypcore/sample-util.h>
|
||||
#include <polypcore/util.h>
|
||||
#include <polypcore/modargs.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/log.h>
|
||||
|
||||
#include "module-solaris-symdef.h"
|
||||
|
|
|
|||
|
|
@ -32,13 +32,13 @@
|
|||
#include <stdlib.h>
|
||||
|
||||
#include <polyp/version.h>
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/module.h>
|
||||
#include <polypcore/util.h>
|
||||
#include <polypcore/modargs.h>
|
||||
#include <polypcore/log.h>
|
||||
#include <polypcore/core-subscribe.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/sink-input.h>
|
||||
#include <polypcore/pdispatch.h>
|
||||
#include <polypcore/pstream.h>
|
||||
|
|
|
|||
|
|
@ -32,12 +32,13 @@
|
|||
#include <stdlib.h>
|
||||
#include <ctype.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/module.h>
|
||||
#include <polypcore/util.h>
|
||||
#include <polypcore/modargs.h>
|
||||
#include <polypcore/log.h>
|
||||
#include <polypcore/core-subscribe.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/sink-input.h>
|
||||
#include <polypcore/util.h>
|
||||
#include <polyp/volume.h>
|
||||
|
|
|
|||
|
|
@ -29,6 +29,8 @@
|
|||
|
||||
#include <polyp/mainloop-api.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/sink.h>
|
||||
#include <polypcore/source.h>
|
||||
#include <polypcore/module.h>
|
||||
|
|
@ -36,7 +38,6 @@
|
|||
#include <polypcore/sample-util.h>
|
||||
#include <polypcore/util.h>
|
||||
#include <polypcore/log.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
|
||||
#include "module-waveout-symdef.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -31,11 +31,12 @@
|
|||
#include <X11/Xlib.h>
|
||||
#include <X11/XKBlib.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/iochannel.h>
|
||||
#include <polypcore/sink.h>
|
||||
#include <polypcore/core-scache.h>
|
||||
#include <polypcore/modargs.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/namereg.h>
|
||||
#include <polypcore/log.h>
|
||||
#include <polypcore/x11wrap.h>
|
||||
|
|
|
|||
|
|
@ -32,11 +32,12 @@
|
|||
#include <X11/Xlib.h>
|
||||
#include <X11/Xatom.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/module.h>
|
||||
#include <polypcore/sink.h>
|
||||
#include <polypcore/core-scache.h>
|
||||
#include <polypcore/modargs.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/namereg.h>
|
||||
#include <polypcore/log.h>
|
||||
#include <polypcore/x11wrap.h>
|
||||
|
|
|
|||
|
|
@ -29,7 +29,8 @@
|
|||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/autoload.h>
|
||||
#include <polypcore/sink.h>
|
||||
#include <polypcore/source.h>
|
||||
|
|
|
|||
|
|
@ -31,6 +31,8 @@
|
|||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/module.h>
|
||||
#include <polypcore/llist.h>
|
||||
#include <polypcore/sink.h>
|
||||
|
|
@ -38,7 +40,6 @@
|
|||
#include <polypcore/memblockq.h>
|
||||
#include <polypcore/log.h>
|
||||
#include <polypcore/util.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/modargs.h>
|
||||
#include <polypcore/namereg.h>
|
||||
#include <polypcore/sample-util.h>
|
||||
|
|
|
|||
|
|
@ -32,6 +32,8 @@
|
|||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/module.h>
|
||||
#include <polypcore/llist.h>
|
||||
#include <polypcore/source.h>
|
||||
|
|
@ -39,7 +41,6 @@
|
|||
#include <polypcore/memblockq.h>
|
||||
#include <polypcore/log.h>
|
||||
#include <polypcore/util.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/modargs.h>
|
||||
#include <polypcore/namereg.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -38,9 +38,10 @@
|
|||
#include <sys/filio.h>
|
||||
#endif
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/util.h>
|
||||
#include <polypcore/log.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
|
||||
#include "sap.h"
|
||||
#include "sdp.h"
|
||||
|
|
|
|||
|
|
@ -31,9 +31,10 @@
|
|||
#include <arpa/inet.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/util.h>
|
||||
#include <polypcore/log.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
|
||||
#include "sdp.h"
|
||||
#include "rtp.h"
|
||||
|
|
|
|||
|
|
@ -22,7 +22,8 @@
|
|||
#include <assert.h>
|
||||
#include <howl.h>
|
||||
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/log.h>
|
||||
#include <polypcore/util.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -28,8 +28,10 @@
|
|||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/util.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
|
||||
#include "channelmap.h"
|
||||
|
||||
const char *const table[] = {
|
||||
|
|
|
|||
|
|
@ -29,9 +29,10 @@
|
|||
#include <X11/Xlib.h>
|
||||
#include <X11/Xatom.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/x11prop.h>
|
||||
#include <polypcore/log.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/util.h>
|
||||
|
||||
#include "client-conf-x11.h"
|
||||
|
|
|
|||
|
|
@ -29,7 +29,8 @@
|
|||
#include <errno.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/log.h>
|
||||
#include <polypcore/conf-parser.h>
|
||||
#include <polypcore/util.h>
|
||||
|
|
|
|||
|
|
@ -48,6 +48,7 @@
|
|||
#include "../polypcore/winsock.h"
|
||||
|
||||
#include <polyp/version.h>
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/native-common.h>
|
||||
#include <polypcore/pdispatch.h>
|
||||
|
|
@ -56,7 +57,6 @@
|
|||
#include <polypcore/socket-client.h>
|
||||
#include <polypcore/pstream-util.h>
|
||||
#include <polypcore/util.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/log.h>
|
||||
#include <polypcore/socket-util.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -25,8 +25,9 @@
|
|||
|
||||
#include <assert.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/idxset.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/util.h>
|
||||
|
||||
#include "glib.h"
|
||||
|
|
|
|||
|
|
@ -25,8 +25,9 @@
|
|||
|
||||
#include <assert.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/idxset.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/util.h>
|
||||
|
||||
#include "glib-mainloop.h"
|
||||
|
|
|
|||
|
|
@ -26,8 +26,9 @@
|
|||
#include <assert.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/gccmacro.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
|
||||
#include "mainloop-api.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -36,8 +36,9 @@
|
|||
#include <windows.h>
|
||||
#endif
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/util.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/log.h>
|
||||
#include <polypcore/gccmacro.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -44,9 +44,10 @@
|
|||
#include "../polypcore/pipe.h"
|
||||
#endif
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/util.h>
|
||||
#include <polypcore/idxset.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/log.h>
|
||||
|
||||
#include "mainloop.h"
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@
|
|||
|
||||
#include <assert.h>
|
||||
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include "internal.h"
|
||||
#include "operation.h"
|
||||
|
|
|
|||
|
|
@ -30,9 +30,9 @@
|
|||
|
||||
#include <polyp/polypaudio.h>
|
||||
#include <polyp/thread-mainloop.h>
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/native-common.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/log.h>
|
||||
|
||||
#include "simple.h"
|
||||
|
|
|
|||
|
|
@ -29,7 +29,8 @@
|
|||
#include <string.h>
|
||||
|
||||
#include <polyp/def.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/pstream-util.h>
|
||||
#include <polypcore/util.h>
|
||||
#include <polypcore/log.h>
|
||||
|
|
|
|||
|
|
@ -41,8 +41,9 @@
|
|||
#include <windows.h>
|
||||
#endif
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/log.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/hashmap.h>
|
||||
|
||||
#include "mainloop.h"
|
||||
|
|
|
|||
|
|
@ -22,7 +22,8 @@
|
|||
#include <assert.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/props.h>
|
||||
#include <polypcore/log.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -27,8 +27,9 @@
|
|||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/module.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/memchunk.h>
|
||||
#include <polypcore/sound-file.h>
|
||||
#include <polypcore/log.h>
|
||||
|
|
|
|||
|
|
@ -29,6 +29,8 @@
|
|||
#include <stdlib.h>
|
||||
#include <errno.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/module.h>
|
||||
#include <polypcore/sink.h>
|
||||
#include <polypcore/source.h>
|
||||
|
|
@ -44,7 +46,6 @@
|
|||
#include <polypcore/sound-file.h>
|
||||
#include <polypcore/play-memchunk.h>
|
||||
#include <polypcore/autoload.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/sound-file-stream.h>
|
||||
#include <polypcore/props.h>
|
||||
#include <polypcore/util.h>
|
||||
|
|
|
|||
|
|
@ -27,6 +27,8 @@
|
|||
#include <string.h>
|
||||
|
||||
#include <polyp/volume.h>
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/module.h>
|
||||
#include <polypcore/client.h>
|
||||
#include <polypcore/sink.h>
|
||||
|
|
@ -37,7 +39,6 @@
|
|||
#include <polypcore/sample-util.h>
|
||||
#include <polypcore/core-scache.h>
|
||||
#include <polypcore/autoload.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
|
||||
#include "cli-text.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -28,6 +28,8 @@
|
|||
#include <assert.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/ioline.h>
|
||||
#include <polypcore/module.h>
|
||||
#include <polypcore/sink.h>
|
||||
|
|
@ -40,7 +42,6 @@
|
|||
#include <polypcore/namereg.h>
|
||||
#include <polypcore/cli-text.h>
|
||||
#include <polypcore/cli-command.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/log.h>
|
||||
|
||||
#include "cli.h"
|
||||
|
|
|
|||
|
|
@ -28,7 +28,8 @@
|
|||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/core-subscribe.h>
|
||||
#include <polypcore/log.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -28,9 +28,10 @@
|
|||
#include <stdio.h>
|
||||
#include <errno.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/log.h>
|
||||
#include <polypcore/util.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
|
||||
#include "conf-parser.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -44,10 +44,11 @@
|
|||
#include <polyp/mainloop.h>
|
||||
#include <polyp/channelmap.h>
|
||||
#include <polyp/volume.h>
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/sink-input.h>
|
||||
#include <polypcore/sample-util.h>
|
||||
#include <polypcore/play-memchunk.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/core-subscribe.h>
|
||||
#include <polypcore/namereg.h>
|
||||
#include <polypcore/sound-file.h>
|
||||
|
|
|
|||
|
|
@ -26,8 +26,9 @@
|
|||
#include <stdio.h>
|
||||
#include <assert.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/queue.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/log.h>
|
||||
|
||||
#include "core-subscribe.h"
|
||||
|
|
|
|||
|
|
@ -28,6 +28,8 @@
|
|||
#include <stdio.h>
|
||||
#include <signal.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/module.h>
|
||||
#include <polypcore/sink.h>
|
||||
#include <polypcore/source.h>
|
||||
|
|
@ -35,7 +37,6 @@
|
|||
#include <polypcore/util.h>
|
||||
#include <polypcore/core-scache.h>
|
||||
#include <polypcore/autoload.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/core-subscribe.h>
|
||||
#include <polypcore/props.h>
|
||||
#include <polypcore/random.h>
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@
|
|||
#include <assert.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include "dynarray.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -27,8 +27,9 @@
|
|||
#include <assert.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/idxset.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/log.h>
|
||||
|
||||
#include "hashmap.h"
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@
|
|||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include "idxset.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -38,9 +38,10 @@
|
|||
|
||||
#include "winsock.h"
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/util.h>
|
||||
#include <polypcore/socket-util.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/log.h>
|
||||
|
||||
#include "iochannel.h"
|
||||
|
|
|
|||
|
|
@ -29,7 +29,8 @@
|
|||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/log.h>
|
||||
|
||||
#include "ioline.h"
|
||||
|
|
|
|||
|
|
@ -33,7 +33,8 @@
|
|||
#include <syslog.h>
|
||||
#endif
|
||||
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/util.h>
|
||||
|
||||
#include "log.h"
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@
|
|||
#include <assert.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include "mcalign.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@
|
|||
#include <assert.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include "memblock.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -30,7 +30,8 @@
|
|||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/log.h>
|
||||
#include <polypcore/mcalign.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@
|
|||
#include <assert.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include "memchunk.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -28,13 +28,14 @@
|
|||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/hashmap.h>
|
||||
#include <polypcore/idxset.h>
|
||||
#include <polypcore/sample-util.h>
|
||||
#include <polypcore/namereg.h>
|
||||
#include <polypcore/sink.h>
|
||||
#include <polypcore/source.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/util.h>
|
||||
|
||||
#include "modargs.h"
|
||||
|
|
|
|||
|
|
@ -26,7 +26,8 @@
|
|||
#include <ltdl.h>
|
||||
#include <assert.h>
|
||||
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/util.h>
|
||||
#include <polypcore/log.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -30,7 +30,8 @@
|
|||
#include <string.h>
|
||||
#include <errno.h>
|
||||
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/core-subscribe.h>
|
||||
#include <polypcore/log.h>
|
||||
#include <polypcore/util.h>
|
||||
|
|
|
|||
|
|
@ -29,10 +29,11 @@
|
|||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/autoload.h>
|
||||
#include <polypcore/source.h>
|
||||
#include <polypcore/sink.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/core-subscribe.h>
|
||||
#include <polypcore/util.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@
|
|||
#include <assert.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include "packet.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -27,7 +27,8 @@
|
|||
#include <assert.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/util.h>
|
||||
|
||||
#include "parseaddr.h"
|
||||
|
|
|
|||
|
|
@ -27,8 +27,9 @@
|
|||
#include <stdlib.h>
|
||||
#include <assert.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/native-common.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/llist.h>
|
||||
#include <polypcore/log.h>
|
||||
#include <polypcore/util.h>
|
||||
|
|
|
|||
|
|
@ -39,9 +39,10 @@
|
|||
#include <windows.h>
|
||||
#endif
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/util.h>
|
||||
#include <polypcore/log.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
|
||||
#include "pid.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -28,8 +28,9 @@
|
|||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/sink-input.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/gccmacro.h>
|
||||
|
||||
#include "play-memchunk.h"
|
||||
|
|
|
|||
|
|
@ -21,7 +21,8 @@
|
|||
|
||||
#include <assert.h>
|
||||
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/log.h>
|
||||
|
||||
#include "props.h"
|
||||
|
|
|
|||
|
|
@ -26,8 +26,9 @@
|
|||
#include <assert.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/cli.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/log.h>
|
||||
|
||||
#include "protocol-cli.h"
|
||||
|
|
|
|||
|
|
@ -31,6 +31,8 @@
|
|||
#include <limits.h>
|
||||
|
||||
#include <polyp/sample.h>
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/esound.h>
|
||||
#include <polypcore/memblock.h>
|
||||
#include <polypcore/client.h>
|
||||
|
|
@ -42,7 +44,6 @@
|
|||
#include <polypcore/sample-util.h>
|
||||
#include <polypcore/authkey.h>
|
||||
#include <polypcore/namereg.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/log.h>
|
||||
#include <polypcore/util.h>
|
||||
#include <polypcore/utf8.h>
|
||||
|
|
|
|||
|
|
@ -28,8 +28,9 @@
|
|||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/ioline.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/log.h>
|
||||
#include <polypcore/namereg.h>
|
||||
#include <polypcore/cli-text.h>
|
||||
|
|
|
|||
|
|
@ -30,6 +30,7 @@
|
|||
#include <unistd.h>
|
||||
|
||||
#include <polyp/version.h>
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/native-common.h>
|
||||
#include <polypcore/packet.h>
|
||||
|
|
@ -43,7 +44,6 @@
|
|||
#include <polypcore/authkey.h>
|
||||
#include <polypcore/namereg.h>
|
||||
#include <polypcore/core-scache.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/util.h>
|
||||
#include <polypcore/core-subscribe.h>
|
||||
#include <polypcore/log.h>
|
||||
|
|
|
|||
|
|
@ -30,12 +30,13 @@
|
|||
#include <errno.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/sink-input.h>
|
||||
#include <polypcore/source-output.h>
|
||||
#include <polypcore/client.h>
|
||||
#include <polypcore/sample-util.h>
|
||||
#include <polypcore/namereg.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/log.h>
|
||||
|
||||
#include "protocol-simple.h"
|
||||
|
|
|
|||
|
|
@ -34,8 +34,9 @@
|
|||
|
||||
#include "winsock.h"
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/queue.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/log.h>
|
||||
#include <polypcore/core-scache.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@
|
|||
#include <assert.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include "queue.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -30,8 +30,9 @@
|
|||
#include <liboil/liboilfuncs.h>
|
||||
#include <liboil/liboil.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/sconv.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/log.h>
|
||||
|
||||
#include "resampler.h"
|
||||
|
|
|
|||
|
|
@ -28,8 +28,9 @@
|
|||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/sample-util.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/core-subscribe.h>
|
||||
#include <polypcore/log.h>
|
||||
#include <polypcore/utf8.h>
|
||||
|
|
|
|||
|
|
@ -29,12 +29,12 @@
|
|||
#include <stdio.h>
|
||||
|
||||
#include <polyp/introspect.h>
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/sink-input.h>
|
||||
#include <polypcore/namereg.h>
|
||||
#include <polypcore/util.h>
|
||||
#include <polypcore/sample-util.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/core-subscribe.h>
|
||||
#include <polypcore/log.h>
|
||||
#include <polypcore/utf8.h>
|
||||
|
|
|
|||
|
|
@ -54,9 +54,10 @@
|
|||
|
||||
#include "winsock.h"
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/socket-util.h>
|
||||
#include <polypcore/util.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/log.h>
|
||||
#include <polypcore/parseaddr.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -62,8 +62,9 @@
|
|||
|
||||
#include "winsock.h"
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/socket-util.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/util.h>
|
||||
#include <polypcore/log.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -59,8 +59,9 @@
|
|||
|
||||
#include "winsock.h"
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/util.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/log.h>
|
||||
|
||||
#include "socket-util.h"
|
||||
|
|
|
|||
|
|
@ -30,8 +30,9 @@
|
|||
|
||||
#include <sndfile.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/sink-input.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/log.h>
|
||||
|
||||
#include "sound-file-stream.h"
|
||||
|
|
|
|||
|
|
@ -28,7 +28,8 @@
|
|||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/core-subscribe.h>
|
||||
#include <polypcore/log.h>
|
||||
#include <polypcore/utf8.h>
|
||||
|
|
|
|||
|
|
@ -28,9 +28,10 @@
|
|||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/source-output.h>
|
||||
#include <polypcore/namereg.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/core-subscribe.h>
|
||||
#include <polypcore/log.h>
|
||||
#include <polypcore/sample-util.h>
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@
|
|||
#include <stdarg.h>
|
||||
#include <stdio.h>
|
||||
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include "strbuf.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -26,7 +26,8 @@
|
|||
#include <string.h>
|
||||
#include <assert.h>
|
||||
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/strbuf.h>
|
||||
#include <polypcore/util.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@
|
|||
|
||||
#include "winsock.h"
|
||||
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include "tagstruct.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -27,8 +27,9 @@
|
|||
#include <assert.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include <polyp/xmalloc.h>
|
||||
|
||||
#include <polypcore/dynarray.h>
|
||||
#include <polypcore/xmalloc.h>
|
||||
#include <polypcore/gccmacro.h>
|
||||
|
||||
#include "tokenizer.h"
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue