]> code.delx.au - pulseaudio/blob - src/pulsecore/play-memblockq.c
free the memblockq if we decide not to play it
[pulseaudio] / src / pulsecore / play-memblockq.c
1 /* $Id$ */
2
3 /***
4 This file is part of PulseAudio.
5
6 PulseAudio is free software; you can redistribute it and/or modify
7 it under the terms of the GNU Lesser 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 PulseAudio 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 Lesser General Public License
17 along with PulseAudio; 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 <pulse/xmalloc.h>
32
33 #include <pulsecore/sink-input.h>
34 #include <pulsecore/gccmacro.h>
35
36 #include "play-memblockq.h"
37
38 static void sink_input_kill(pa_sink_input *i) {
39 pa_memblockq *q;
40 assert(i);
41 assert(i->userdata);
42
43 q = i->userdata;
44
45 pa_sink_input_disconnect(i);
46 pa_sink_input_unref(i);
47
48 pa_memblockq_free(q);
49 }
50
51 static int sink_input_peek(pa_sink_input *i, pa_memchunk *chunk) {
52 pa_memblockq *q;
53 assert(i);
54 assert(chunk);
55 assert(i->userdata);
56
57 q = i->userdata;
58
59 return pa_memblockq_peek(q, chunk);
60 }
61
62 static void si_kill(PA_GCC_UNUSED pa_mainloop_api *m, void *i) {
63 sink_input_kill(i);
64 }
65
66 static void sink_input_drop(pa_sink_input *i, const pa_memchunk*chunk, size_t length) {
67 pa_memblockq *q;
68
69 assert(i);
70 assert(length > 0);
71 assert( i->userdata);
72
73 q = i->userdata;
74
75 pa_memblockq_drop(q, chunk, length);
76
77 if (pa_memblockq_get_length(q) <= 0)
78 pa_mainloop_api_once(i->sink->core->mainloop, si_kill, i);
79 }
80
81 int pa_play_memblockq(
82 pa_sink *sink,
83 const char *name,
84 const pa_sample_spec *ss,
85 const pa_channel_map *map,
86 pa_memblockq *q,
87 pa_cvolume *cvolume) {
88
89 pa_sink_input *si;
90
91 assert(sink);
92 assert(ss);
93 assert(q);
94
95 if (pa_memblockq_get_length(q) <= 0) {
96 pa_memblockq_free(q);
97 return 0;
98 }
99
100 if (cvolume && pa_cvolume_is_muted(cvolume)) {
101 pa_memblockq_free(q);
102 return 0;
103 }
104
105 if (!(si = pa_sink_input_new(sink, name, __FILE__, ss, map, cvolume, 0, PA_RESAMPLER_INVALID)))
106 return -1;
107
108 si->peek = sink_input_peek;
109 si->drop = sink_input_drop;
110 si->kill = sink_input_kill;
111
112 si->userdata = q;
113
114 pa_sink_notify(sink);
115
116 return 0;
117 }