]> code.delx.au - pulseaudio/blob - polyp/source-output.c
introduce pa_xmalloc() and friends
[pulseaudio] / polyp / source-output.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 #include <string.h>
29
30 #include "source-output.h"
31 #include "xmalloc.h"
32
33 struct pa_source_output* pa_source_output_new(struct pa_source *s, const char *name, const struct pa_sample_spec *spec) {
34 struct pa_source_output *o;
35 struct pa_resampler *resampler = NULL;
36 int r;
37 assert(s && spec);
38
39 if (!pa_sample_spec_equal(&s->sample_spec, spec))
40 if (!(resampler = pa_resampler_new(&s->sample_spec, spec)))
41 return NULL;
42
43 o = pa_xmalloc(sizeof(struct pa_source_output));
44 o->name = pa_xstrdup(name);
45 o->client = NULL;
46 o->owner = NULL;
47 o->source = s;
48 o->sample_spec = *spec;
49
50 o->push = NULL;
51 o->kill = NULL;
52 o->userdata = NULL;
53 o->resampler = resampler;
54
55 assert(s->core);
56 r = pa_idxset_put(s->core->source_outputs, o, &o->index);
57 assert(r == 0 && o->index != PA_IDXSET_INVALID);
58 r = pa_idxset_put(s->outputs, o, NULL);
59 assert(r == 0);
60
61 return o;
62 }
63
64 void pa_source_output_free(struct pa_source_output* o) {
65 assert(o);
66
67 assert(o->source && o->source->core);
68 pa_idxset_remove_by_data(o->source->core->source_outputs, o, NULL);
69 pa_idxset_remove_by_data(o->source->outputs, o, NULL);
70
71 if (o->resampler)
72 pa_resampler_free(o->resampler);
73
74 pa_xfree(o->name);
75 pa_xfree(o);
76 }
77
78 void pa_source_output_kill(struct pa_source_output*i) {
79 assert(i);
80
81 if (i->kill)
82 i->kill(i);
83 }
84
85 void pa_source_output_push(struct pa_source_output *o, const struct pa_memchunk *chunk) {
86 struct pa_memchunk rchunk;
87 assert(o && chunk && chunk->length && o->push);
88
89 if (!o->resampler) {
90 o->push(o, chunk);
91 return;
92 }
93
94 pa_resampler_run(o->resampler, chunk, &rchunk);
95 if (!rchunk.length)
96 return;
97
98 assert(rchunk.memblock);
99 o->push(o, &rchunk);
100 pa_memblock_unref(rchunk.memblock);
101 }