]> code.delx.au - pulseaudio/blob - polyp/source-output.h
* fix include file names in installed header files
[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 Lesser 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 Lesser 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_CORKED,
37 PA_SOURCE_OUTPUT_DISCONNECTED
38 };
39
40 struct pa_source_output {
41 int ref;
42 enum pa_source_output_state state;
43
44 uint32_t index;
45 pa_typeid_t typeid;
46
47 char *name;
48 struct pa_module *owner;
49 struct pa_client *client;
50 struct pa_source *source;
51 struct pa_sample_spec sample_spec;
52
53 void (*push)(struct pa_source_output *o, const struct pa_memchunk *chunk);
54 void (*kill)(struct pa_source_output* o);
55 pa_usec_t (*get_latency) (struct pa_source_output *i);
56
57 struct pa_resampler* resampler;
58
59 void *userdata;
60 };
61
62 struct pa_source_output* pa_source_output_new(struct pa_source *s, pa_typeid_t typeid, const char *name, const struct pa_sample_spec *spec, int resample_method);
63 void pa_source_output_unref(struct pa_source_output* o);
64 struct pa_source_output* pa_source_output_ref(struct pa_source_output *o);
65
66 /* To be called by the implementing module only */
67 void pa_source_output_disconnect(struct pa_source_output*o);
68
69 /* External code may request disconnection with this funcion */
70 void pa_source_output_kill(struct pa_source_output*o);
71
72 void pa_source_output_push(struct pa_source_output *o, const struct pa_memchunk *chunk);
73
74 void pa_source_output_set_name(struct pa_source_output *i, const char *name);
75
76 pa_usec_t pa_source_output_get_latency(struct pa_source_output *i);
77
78 void pa_source_output_cork(struct pa_source_output *i, int b);
79
80 enum pa_resample_method pa_source_output_get_resample_method(struct pa_source_output *o);
81
82 #endif