]> code.delx.au - pulseaudio/blob - polyp/packet.c
e94df057c4b06f3c8cfc1c76ad82b58098a698b7
[pulseaudio] / polyp / packet.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 General Public License as published
8 by the Free Software Foundation; either version 2 of the License,
9 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 General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 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 <assert.h>
27 #include <stdlib.h>
28
29 #include "packet.h"
30
31 struct pa_packet* pa_packet_new(size_t length) {
32 struct pa_packet *p;
33 assert(length);
34 p = malloc(sizeof(struct pa_packet)+length);
35 assert(p);
36
37 p->ref = 1;
38 p->length = length;
39 p->data = (uint8_t*) (p+1);
40 p->type = PA_PACKET_APPENDED;
41 return p;
42 }
43
44 struct pa_packet* pa_packet_new_dynamic(uint8_t* data, size_t length) {
45 struct pa_packet *p;
46 assert(data && length);
47 p = malloc(sizeof(struct pa_packet));
48 assert(p);
49
50 p->ref = 1;
51 p->length = length;
52 p->data = data;
53 p->type = PA_PACKET_DYNAMIC;
54 return p;
55 }
56
57 struct pa_packet* pa_packet_ref(struct pa_packet *p) {
58 assert(p && p->ref >= 1);
59 p->ref++;
60 return p;
61 }
62
63 void pa_packet_unref(struct pa_packet *p) {
64 assert(p && p->ref >= 1);
65 p->ref--;
66
67 if (p->ref == 0) {
68 if (p->type == PA_PACKET_DYNAMIC)
69 free(p->data);
70 free(p);
71 }
72 }