mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-10-29 05:40:23 -04:00
* rename polypcore/subscribe.[ch] to polypcore/core-subscribe.[ch] to avoid confusion with polyp/subscribe.[ch]
* same for scache.[ch] git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@496 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
parent
b4cb249d70
commit
5ccf4145bc
23 changed files with 30 additions and 30 deletions
|
|
@ -479,7 +479,7 @@ libpolypcore_la_SOURCES += \
|
||||||
polypcore/random.c polypcore/random.h \
|
polypcore/random.c polypcore/random.h \
|
||||||
polypcore/resampler.c polypcore/resampler.h \
|
polypcore/resampler.c polypcore/resampler.h \
|
||||||
polypcore/sample-util.c polypcore/sample-util.h \
|
polypcore/sample-util.c polypcore/sample-util.h \
|
||||||
polypcore/scache.c polypcore/scache.h \
|
polypcore/core-scache.c polypcore/core-scache.h \
|
||||||
polypcore/sconv.c polypcore/sconv.h \
|
polypcore/sconv.c polypcore/sconv.h \
|
||||||
polypcore/sconv-s16be.c polypcore/sconv-s16be.h \
|
polypcore/sconv-s16be.c polypcore/sconv-s16be.h \
|
||||||
polypcore/sconv-s16le.c polypcore/sconv-s16le.h \
|
polypcore/sconv-s16le.c polypcore/sconv-s16le.h \
|
||||||
|
|
@ -491,7 +491,7 @@ libpolypcore_la_SOURCES += \
|
||||||
polypcore/source.c polypcore/source.h \
|
polypcore/source.c polypcore/source.h \
|
||||||
polypcore/source-output.c polypcore/source-output.h \
|
polypcore/source-output.c polypcore/source-output.h \
|
||||||
polypcore/strbuf.c polypcore/strbuf.h \
|
polypcore/strbuf.c polypcore/strbuf.h \
|
||||||
polypcore/subscribe.c polypcore/subscribe.h \
|
polypcore/core-subscribe.c polypcore/core-subscribe.h \
|
||||||
polypcore/tokenizer.c polypcore/tokenizer.h \
|
polypcore/tokenizer.c polypcore/tokenizer.h \
|
||||||
polypcore/util.c polypcore/util.h \
|
polypcore/util.c polypcore/util.h \
|
||||||
polypcore/winsock.h \
|
polypcore/winsock.h \
|
||||||
|
|
|
||||||
|
|
@ -36,7 +36,7 @@
|
||||||
#include <polypcore/util.h>
|
#include <polypcore/util.h>
|
||||||
#include <polypcore/modargs.h>
|
#include <polypcore/modargs.h>
|
||||||
#include <polypcore/log.h>
|
#include <polypcore/log.h>
|
||||||
#include <polypcore/subscribe.h>
|
#include <polypcore/core-subscribe.h>
|
||||||
#include <polypcore/xmalloc.h>
|
#include <polypcore/xmalloc.h>
|
||||||
#include <polypcore/sink-input.h>
|
#include <polypcore/sink-input.h>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
#include <polypcore/util.h>
|
#include <polypcore/util.h>
|
||||||
#include <polypcore/modargs.h>
|
#include <polypcore/modargs.h>
|
||||||
#include <polypcore/log.h>
|
#include <polypcore/log.h>
|
||||||
#include <polypcore/subscribe.h>
|
#include <polypcore/core-subscribe.h>
|
||||||
#include <polypcore/xmalloc.h>
|
#include <polypcore/xmalloc.h>
|
||||||
#include <polypcore/sink-input.h>
|
#include <polypcore/sink-input.h>
|
||||||
#include <polypcore/pdispatch.h>
|
#include <polypcore/pdispatch.h>
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
|
|
||||||
#include <polypcore/iochannel.h>
|
#include <polypcore/iochannel.h>
|
||||||
#include <polypcore/sink.h>
|
#include <polypcore/sink.h>
|
||||||
#include <polypcore/scache.h>
|
#include <polypcore/core-scache.h>
|
||||||
#include <polypcore/modargs.h>
|
#include <polypcore/modargs.h>
|
||||||
#include <polypcore/xmalloc.h>
|
#include <polypcore/xmalloc.h>
|
||||||
#include <polypcore/namereg.h>
|
#include <polypcore/namereg.h>
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,7 @@
|
||||||
|
|
||||||
#include <polypcore/module.h>
|
#include <polypcore/module.h>
|
||||||
#include <polypcore/sink.h>
|
#include <polypcore/sink.h>
|
||||||
#include <polypcore/scache.h>
|
#include <polypcore/core-scache.h>
|
||||||
#include <polypcore/modargs.h>
|
#include <polypcore/modargs.h>
|
||||||
#include <polypcore/xmalloc.h>
|
#include <polypcore/xmalloc.h>
|
||||||
#include <polypcore/namereg.h>
|
#include <polypcore/namereg.h>
|
||||||
|
|
|
||||||
|
|
@ -33,8 +33,8 @@
|
||||||
#include "memchunk.h"
|
#include "memchunk.h"
|
||||||
#include "sound-file.h"
|
#include "sound-file.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
#include "scache.h"
|
#include "core-scache.h"
|
||||||
#include "subscribe.h"
|
#include "core-subscribe.h"
|
||||||
|
|
||||||
static void entry_free(pa_autoload_entry *e) {
|
static void entry_free(pa_autoload_entry *e) {
|
||||||
assert(e);
|
assert(e);
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,7 @@
|
||||||
#include "strbuf.h"
|
#include "strbuf.h"
|
||||||
#include "namereg.h"
|
#include "namereg.h"
|
||||||
#include "cli-text.h"
|
#include "cli-text.h"
|
||||||
#include "scache.h"
|
#include "core-scache.h"
|
||||||
#include "sample-util.h"
|
#include "sample-util.h"
|
||||||
#include "sound-file.h"
|
#include "sound-file.h"
|
||||||
#include "play-memchunk.h"
|
#include "play-memchunk.h"
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
#include "source-output.h"
|
#include "source-output.h"
|
||||||
#include "strbuf.h"
|
#include "strbuf.h"
|
||||||
#include "sample-util.h"
|
#include "sample-util.h"
|
||||||
#include "scache.h"
|
#include "core-scache.h"
|
||||||
#include "autoload.h"
|
#include "autoload.h"
|
||||||
#include "xmalloc.h"
|
#include "xmalloc.h"
|
||||||
#include <polyp/volume.h>
|
#include <polyp/volume.h>
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@
|
||||||
|
|
||||||
#include "client.h"
|
#include "client.h"
|
||||||
#include "xmalloc.h"
|
#include "xmalloc.h"
|
||||||
#include "subscribe.h"
|
#include "core-subscribe.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
|
|
||||||
pa_client *pa_client_new(pa_core *core, const char *name, const char *driver) {
|
pa_client *pa_client_new(pa_core *core, const char *name, const char *driver) {
|
||||||
|
|
|
||||||
|
|
@ -41,13 +41,13 @@
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "scache.h"
|
#include "core-scache.h"
|
||||||
#include "sink-input.h"
|
#include "sink-input.h"
|
||||||
#include <polyp/mainloop.h>
|
#include <polyp/mainloop.h>
|
||||||
#include "sample-util.h"
|
#include "sample-util.h"
|
||||||
#include "play-memchunk.h"
|
#include "play-memchunk.h"
|
||||||
#include "xmalloc.h"
|
#include "xmalloc.h"
|
||||||
#include "subscribe.h"
|
#include "core-subscribe.h"
|
||||||
#include "namereg.h"
|
#include "namereg.h"
|
||||||
#include "sound-file.h"
|
#include "sound-file.h"
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
#ifndef fooscachehfoo
|
#ifndef foocorescachehfoo
|
||||||
#define fooscachehfoo
|
#define foocorescachehfoo
|
||||||
|
|
||||||
/* $Id$ */
|
/* $Id$ */
|
||||||
|
|
||||||
|
|
@ -27,7 +27,7 @@
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
|
|
||||||
#include "queue.h"
|
#include "queue.h"
|
||||||
#include "subscribe.h"
|
#include "core-subscribe.h"
|
||||||
#include "xmalloc.h"
|
#include "xmalloc.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
#ifndef foosubscribehfoo
|
#ifndef foocoresubscribehfoo
|
||||||
#define foosubscribehfoo
|
#define foocoresubscribehfoo
|
||||||
|
|
||||||
/* $Id$ */
|
/* $Id$ */
|
||||||
|
|
||||||
|
|
@ -34,10 +34,10 @@
|
||||||
#include "source.h"
|
#include "source.h"
|
||||||
#include "namereg.h"
|
#include "namereg.h"
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
#include "scache.h"
|
#include "core-scache.h"
|
||||||
#include "autoload.h"
|
#include "autoload.h"
|
||||||
#include "xmalloc.h"
|
#include "xmalloc.h"
|
||||||
#include "subscribe.h"
|
#include "core-subscribe.h"
|
||||||
#include "props.h"
|
#include "props.h"
|
||||||
#include "random.h"
|
#include "random.h"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -31,7 +31,7 @@ typedef struct pa_core pa_core;
|
||||||
#include "memblock.h"
|
#include "memblock.h"
|
||||||
#include "resampler.h"
|
#include "resampler.h"
|
||||||
#include "queue.h"
|
#include "queue.h"
|
||||||
#include "subscribe.h"
|
#include "core-subscribe.h"
|
||||||
|
|
||||||
/* The core structure of polypaudio. Every polypaudio daemon contains
|
/* The core structure of polypaudio. Every polypaudio daemon contains
|
||||||
* exactly one of these. It is used for storing kind of global
|
* exactly one of these. It is used for storing kind of global
|
||||||
|
|
|
||||||
|
|
@ -32,7 +32,7 @@
|
||||||
|
|
||||||
#include "module.h"
|
#include "module.h"
|
||||||
#include "xmalloc.h"
|
#include "xmalloc.h"
|
||||||
#include "subscribe.h"
|
#include "core-subscribe.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,7 @@
|
||||||
#include "source.h"
|
#include "source.h"
|
||||||
#include "sink.h"
|
#include "sink.h"
|
||||||
#include "xmalloc.h"
|
#include "xmalloc.h"
|
||||||
#include "subscribe.h"
|
#include "core-subscribe.h"
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
|
|
||||||
struct namereg_entry {
|
struct namereg_entry {
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,7 @@
|
||||||
#include "source-output.h"
|
#include "source-output.h"
|
||||||
#include "source.h"
|
#include "source.h"
|
||||||
#include <polyp/sample.h>
|
#include <polyp/sample.h>
|
||||||
#include "scache.h"
|
#include "core-scache.h"
|
||||||
#include "sample-util.h"
|
#include "sample-util.h"
|
||||||
#include "authkey.h"
|
#include "authkey.h"
|
||||||
#include "namereg.h"
|
#include "namereg.h"
|
||||||
|
|
|
||||||
|
|
@ -40,10 +40,10 @@
|
||||||
#include "pstream-util.h"
|
#include "pstream-util.h"
|
||||||
#include "authkey.h"
|
#include "authkey.h"
|
||||||
#include "namereg.h"
|
#include "namereg.h"
|
||||||
#include "scache.h"
|
#include "core-scache.h"
|
||||||
#include "xmalloc.h"
|
#include "xmalloc.h"
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
#include "subscribe.h"
|
#include "core-subscribe.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
#include "autoload.h"
|
#include "autoload.h"
|
||||||
#include "authkey-prop.h"
|
#include "authkey-prop.h"
|
||||||
|
|
|
||||||
|
|
@ -31,7 +31,7 @@
|
||||||
#include "sink-input.h"
|
#include "sink-input.h"
|
||||||
#include "sample-util.h"
|
#include "sample-util.h"
|
||||||
#include "xmalloc.h"
|
#include "xmalloc.h"
|
||||||
#include "subscribe.h"
|
#include "core-subscribe.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
|
|
||||||
#define CONVERT_BUFFER_LENGTH 4096
|
#define CONVERT_BUFFER_LENGTH 4096
|
||||||
|
|
|
||||||
|
|
@ -34,7 +34,7 @@
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
#include "sample-util.h"
|
#include "sample-util.h"
|
||||||
#include "xmalloc.h"
|
#include "xmalloc.h"
|
||||||
#include "subscribe.h"
|
#include "core-subscribe.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
#include <polyp/introspect.h>
|
#include <polyp/introspect.h>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@
|
||||||
|
|
||||||
#include "source-output.h"
|
#include "source-output.h"
|
||||||
#include "xmalloc.h"
|
#include "xmalloc.h"
|
||||||
#include "subscribe.h"
|
#include "core-subscribe.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
|
|
||||||
pa_source_output* pa_source_output_new(
|
pa_source_output* pa_source_output_new(
|
||||||
|
|
|
||||||
|
|
@ -32,7 +32,7 @@
|
||||||
#include "source-output.h"
|
#include "source-output.h"
|
||||||
#include "namereg.h"
|
#include "namereg.h"
|
||||||
#include "xmalloc.h"
|
#include "xmalloc.h"
|
||||||
#include "subscribe.h"
|
#include "core-subscribe.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
|
|
||||||
pa_source* pa_source_new(
|
pa_source* pa_source_new(
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue