]> code.delx.au - pulseaudio/blob - polyp/source-output.h
709d65ad970d48dfe23432535775c04d18ad348c
[pulseaudio] / polyp / source-output.h
1 #ifndef foosourceoutputhfoo
2 #define foosourceoutputhfoo
3
4 /* $Id$ */
5
6 /***
7 This file is part of polypaudio.
8
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.
13
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.
18
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
22 USA.
23 ***/
24
25 #include <inttypes.h>
26
27 #include "source.h"
28 #include "sample.h"
29 #include "memblockq.h"
30 #include "resampler.h"
31 #include "module.h"
32 #include "client.h"
33
34 enum pa_source_output_state {
35 PA_SOURCE_OUTPUT_RUNNING,
36 PA_SOURCE_OUTPUT_DISCONNECTED
37 };
38
39 struct pa_source_output {
40 int ref;
41 enum pa_source_output_state state;
42
43 uint32_t index;
44
45 char *name;
46 struct pa_module *owner;
47 struct pa_client *client;
48 struct pa_source *source;
49 struct pa_sample_spec sample_spec;
50
51 void (*push)(struct pa_source_output *o, const struct pa_memchunk *chunk);
52 void (*kill)(struct pa_source_output* o);
53
54 struct pa_resampler* resampler;
55
56 void *userdata;
57 };
58
59 struct pa_source_output* pa_source_output_new(struct pa_source *s, const char *name, const struct pa_sample_spec *spec);
60 void pa_source_output_unref(struct pa_source_output* o);
61 struct pa_source_output* pa_source_output_ref(struct pa_source_output *o);
62
63 /* To be called by the implementing module only */
64 void pa_source_output_disconnect(struct pa_source_output*o);
65
66 /* External code may request disconnection with this funcion */
67 void pa_source_output_kill(struct pa_source_output*o);
68
69 void pa_source_output_push(struct pa_source_output *o, const struct pa_memchunk *chunk);
70
71 void pa_source_output_set_name(struct pa_source_output *i, const char *name);
72
73 #endif