diff options
author | Lennart Poettering <lennart@poettering.net> | 2006-08-18 19:55:18 +0000 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2006-08-18 19:55:18 +0000 |
commit | 0e436a6926af56f37a74a03bb5e143e078ca0d55 (patch) | |
tree | f837bc433ba8b6f904e6d512f9c9c2552a9827db /src/pulsecore/sample-util.c | |
parent | ff48681aaef919cd2c85e4572928e936397a615c (diff) |
Rework memory management to allow shared memory data transfer. The central idea
is to allocate all audio memory blocks from a per-process memory pool which is
available as read-only SHM segment to other local processes. Then, instead of
writing the actual audio data to the socket just write references to this
shared memory pool.
To work optimally all memory blocks should now be of type PA_MEMBLOCK_POOL or
PA_MEMBLOCK_POOL_EXTERNAL. The function pa_memblock_new() now generates memory
blocks of this type by default.
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@1266 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'src/pulsecore/sample-util.c')
-rw-r--r-- | src/pulsecore/sample-util.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/pulsecore/sample-util.c b/src/pulsecore/sample-util.c index 638f8067..7f5d8a02 100644 --- a/src/pulsecore/sample-util.c +++ b/src/pulsecore/sample-util.c @@ -35,13 +35,14 @@ #include "sample-util.h" #include "endianmacros.h" -pa_memblock *pa_silence_memblock_new(const pa_sample_spec *spec, size_t length, pa_memblock_stat*s) { +pa_memblock *pa_silence_memblock_new(pa_mempool *pool, const pa_sample_spec *spec, size_t length) { + assert(pool); assert(spec); if (length == 0) - length = pa_bytes_per_second(spec)/10; /* 100 ms */ + length = pa_bytes_per_second(spec)/20; /* 50 ms */ - return pa_silence_memblock(pa_memblock_new(length, s), spec); + return pa_silence_memblock(pa_memblock_new(pool, length), spec); } pa_memblock *pa_silence_memblock(pa_memblock* b, const pa_sample_spec *spec) { |