4 This file is part of PulseAudio.
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 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
31 #include <pulse/utf8.h>
32 #include <pulse/xmalloc.h>
34 #include <pulsecore/source-output.h>
35 #include <pulsecore/namereg.h>
36 #include <pulsecore/core-subscribe.h>
37 #include <pulsecore/log.h>
38 #include <pulsecore/sample-util.h>
42 #define CHECK_VALIDITY_RETURN_NULL(condition) \
48 pa_source
* pa_source_new(
53 const pa_sample_spec
*spec
,
54 const pa_channel_map
*map
) {
65 CHECK_VALIDITY_RETURN_NULL(pa_sample_spec_valid(spec
));
68 map
= pa_channel_map_init_auto(&tmap
, spec
->channels
, PA_CHANNEL_MAP_DEFAULT
);
70 CHECK_VALIDITY_RETURN_NULL(map
&& pa_channel_map_valid(map
));
71 CHECK_VALIDITY_RETURN_NULL(map
->channels
== spec
->channels
);
72 CHECK_VALIDITY_RETURN_NULL(!driver
|| pa_utf8_valid(driver
));
73 CHECK_VALIDITY_RETURN_NULL(pa_utf8_valid(name
) && *name
);
75 s
= pa_xnew(pa_source
, 1);
77 if (!(name
= pa_namereg_register(core
, name
, PA_NAMEREG_SOURCE
, s
, fail
))) {
84 s
->state
= PA_SOURCE_RUNNING
;
85 s
->name
= pa_xstrdup(name
);
86 s
->description
= NULL
;
87 s
->driver
= pa_xstrdup(driver
);
90 s
->sample_spec
= *spec
;
91 s
->channel_map
= *map
;
93 s
->outputs
= pa_idxset_new(NULL
, NULL
);
96 pa_cvolume_reset(&s
->sw_volume
, spec
->channels
);
97 pa_cvolume_reset(&s
->hw_volume
, spec
->channels
);
101 s
->get_latency
= NULL
;
103 s
->set_hw_volume
= NULL
;
104 s
->get_hw_volume
= NULL
;
105 s
->set_hw_mute
= NULL
;
106 s
->get_hw_mute
= NULL
;
109 r
= pa_idxset_put(core
->sources
, s
, &s
->index
);
110 assert(s
->index
!= PA_IDXSET_INVALID
&& r
>= 0);
112 pa_sample_spec_snprint(st
, sizeof(st
), spec
);
113 pa_log_info(__FILE__
": created %u \"%s\" with sample spec \"%s\"", s
->index
, s
->name
, st
);
115 pa_subscription_post(core
, PA_SUBSCRIPTION_EVENT_SOURCE
| PA_SUBSCRIPTION_EVENT_NEW
, s
->index
);
120 void pa_source_disconnect(pa_source
*s
) {
121 pa_source_output
*o
, *j
= NULL
;
124 assert(s
->state
== PA_SOURCE_RUNNING
);
126 pa_namereg_unregister(s
->core
, s
->name
);
128 while ((o
= pa_idxset_first(s
->outputs
, NULL
))) {
130 pa_source_output_kill(o
);
134 pa_idxset_remove_by_data(s
->core
->sources
, s
, NULL
);
136 s
->get_latency
= NULL
;
138 s
->get_hw_volume
= NULL
;
139 s
->set_hw_volume
= NULL
;
140 s
->set_hw_mute
= NULL
;
141 s
->get_hw_mute
= NULL
;
143 s
->state
= PA_SOURCE_DISCONNECTED
;
144 pa_subscription_post(s
->core
, PA_SUBSCRIPTION_EVENT_SOURCE
| PA_SUBSCRIPTION_EVENT_REMOVE
, s
->index
);
147 static void source_free(pa_source
*s
) {
151 if (s
->state
!= PA_SOURCE_DISCONNECTED
)
152 pa_source_disconnect(s
);
154 pa_log_info(__FILE__
": freed %u \"%s\"", s
->index
, s
->name
);
156 pa_idxset_free(s
->outputs
, NULL
, NULL
);
159 pa_xfree(s
->description
);
164 void pa_source_unref(pa_source
*s
) {
172 pa_source
* pa_source_ref(pa_source
*s
) {
180 void pa_source_notify(pa_source
*s
) {
188 static int do_post(void *p
, PA_GCC_UNUSED
uint32_t idx
, PA_GCC_UNUSED
int *del
, void*userdata
) {
189 pa_source_output
*o
= p
;
190 const pa_memchunk
*chunk
= userdata
;
195 pa_source_output_push(o
, chunk
);
199 void pa_source_post(pa_source
*s
, const pa_memchunk
*chunk
) {
206 if (s
->sw_muted
|| !pa_cvolume_is_norm(&s
->sw_volume
)) {
207 pa_memchunk vchunk
= *chunk
;
209 pa_memblock_ref(vchunk
.memblock
);
210 pa_memchunk_make_writable(&vchunk
, s
->core
->memblock_stat
, 0);
212 pa_silence_memchunk(&vchunk
, &s
->sample_spec
);
214 pa_volume_memchunk(&vchunk
, &s
->sample_spec
, &s
->sw_volume
);
215 pa_idxset_foreach(s
->outputs
, do_post
, &vchunk
);
216 pa_memblock_unref(vchunk
.memblock
);
218 pa_idxset_foreach(s
->outputs
, do_post
, (void*) chunk
);
223 void pa_source_set_owner(pa_source
*s
, pa_module
*m
) {
230 pa_usec_t
pa_source_get_latency(pa_source
*s
) {
237 return s
->get_latency(s
);
240 void pa_source_set_volume(pa_source
*s
, pa_mixer_t m
, const pa_cvolume
*volume
) {
247 if (m
== PA_MIXER_HARDWARE
&& s
->set_hw_volume
)
252 if (pa_cvolume_equal(v
, volume
))
257 if (v
== &s
->hw_volume
)
258 if (s
->set_hw_volume(s
) < 0)
259 s
->sw_volume
= *volume
;
261 pa_subscription_post(s
->core
, PA_SUBSCRIPTION_EVENT_SOURCE
|PA_SUBSCRIPTION_EVENT_CHANGE
, s
->index
);
264 const pa_cvolume
*pa_source_get_volume(pa_source
*s
, pa_mixer_t m
) {
268 if (m
== PA_MIXER_HARDWARE
&& s
->set_hw_volume
) {
270 if (s
->get_hw_volume
)
273 return &s
->hw_volume
;
275 return &s
->sw_volume
;
278 void pa_source_set_mute(pa_source
*s
, pa_mixer_t m
, int mute
) {
284 if (m
== PA_MIXER_HARDWARE
&& s
->set_hw_mute
)
294 if (t
== &s
->hw_muted
)
295 if (s
->set_hw_mute(s
) < 0)
296 s
->sw_muted
= !!mute
;
298 pa_subscription_post(s
->core
, PA_SUBSCRIPTION_EVENT_SOURCE
|PA_SUBSCRIPTION_EVENT_CHANGE
, s
->index
);
301 int pa_source_get_mute(pa_source
*s
, pa_mixer_t m
) {
305 if (m
== PA_MIXER_HARDWARE
&& s
->set_hw_mute
) {