7 This file is part of polypaudio.
9 polypaudio is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published
11 by the Free Software Foundation; either version 2 of the License,
12 or (at your option) any later version.
14 polypaudio is distributed in the hope that it will be useful, but
15 WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with polypaudio; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
38 char *name, *description;
39 struct pa_module *owner;
41 struct pa_sample_spec sample_spec;
42 struct pa_idxset *outputs;
43 struct pa_sink *monitor_of;
45 void (*notify)(struct pa_source*source);
49 struct pa_source* pa_source_new(struct pa_core *core, const char *name, int fail, const struct pa_sample_spec *spec);
50 void pa_source_free(struct pa_source *s);
52 /* Pass a new memory block to all output streams */
53 void pa_source_post(struct pa_source*s, struct pa_memchunk *b);
55 void pa_source_notify(struct pa_source *s);
57 struct pa_source* pa_source_get_default(struct pa_core *c);
59 void pa_source_set_owner(struct pa_source *s, struct pa_module *m);