]> code.delx.au - pulseaudio/blob - src/polypcore/memchunk.c
Reorganised the source tree. We now have src/ with a couple of subdirs:
[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 "memchunk.h"
32 #include "xmalloc.h"
33
34 void pa_memchunk_make_writable(pa_memchunk *c, pa_memblock_stat *s, size_t min) {
35 pa_memblock *n;
36 size_t l;
37 assert(c && c->memblock && c->memblock->ref >= 1);
38
39 if (c->memblock->ref == 1 && !c->memblock->read_only && c->memblock->length >= c->index+min)
40 return;
41
42 l = c->length;
43 if (l < min)
44 l = min;
45
46 n = pa_memblock_new(l, s);
47 memcpy(n->data, (uint8_t*) c->memblock->data + c->index, c->length);
48 pa_memblock_unref(c->memblock);
49 c->memblock = n;
50 c->index = 0;
51 }
52
53 void pa_memchunk_reset(pa_memchunk *c) {
54 assert(c);
55
56 c->memblock = NULL;
57 c->length = c->index = 0;
58 }