2004-07-16 19:56:36 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
|
|
/***
|
2006-06-19 21:53:48 +00:00
|
|
|
This file is part of PulseAudio.
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-02-13 15:35:19 +00:00
|
|
|
Copyright 2004-2006 Lennart Poettering
|
|
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
PulseAudio is free software; you can redistribute it and/or modify
|
2004-11-14 14:58:54 +00:00
|
|
|
it under the terms of the GNU Lesser General Public License as published
|
2004-07-16 19:56:36 +00:00
|
|
|
by the Free Software Foundation; either version 2 of the License,
|
|
|
|
|
or (at your option) any later version.
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
PulseAudio is distributed in the hope that it will be useful, but
|
2004-07-16 19:56:36 +00:00
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
General Public License for more details.
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-11-14 14:58:54 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
2006-06-19 21:53:48 +00:00
|
|
|
along with PulseAudio; if not, write to the Free Software
|
2004-07-16 19:56:36 +00:00
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
|
USA.
|
|
|
|
|
***/
|
|
|
|
|
|
2004-07-16 19:16:42 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
#include <config.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2004-09-01 15:00:44 +00:00
|
|
|
#include <stdio.h>
|
2004-06-08 23:54:24 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulse/utf8.h>
|
|
|
|
|
#include <pulse/xmalloc.h>
|
2006-05-17 16:34:18 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulsecore/core-subscribe.h>
|
|
|
|
|
#include <pulsecore/log.h>
|
2006-08-13 19:55:17 +00:00
|
|
|
#include <pulsecore/namereg.h>
|
2006-02-17 12:10:58 +00:00
|
|
|
|
2004-07-16 18:58:23 +00:00
|
|
|
#include "source-output.h"
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2006-08-13 19:55:17 +00:00
|
|
|
pa_source_output_new_data* pa_source_output_new_data_init(pa_source_output_new_data *data) {
|
2007-06-11 12:08:37 +00:00
|
|
|
pa_assert(data);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-08-13 19:55:17 +00:00
|
|
|
memset(data, 0, sizeof(*data));
|
|
|
|
|
data->resample_method = PA_RESAMPLER_INVALID;
|
|
|
|
|
return data;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void pa_source_output_new_data_set_channel_map(pa_source_output_new_data *data, const pa_channel_map *map) {
|
2007-06-11 12:08:37 +00:00
|
|
|
pa_assert(data);
|
2006-08-13 19:55:17 +00:00
|
|
|
|
|
|
|
|
if ((data->channel_map_is_set = !!map))
|
|
|
|
|
data->channel_map = *map;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void pa_source_output_new_data_set_sample_spec(pa_source_output_new_data *data, const pa_sample_spec *spec) {
|
2007-06-11 12:08:37 +00:00
|
|
|
pa_assert(data);
|
2006-08-13 19:55:17 +00:00
|
|
|
|
|
|
|
|
if ((data->sample_spec_is_set = !!spec))
|
|
|
|
|
data->sample_spec = *spec;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
pa_source_output* pa_source_output_new(
|
2006-08-13 19:55:17 +00:00
|
|
|
pa_core *core,
|
|
|
|
|
pa_source_output_new_data *data,
|
|
|
|
|
pa_source_output_flags_t flags) {
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_source_output *o;
|
|
|
|
|
pa_resampler *resampler = NULL;
|
2006-08-13 19:55:17 +00:00
|
|
|
char st[PA_SAMPLE_SPEC_SNPRINT_MAX];
|
|
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
pa_assert(core);
|
|
|
|
|
pa_assert(data);
|
2006-08-13 19:55:17 +00:00
|
|
|
|
|
|
|
|
if (!(flags & PA_SOURCE_OUTPUT_NO_HOOKS))
|
|
|
|
|
if (pa_hook_fire(&core->hook_source_output_new, data) < 0)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
pa_return_null_if_fail(!data->driver || pa_utf8_valid(data->driver));
|
|
|
|
|
pa_return_null_if_fail(!data->name || pa_utf8_valid(data->name));
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2006-08-13 19:55:17 +00:00
|
|
|
if (!data->source)
|
|
|
|
|
data->source = pa_namereg_get(core, NULL, PA_NAMEREG_SOURCE, 1);
|
2006-05-16 23:47:38 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
pa_return_null_if_fail(data->source);
|
|
|
|
|
pa_return_null_if_fail(pa_source_get_state(data->source) != PA_SOURCE_DISCONNECTED);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-08-13 19:55:17 +00:00
|
|
|
if (!data->sample_spec_is_set)
|
|
|
|
|
data->sample_spec = data->source->sample_spec;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
pa_return_null_if_fail(pa_sample_spec_valid(&data->sample_spec));
|
2006-05-16 23:47:38 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
if (!data->channel_map_is_set) {
|
|
|
|
|
if (data->source->channel_map.channels == data->sample_spec.channels)
|
|
|
|
|
data->channel_map = data->source->channel_map;
|
|
|
|
|
else
|
|
|
|
|
pa_channel_map_init_auto(&data->channel_map, data->sample_spec.channels, PA_CHANNEL_MAP_DEFAULT);
|
|
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
pa_return_null_if_fail(pa_channel_map_valid(&data->channel_map));
|
|
|
|
|
pa_return_null_if_fail(data->channel_map.channels == data->sample_spec.channels);
|
2006-05-16 23:47:38 +00:00
|
|
|
|
2006-08-13 19:55:17 +00:00
|
|
|
if (data->resample_method == PA_RESAMPLER_INVALID)
|
|
|
|
|
data->resample_method = core->resample_method;
|
|
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
pa_return_null_if_fail(data->resample_method < PA_RESAMPLER_MAX);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-08-13 19:55:17 +00:00
|
|
|
if (pa_idxset_size(data->source->outputs) >= PA_MAX_OUTPUTS_PER_SOURCE) {
|
2006-08-18 21:38:40 +00:00
|
|
|
pa_log("Failed to create source output: too many outputs per source.");
|
2004-09-01 15:00:44 +00:00
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
if ((flags & PA_SOURCE_OUTPUT_VARIABLE_RATE) ||
|
|
|
|
|
!pa_sample_spec_equal(&data->sample_spec, &data->source->sample_spec) ||
|
|
|
|
|
!pa_channel_map_equal(&data->channel_map, &data->source->channel_map)) {
|
|
|
|
|
|
2006-08-13 19:55:17 +00:00
|
|
|
if (!(resampler = pa_resampler_new(
|
2006-08-18 19:55:18 +00:00
|
|
|
core->mempool,
|
2006-08-13 19:55:17 +00:00
|
|
|
&data->source->sample_spec, &data->source->channel_map,
|
|
|
|
|
&data->sample_spec, &data->channel_map,
|
|
|
|
|
data->resample_method))) {
|
2006-08-18 21:38:40 +00:00
|
|
|
pa_log_warn("Unsupported resampling operation.");
|
2004-07-03 00:19:17 +00:00
|
|
|
return NULL;
|
2006-08-03 22:30:45 +00:00
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
data->resample_method = pa_resampler_get_method(resampler);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
o = pa_source_output_new(pa_source_output);
|
|
|
|
|
|
|
|
|
|
o->parent.parent.free = source_output_free;
|
|
|
|
|
o->parent.process_msg = pa_source_output_process_msg;
|
|
|
|
|
|
|
|
|
|
o->core = core;
|
|
|
|
|
pa_atomic_load(&o->state, PA_SOURCE_OUTPUT_RUNNING);
|
|
|
|
|
o->flags = flags;
|
2006-08-13 19:55:17 +00:00
|
|
|
o->name = pa_xstrdup(data->name);
|
|
|
|
|
o->driver = pa_xstrdup(data->driver);
|
|
|
|
|
o->module = data->module;
|
|
|
|
|
o->source = data->source;
|
|
|
|
|
o->client = data->client;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
o->resample_method = data->resample_method;
|
2006-08-13 19:55:17 +00:00
|
|
|
o->sample_spec = data->sample_spec;
|
|
|
|
|
o->channel_map = data->channel_map;
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
o->process_msg = NULL;
|
2004-06-15 17:05:03 +00:00
|
|
|
o->push = NULL;
|
|
|
|
|
o->kill = NULL;
|
2004-09-16 00:05:56 +00:00
|
|
|
o->get_latency = NULL;
|
2006-01-27 16:25:31 +00:00
|
|
|
o->userdata = NULL;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
o->thread_info.resampler = resampler;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
pa_assert_se(pa_idxset_put(core->source_outputs, o, &o->index) == 0);
|
|
|
|
|
pa_assert_se( pa_idxset_put(o->source->outputs, o, NULL) == 0);
|
2004-08-11 00:11:12 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
pa_log_info("Created output %u \"%s\" on %s with sample spec %s",
|
2006-08-13 19:55:17 +00:00
|
|
|
o->index,
|
|
|
|
|
o->name,
|
|
|
|
|
o->source->name,
|
|
|
|
|
pa_sample_spec_snprint(st, sizeof(st), &o->sample_spec));
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
/* Don't forget to call pa_source_output_put! */
|
2007-01-04 13:43:45 +00:00
|
|
|
|
|
|
|
|
return o;
|
2004-06-08 23:54:24 +00:00
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
void pa_source_output_disconnect(pa_source_output*o) {
|
2007-06-11 12:08:37 +00:00
|
|
|
pa_assert(o);
|
|
|
|
|
pa_return_if_fail(pa_source_output_get_state(i) != PA_SOURCE_OUTPUT_DISCONNECTED);
|
|
|
|
|
pa_assert(o->source);
|
|
|
|
|
pa_assert(o->source->core);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
pa_asyncmsgq_send(i->sink->asyncmsgq, i->sink, PA_SOURCE_MESSAGE_REMOVE_OUTPUT, o, NULL);
|
|
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
pa_idxset_remove_by_data(o->source->core->source_outputs, o, NULL);
|
|
|
|
|
pa_idxset_remove_by_data(o->source->outputs, o, NULL);
|
2004-07-03 00:19:17 +00:00
|
|
|
|
2004-09-14 20:53:25 +00:00
|
|
|
pa_subscription_post(o->source->core, PA_SUBSCRIPTION_EVENT_SOURCE_OUTPUT|PA_SUBSCRIPTION_EVENT_REMOVE, o->index);
|
|
|
|
|
o->source = NULL;
|
|
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
o->process_msg = NULL;
|
2004-09-14 20:53:25 +00:00
|
|
|
o->push = NULL;
|
|
|
|
|
o->kill = NULL;
|
2006-01-27 16:25:31 +00:00
|
|
|
o->get_latency = NULL;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
pa_atomic_load(&i->state, PA_SOURCE_OUTPUT_DISCONNECTED);
|
2004-09-14 20:53:25 +00:00
|
|
|
}
|
|
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
static void source_output_free(pa_msgobject* mo) {
|
|
|
|
|
pa_source_output *o = PA_SOURCE_OUTPUT(mo);
|
|
|
|
|
|
|
|
|
|
pa_assert(pa_source_output_refcnt(o) == 0);
|
2004-09-14 20:53:25 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
pa_source_output_disconnect(o);
|
2004-09-14 20:53:25 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
pa_log_info("Freeing output %u \"%s\"", o->index, o->name);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
if (o->thread_info.resampler)
|
|
|
|
|
pa_resampler_free(o->thread_info.resampler);
|
2004-08-11 00:11:12 +00:00
|
|
|
|
2004-08-04 16:39:30 +00:00
|
|
|
pa_xfree(o->name);
|
2006-01-27 16:25:31 +00:00
|
|
|
pa_xfree(o->driver);
|
2004-08-04 16:39:30 +00:00
|
|
|
pa_xfree(o);
|
2004-06-08 23:54:24 +00:00
|
|
|
}
|
2004-06-14 20:30:50 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
void pa_source_output_put(pa_source_output *o) {
|
|
|
|
|
pa_source_output_assert_ref(o);
|
|
|
|
|
|
|
|
|
|
pa_asyncmsgq_post(o->source->asyncmsgq, o->source, PA_SOURCE_MESSAGE_ADD_OUTPUT, o, NULL, pa_source_unref, pa_source_output_unref);
|
|
|
|
|
pa_source_update_status(o->source);
|
2004-09-14 20:53:25 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
pa_subscription_post(core, PA_SUBSCRIPTION_EVENT_SOURCE_OUTPUT|PA_SUBSCRIPTION_EVENT_NEW, o->index);
|
2004-09-14 20:53:25 +00:00
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
void pa_source_output_kill(pa_source_output*o) {
|
2007-06-11 12:08:37 +00:00
|
|
|
pa_source_output_assert_ref(o);
|
2004-09-14 20:53:25 +00:00
|
|
|
|
|
|
|
|
if (o->kill)
|
|
|
|
|
o->kill(o);
|
2004-06-14 20:30:50 +00:00
|
|
|
}
|
2004-06-18 17:12:50 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
pa_usec_t pa_source_output_get_latency(pa_source_output *o) {
|
|
|
|
|
pa_usec_t r = 0;
|
|
|
|
|
|
|
|
|
|
pa_source_output_assert_ref(o);
|
|
|
|
|
|
|
|
|
|
if (pa_asyncmsgq_send(o->source->asyncmsgq, i->source, PA_SOURCE_OUTPUT_MESSAGE_GET_LATENCY, &r, NULL) < 0)
|
|
|
|
|
r = 0;
|
|
|
|
|
|
|
|
|
|
if (o->get_latency)
|
|
|
|
|
r += o->get_latency(o);
|
|
|
|
|
|
|
|
|
|
return r;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
void pa_source_output_push(pa_source_output *o, const pa_memchunk *chunk) {
|
|
|
|
|
pa_memchunk rchunk;
|
2007-06-11 12:08:37 +00:00
|
|
|
pa_source_output_state_t state;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
pa_source_output_assert_ref(o);
|
|
|
|
|
pa_assert(chunk);
|
|
|
|
|
pa_assert(chunk->length);
|
2004-07-03 00:19:17 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
state = pa_source_output_get_state(o);
|
|
|
|
|
|
|
|
|
|
if (!o->push || state == PA_SOURCE_OUTPUT_DISCONNECTED || state == PA_SOURCE_OUTPUT_CORKED)
|
2004-09-26 17:02:26 +00:00
|
|
|
return;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
pa_assert(state = PA_SOURCE_OUTPUT_RUNNING);
|
|
|
|
|
|
2004-07-03 00:19:17 +00:00
|
|
|
if (!o->resampler) {
|
|
|
|
|
o->push(o, chunk);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
pa_resampler_run(o->resampler, chunk, &rchunk);
|
2004-07-03 00:19:17 +00:00
|
|
|
if (!rchunk.length)
|
|
|
|
|
return;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
pa_assert(rchunk.memblock);
|
2004-07-03 00:19:17 +00:00
|
|
|
o->push(o, &rchunk);
|
2004-07-03 23:35:12 +00:00
|
|
|
pa_memblock_unref(rchunk.memblock);
|
2004-07-03 00:19:17 +00:00
|
|
|
}
|
2004-09-14 20:53:25 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
void pa_source_output_cork(pa_source_output *o, int b) {
|
|
|
|
|
int n;
|
|
|
|
|
pa_source_output_state_t state;
|
2006-08-12 02:19:36 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
pa_source_output_assert_ref(o);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
state = pa_source_output_get_state(o);
|
|
|
|
|
pa_assert(state != PA_SOURCE_OUTPUT_DISCONNECTED);
|
2004-09-15 19:16:57 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
if (b && state != PA_SOURCE_OUTPUT_CORKED)
|
|
|
|
|
pa_atomic_store(o->state, PA_SOURCE_OUTPUT_CORKED);
|
|
|
|
|
else if (!b && state == PA_SOURCE_OUTPUT_CORKED)
|
|
|
|
|
pa_atomic_cmpxchg(o->state, state, PA_SOURCE_OUTPUT_RUNNING);
|
2004-09-14 20:53:25 +00:00
|
|
|
}
|
2004-09-16 00:05:56 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
int pa_source_output_set_rate(pa_source_output *o, uint32_t rate) {
|
|
|
|
|
pa_source_output_assert_ref(o);
|
|
|
|
|
pa_return_val_if_fail(o->thread_info.resampler, -1);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
if (i->sample_spec.rate == rate)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
i->sample_spec.rate = rate;
|
2004-09-16 00:05:56 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
pa_asyncmsgq_post(s->asyncmsgq, pa_source_output_ref(i), PA_SOURCE_OUTPUT_MESSAGE_SET_RATE, PA_UINT_TO_PTR(rate), NULL, pa_source_output_unref, NULL);
|
|
|
|
|
|
|
|
|
|
pa_subscription_post(o->source->core, PA_SUBSCRIPTION_EVENT_SOURCE_OUTPUT!|PA_SUBSCRIPTION_EVENT_CHANGE, i->index);
|
2004-09-16 00:05:56 +00:00
|
|
|
return 0;
|
|
|
|
|
}
|
2004-09-26 17:02:26 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
void pa_source_output_set_name(pa_source_output *o, const char *name) {
|
|
|
|
|
pa_source_output_assert_ref(o);
|
2004-09-26 17:02:26 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
if (!o->name && !name)
|
2004-09-26 17:02:26 +00:00
|
|
|
return;
|
2006-08-03 22:30:45 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
if (o->name && name && !strcmp(o->name, name))
|
|
|
|
|
return;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
pa_xfree(o->name);
|
|
|
|
|
o->name = pa_xstrdup(name);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
pa_subscription_post(o->source->core, PA_SUBSCRIPTION_EVENT_SOURCE_OUTPUT|PA_SUBSCRIPTION_EVENT_CHANGE, o->index);
|
2004-09-26 17:02:26 +00:00
|
|
|
}
|
2004-11-20 16:23:53 +00:00
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
pa_resample_method_t pa_source_output_get_resample_method(pa_source_output *o) {
|
2007-06-11 12:08:37 +00:00
|
|
|
pa_source_output_assert_ref(o);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
return o->resample_method;
|
2004-11-20 16:23:53 +00:00
|
|
|
}
|
2006-08-03 22:30:45 +00:00
|
|
|
|
|
|
|
|
int pa_source_output_move_to(pa_source_output *o, pa_source *dest) {
|
|
|
|
|
pa_source *origin;
|
2006-08-19 23:04:04 +00:00
|
|
|
pa_resampler *new_resampler = NULL;
|
2006-08-03 22:30:45 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
pa_source_output_assert_ref(o);
|
|
|
|
|
pa_source_assert_ref(dest);
|
2006-08-03 22:30:45 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
/* origin = o->source; */
|
2006-08-03 22:30:45 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
/* if (dest == origin) */
|
|
|
|
|
/* return 0; */
|
2006-08-03 22:30:45 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
/* if (pa_idxset_size(dest->outputs) >= PA_MAX_OUTPUTS_PER_SOURCE) { */
|
|
|
|
|
/* pa_log_warn("Failed to move source output: too many outputs per source."); */
|
|
|
|
|
/* return -1; */
|
|
|
|
|
/* } */
|
2006-08-03 22:30:45 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
/* if (o->resampler && */
|
|
|
|
|
/* pa_sample_spec_equal(&origin->sample_spec, &dest->sample_spec) && */
|
|
|
|
|
/* pa_channel_map_equal(&origin->channel_map, &dest->channel_map)) */
|
2006-08-03 22:30:45 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
/* /\* Try to reuse the old resampler if possible *\/ */
|
|
|
|
|
/* new_resampler = o->resampler; */
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
/* else if (!pa_sample_spec_equal(&o->sample_spec, &dest->sample_spec) || */
|
|
|
|
|
/* !pa_channel_map_equal(&o->channel_map, &dest->channel_map)) { */
|
2006-08-03 22:30:45 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
/* /\* Okey, we need a new resampler for the new sink *\/ */
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
/* if (!(new_resampler = pa_resampler_new( */
|
|
|
|
|
/* dest->core->mempool, */
|
|
|
|
|
/* &dest->sample_spec, &dest->channel_map, */
|
|
|
|
|
/* &o->sample_spec, &o->channel_map, */
|
|
|
|
|
/* o->resample_method))) { */
|
|
|
|
|
/* pa_log_warn("Unsupported resampling operation."); */
|
|
|
|
|
/* return -1; */
|
|
|
|
|
/* } */
|
|
|
|
|
/* } */
|
2006-08-03 22:30:45 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
/* /\* Okey, let's move it *\/ */
|
|
|
|
|
/* pa_idxset_remove_by_data(origin->outputs, o, NULL); */
|
|
|
|
|
/* pa_idxset_put(dest->outputs, o, NULL); */
|
|
|
|
|
/* o->source = dest; */
|
2006-08-03 22:30:45 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
/* /\* Replace resampler *\/ */
|
|
|
|
|
/* if (new_resampler != o->resampler) { */
|
|
|
|
|
/* if (o->resampler) */
|
|
|
|
|
/* pa_resampler_free(o->resampler); */
|
|
|
|
|
/* o->resampler = new_resampler; */
|
|
|
|
|
/* } */
|
2006-08-03 22:30:45 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
/* /\* Notify everyone *\/ */
|
|
|
|
|
/* pa_subscription_post(o->source->core, PA_SUBSCRIPTION_EVENT_SOURCE_OUTPUT|PA_SUBSCRIPTION_EVENT_CHANGE, o->index); */
|
|
|
|
|
/* pa_source_notify(o->source); */
|
2006-08-03 22:30:45 +00:00
|
|
|
|
2007-06-11 12:08:37 +00:00
|
|
|
/* return 0; */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int pa_source_output_process_msg(pa_msgobject *mo, int code, void *userdata, pa_memchunk* chunk) {
|
|
|
|
|
pa_source_output *o = PA_SOURCE_OUTPUT(o);
|
|
|
|
|
|
|
|
|
|
pa_source_output_assert_ref(i);
|
|
|
|
|
|
|
|
|
|
switch (code) {
|
|
|
|
|
|
|
|
|
|
case PA_SOURCE_OUTPUT_MESSAGE_SET_RATE: {
|
|
|
|
|
|
|
|
|
|
i->thread_info.sample_spec.rate = PA_PTR_TO_UINT(userdata);
|
|
|
|
|
pa_resampler_set_output_rate(i->resampler, PA_PTR_TO_UINT(userdata));
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return -1;
|
2006-08-03 22:30:45 +00:00
|
|
|
}
|