]> code.delx.au - pulseaudio/blob - src/polypcore/memchunk.c
Cleaned up the includes after the restructuring. Indicate which headers are
[pulseaudio] / src / polypcore / memchunk.c
1 /* $Id$ */
2
3 /***
4 This file is part of polypaudio.
5
6 polypaudio is free software; you can redistribute it and/or modify
7 it under the terms of the GNU Lesser General Public License as
8 published by the Free Software Foundation; either version 2.1 of the
9 License, or (at your option) any later version.
10
11 polypaudio is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
15
16 You should have received a copy of the GNU Lesser General Public
17 License along with polypaudio; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19 USA.
20 ***/
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <assert.h>
29 #include <string.h>
30
31 #include <polypcore/xmalloc.h>
32
33 #include "memchunk.h"
34
35 void pa_memchunk_make_writable(pa_memchunk *c, pa_memblock_stat *s, size_t min) {
36 pa_memblock *n;
37 size_t l;
38 assert(c && c->memblock && c->memblock->ref >= 1);
39
40 if (c->memblock->ref == 1 && !c->memblock->read_only && c->memblock->length >= c->index+min)
41 return;
42
43 l = c->length;
44 if (l < min)
45 l = min;
46
47 n = pa_memblock_new(l, s);
48 memcpy(n->data, (uint8_t*) c->memblock->data + c->index, c->length);
49 pa_memblock_unref(c->memblock);
50 c->memblock = n;
51 c->index = 0;
52 }
53
54 void pa_memchunk_reset(pa_memchunk *c) {
55 assert(c);
56
57 c->memblock = NULL;
58 c->length = c->index = 0;
59 }