]> code.delx.au - pulseaudio/blob - polyp/play-memchunk.c
add sound file streaming
[pulseaudio] / polyp / play-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 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 <stdlib.h>
27 #include <assert.h>
28 #include <stdio.h>
29 #include <string.h>
30
31 #include "play-memchunk.h"
32 #include "sink-input.h"
33 #include "xmalloc.h"
34
35 static void sink_input_kill(struct pa_sink_input *i) {
36 struct pa_memchunk *c;
37 assert(i && i->userdata);
38 c = i->userdata;
39
40 pa_memblock_unref(c->memblock);
41 pa_xfree(c);
42 pa_sink_input_free(i);
43 }
44
45 static int sink_input_peek(struct pa_sink_input *i, struct pa_memchunk *chunk) {
46 struct pa_memchunk *c;
47 assert(i && chunk && i->userdata);
48 c = i->userdata;
49
50 if (c->length <= 0)
51 return -1;
52
53 assert(c->memblock && c->memblock->length);
54 *chunk = *c;
55 pa_memblock_ref(c->memblock);
56
57 return 0;
58 }
59
60 static void si_kill(struct pa_mainloop_api *m, void *i) {
61 sink_input_kill(i);
62 }
63
64 static void sink_input_drop(struct pa_sink_input *i, const struct pa_memchunk*chunk, size_t length) {
65 struct pa_memchunk *c;
66 assert(i && length && i->userdata);
67 c = i->userdata;
68
69 assert(!memcmp(chunk, c, sizeof(chunk)));
70 assert(length <= c->length);
71
72 c->length -= length;
73 c->index += length;
74
75 if (c->length <= 0)
76 pa_mainloop_api_once(i->sink->core->mainloop, si_kill, i);
77 }
78
79 int pa_play_memchunk(struct pa_sink *sink, const char *name, const struct pa_sample_spec *ss, const struct pa_memchunk *chunk, pa_volume_t volume) {
80 struct pa_sink_input *si;
81 struct pa_memchunk *nchunk;
82
83 assert(sink && chunk);
84
85 if (volume <= 0)
86 return 0;
87
88 if (!(si = pa_sink_input_new(sink, name, ss)))
89 return -1;
90
91 si->volume = volume;
92 si->peek = sink_input_peek;
93 si->drop = sink_input_drop;
94 si->kill = sink_input_kill;
95
96 si->userdata = nchunk = pa_xmalloc(sizeof(struct pa_memchunk));
97 *nchunk = *chunk;
98
99 pa_memblock_ref(chunk->memblock);
100
101 pa_sink_notify(sink);
102
103 return 0;
104 }