2 This file is part of PulseAudio.
4 Copyright 2004-2006 Lennart Poettering
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.1 of the License,
9 or (at your option) any later version.
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.
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
29 #include <pulse/xmalloc.h>
31 #include <pulsecore/sink-input.h>
32 #include <pulsecore/module.h>
33 #include <pulsecore/modargs.h>
34 #include <pulsecore/namereg.h>
35 #include <pulsecore/log.h>
36 #include <pulsecore/core-util.h>
38 #include "module-sine-symdef.h"
40 PA_MODULE_AUTHOR("Lennart Poettering");
41 PA_MODULE_DESCRIPTION("Sine wave generator");
42 PA_MODULE_VERSION(PACKAGE_VERSION
);
43 PA_MODULE_LOAD_ONCE(FALSE
);
45 "sink=<sink to connect to> "
46 "frequency=<frequency in Hz>");
51 pa_sink_input
*sink_input
;
56 static const char* const valid_modargs
[] = {
62 static int sink_input_pop_cb(pa_sink_input
*i
, size_t nbytes
, pa_memchunk
*chunk
) {
65 pa_sink_input_assert_ref(i
);
66 pa_assert_se(u
= i
->userdata
);
70 pa_memblock_ref(chunk
->memblock
);
72 chunk
->index
+= u
->peek_index
;
73 chunk
->length
-= u
->peek_index
;
80 static void sink_input_process_rewind_cb(pa_sink_input
*i
, size_t nbytes
) {
83 pa_sink_input_assert_ref(i
);
84 pa_assert_se(u
= i
->userdata
);
86 nbytes
%= u
->memchunk
.length
;
88 if (u
->peek_index
>= nbytes
)
89 u
->peek_index
-= nbytes
;
91 u
->peek_index
= u
->memchunk
.length
+ u
->peek_index
- nbytes
;
94 static void sink_input_kill_cb(pa_sink_input
*i
) {
97 pa_sink_input_assert_ref(i
);
98 pa_assert_se(u
= i
->userdata
);
100 pa_sink_input_unlink(u
->sink_input
);
101 pa_sink_input_unref(u
->sink_input
);
102 u
->sink_input
= NULL
;
104 pa_module_unload_request(u
->module
, TRUE
);
107 /* Called from IO thread context */
108 static void sink_input_state_change_cb(pa_sink_input
*i
, pa_sink_input_state_t state
) {
111 pa_sink_input_assert_ref(i
);
112 pa_assert_se(u
= i
->userdata
);
114 /* If we are added for the first time, ask for a rewinding so that
115 * we are heard right-away. */
116 if (PA_SINK_INPUT_IS_LINKED(state
) &&
117 i
->thread_info
.state
== PA_SINK_INPUT_INIT
)
118 pa_sink_input_request_rewind(i
, 0, FALSE
, TRUE
, TRUE
);
121 int pa__init(pa_module
*m
) {
122 pa_modargs
*ma
= NULL
;
127 pa_sink_input_new_data data
;
129 if (!(ma
= pa_modargs_new(m
->argument
, valid_modargs
))) {
130 pa_log("Failed to parse module arguments");
134 if (!(sink
= pa_namereg_get(m
->core
, pa_modargs_get_value(ma
, "sink", NULL
), PA_NAMEREG_SINK
))) {
135 pa_log("No such sink.");
139 ss
.format
= PA_SAMPLE_FLOAT32
;
140 ss
.rate
= sink
->sample_spec
.rate
;
144 if (pa_modargs_get_value_u32(ma
, "frequency", &frequency
) < 0 || frequency
< 1 || frequency
> ss
.rate
/2) {
145 pa_log("Invalid frequency specification");
149 m
->userdata
= u
= pa_xnew0(struct userdata
, 1);
152 u
->sink_input
= NULL
;
155 pa_memchunk_sine(&u
->memchunk
, m
->core
->mempool
, ss
.rate
, frequency
);
157 pa_sink_input_new_data_init(&data
);
158 data
.driver
= __FILE__
;
161 pa_proplist_setf(data
.proplist
, PA_PROP_MEDIA_NAME
, "%u Hz Sine", frequency
);
162 pa_proplist_sets(data
.proplist
, PA_PROP_MEDIA_ROLE
, "abstract");
163 pa_proplist_setf(data
.proplist
, "sine.hz", "%u", frequency
);
164 pa_sink_input_new_data_set_sample_spec(&data
, &ss
);
166 pa_sink_input_new(&u
->sink_input
, m
->core
, &data
);
167 pa_sink_input_new_data_done(&data
);
172 u
->sink_input
->pop
= sink_input_pop_cb
;
173 u
->sink_input
->process_rewind
= sink_input_process_rewind_cb
;
174 u
->sink_input
->kill
= sink_input_kill_cb
;
175 u
->sink_input
->state_change
= sink_input_state_change_cb
;
176 u
->sink_input
->userdata
= u
;
178 pa_sink_input_put(u
->sink_input
);
191 void pa__done(pa_module
*m
) {
196 if (!(u
= m
->userdata
))
200 pa_sink_input_unlink(u
->sink_input
);
201 pa_sink_input_unref(u
->sink_input
);
204 if (u
->memchunk
.memblock
)
205 pa_memblock_unref(u
->memchunk
.memblock
);