]> code.delx.au - pulseaudio/blob - src/pulsecore/shmasyncq.h
commit glitch-free work
[pulseaudio] / src / pulsecore / shmasyncq.h
1 #ifndef foopulseshmasyncqhfoo
2 #define foopulseshmasyncqhfoo
3
4 /* $Id$ */
5
6 /***
7 This file is part of PulseAudio.
8
9 Copyright 2004-2006 Lennart Poettering
10
11 PulseAudio is free software; you can redistribute it and/or modify
12 it under the terms of the GNU Lesser General Public License as
13 published by the Free Software Foundation; either version 2.1 of the
14 License, or (at your option) any later version.
15
16 PulseAudio is distributed in the hope that it will be useful, but
17 WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 Lesser General Public License for more details.
20
21 You should have received a copy of the GNU Lesser General Public
22 License along with PulseAudio; if not, write to the Free Software
23 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
24 USA.
25 ***/
26
27 #include <sys/types.h>
28
29 #include <pulse/def.h>
30 #include <pulsecore/macro.h>
31
32 /* Similar to pa_asyncq, but stores data in a shared memory segment */
33
34
35 struct pa_shmasyncq_data {
36 unsigned n_elements;
37 size_t element_size;
38 unsigned read_idx;
39 unsigned write_idx;
40 pa_fdsem_data read_fdsem_data, write_fdsem_data;
41 };
42
43 #define PA_SHMASYNCQ_DEFAULT_N_ELEMENTS 128
44 #define PA_SHMASYNCQ_SIZE(n_elements, element_size) (PA_ALIGN(sizeof(pa_shmasyncq_data)) + (((n_elements) * (PA_ALIGN(sizeof(pa_atomic_t)) + PA_ALIGN(element_size)))))
45 #define PA_SHMASYNCQ_DEFAULT_SIZE(element_size) PA_SHMASYNCQ_SIZE(PA_SHMASYNCQ_DEFAULT_N_ELEMENTS, element_size)
46
47 typedef struct pa_shmasyncq pa_shmasyncq;
48
49 pa_shmasyncq *pa_shmasyncq_new(unsigned n_elements, size_t element_size, void *data, int fd[2]);
50 void pa_shmasyncq_free(pa_shmasyncq* q, pa_free_cb_t free_cb);
51
52 void* pa_shmasyncq_pop_begin(pa_shmasyncq *q, pa_bool_t wait);
53 void pa_shmasyncq_pop_commit(pa_shmasyncq *q);
54
55 int* pa_shmasyncq_push_begin(pa_shmasyncq *q, pa_bool_t wait);
56 void pa_shmasyncq_push_commit(pa_shmasyncq *q);
57
58 int pa_shmasyncq_get_fd(pa_shmasyncq *q);
59 int pa_shmasyncq_before_poll(pa_shmasyncq *a);
60 void pa_shmasyncq_after_poll(pa_shmasyncq *a);
61
62 #endif