mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-10 13:29:58 -05:00
Merge branch 'passthrough'
This commit is contained in:
commit
26b4bd74aa
49 changed files with 1796 additions and 201 deletions
|
|
@ -35,6 +35,7 @@ typedef enum pa_suspend_cause {
|
|||
PA_SUSPEND_APPLICATION = 2, /* Used by the device reservation logic */
|
||||
PA_SUSPEND_IDLE = 4, /* Used by module-suspend-on-idle */
|
||||
PA_SUSPEND_SESSION = 8, /* Used by module-hal for mark inactive sessions */
|
||||
PA_SUSPEND_PASSTHROUGH = 16, /* Used to suspend monitor sources when the sink is in passthrough mode */
|
||||
PA_SUSPEND_ALL = 0xFFFF /* Magic cause that can be used to resume forcibly */
|
||||
} pa_suspend_cause_t;
|
||||
|
||||
|
|
|
|||
|
|
@ -202,7 +202,7 @@ pa_sink_input* pa_memblockq_sink_input_new(
|
|||
u->memblockq = NULL;
|
||||
|
||||
pa_sink_input_new_data_init(&data);
|
||||
data.sink = sink;
|
||||
pa_sink_input_new_data_set_sink(&data, sink, FALSE);
|
||||
data.driver = __FILE__;
|
||||
pa_sink_input_new_data_set_sample_spec(&data, ss);
|
||||
pa_sink_input_new_data_set_channel_map(&data, map);
|
||||
|
|
|
|||
|
|
@ -426,7 +426,7 @@ static int esd_proto_stream_play(connection *c, esd_proto_t request, const void
|
|||
sdata.driver = __FILE__;
|
||||
sdata.module = c->options->module;
|
||||
sdata.client = c->client;
|
||||
sdata.sink = sink;
|
||||
pa_sink_input_new_data_set_sink(&sdata, sink, FALSE);
|
||||
pa_sink_input_new_data_set_sample_spec(&sdata, &ss);
|
||||
|
||||
pa_sink_input_new(&c->sink_input, c->protocol->core, &sdata);
|
||||
|
|
|
|||
|
|
@ -35,6 +35,7 @@
|
|||
#include <pulse/utf8.h>
|
||||
#include <pulse/util.h>
|
||||
#include <pulse/xmalloc.h>
|
||||
#include <pulse/internal.h>
|
||||
|
||||
#include <pulsecore/native-common.h>
|
||||
#include <pulsecore/packet.h>
|
||||
|
|
@ -1014,6 +1015,7 @@ static playback_stream* playback_stream_new(
|
|||
pa_sink *sink,
|
||||
pa_sample_spec *ss,
|
||||
pa_channel_map *map,
|
||||
pa_idxset *formats,
|
||||
pa_buffer_attr *a,
|
||||
pa_cvolume *volume,
|
||||
pa_bool_t muted,
|
||||
|
|
@ -1067,12 +1069,14 @@ static playback_stream* playback_stream_new(
|
|||
data.driver = __FILE__;
|
||||
data.module = c->options->module;
|
||||
data.client = c->client;
|
||||
if (sink) {
|
||||
data.sink = sink;
|
||||
data.save_sink = TRUE;
|
||||
}
|
||||
pa_sink_input_new_data_set_sample_spec(&data, ss);
|
||||
pa_sink_input_new_data_set_channel_map(&data, map);
|
||||
if (sink)
|
||||
pa_sink_input_new_data_set_sink(&data, sink, TRUE);
|
||||
if (pa_sample_spec_valid(ss))
|
||||
pa_sink_input_new_data_set_sample_spec(&data, ss);
|
||||
if (pa_channel_map_valid(map))
|
||||
pa_sink_input_new_data_set_channel_map(&data, map);
|
||||
if (formats)
|
||||
pa_sink_input_new_data_set_formats(&data, formats);
|
||||
if (volume) {
|
||||
pa_sink_input_new_data_set_volume(&data, volume);
|
||||
data.volume_is_absolute = !relative_volume;
|
||||
|
|
@ -1876,9 +1880,13 @@ static void command_create_playback_stream(pa_pdispatch *pd, uint32_t command, u
|
|||
passthrough = FALSE;
|
||||
|
||||
pa_sink_input_flags_t flags = 0;
|
||||
pa_proplist *p;
|
||||
pa_proplist *p = NULL;
|
||||
pa_bool_t volume_set = TRUE;
|
||||
int ret = PA_ERR_INVALID;
|
||||
uint8_t n_formats = 0;
|
||||
pa_format_info *format;
|
||||
pa_idxset *formats = NULL;
|
||||
uint32_t i;
|
||||
|
||||
pa_native_connection_assert_ref(c);
|
||||
pa_assert(t);
|
||||
|
|
@ -1901,17 +1909,14 @@ static void command_create_playback_stream(pa_pdispatch *pd, uint32_t command, u
|
|||
PA_TAG_INVALID) < 0) {
|
||||
|
||||
protocol_error(c);
|
||||
return;
|
||||
goto error;
|
||||
}
|
||||
|
||||
CHECK_VALIDITY(c->pstream, c->authorized, tag, PA_ERR_ACCESS);
|
||||
CHECK_VALIDITY(c->pstream, !sink_name || pa_namereg_is_valid_name_or_wildcard(sink_name, PA_NAMEREG_SINK), tag, PA_ERR_INVALID);
|
||||
CHECK_VALIDITY(c->pstream, sink_index == PA_INVALID_INDEX || !sink_name, tag, PA_ERR_INVALID);
|
||||
CHECK_VALIDITY(c->pstream, !sink_name || sink_index == PA_INVALID_INDEX, tag, PA_ERR_INVALID);
|
||||
CHECK_VALIDITY(c->pstream, pa_channel_map_valid(&map), tag, PA_ERR_INVALID);
|
||||
CHECK_VALIDITY(c->pstream, pa_sample_spec_valid(&ss), tag, PA_ERR_INVALID);
|
||||
CHECK_VALIDITY(c->pstream, pa_cvolume_valid(&volume), tag, PA_ERR_INVALID);
|
||||
CHECK_VALIDITY(c->pstream, map.channels == ss.channels && volume.channels == ss.channels, tag, PA_ERR_INVALID);
|
||||
|
||||
p = pa_proplist_new();
|
||||
|
||||
|
|
@ -1930,8 +1935,7 @@ static void command_create_playback_stream(pa_pdispatch *pd, uint32_t command, u
|
|||
pa_tagstruct_get_boolean(t, &variable_rate) < 0) {
|
||||
|
||||
protocol_error(c);
|
||||
pa_proplist_free(p);
|
||||
return;
|
||||
goto error;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -1940,9 +1944,9 @@ static void command_create_playback_stream(pa_pdispatch *pd, uint32_t command, u
|
|||
if (pa_tagstruct_get_boolean(t, &muted) < 0 ||
|
||||
pa_tagstruct_get_boolean(t, &adjust_latency) < 0 ||
|
||||
pa_tagstruct_get_proplist(t, p) < 0) {
|
||||
|
||||
protocol_error(c);
|
||||
pa_proplist_free(p);
|
||||
return;
|
||||
goto error;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -1950,9 +1954,9 @@ static void command_create_playback_stream(pa_pdispatch *pd, uint32_t command, u
|
|||
|
||||
if (pa_tagstruct_get_boolean(t, &volume_set) < 0 ||
|
||||
pa_tagstruct_get_boolean(t, &early_requests) < 0) {
|
||||
|
||||
protocol_error(c);
|
||||
pa_proplist_free(p);
|
||||
return;
|
||||
goto error;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -1961,18 +1965,18 @@ static void command_create_playback_stream(pa_pdispatch *pd, uint32_t command, u
|
|||
if (pa_tagstruct_get_boolean(t, &muted_set) < 0 ||
|
||||
pa_tagstruct_get_boolean(t, &dont_inhibit_auto_suspend) < 0 ||
|
||||
pa_tagstruct_get_boolean(t, &fail_on_suspend) < 0) {
|
||||
|
||||
protocol_error(c);
|
||||
pa_proplist_free(p);
|
||||
return;
|
||||
goto error;
|
||||
}
|
||||
}
|
||||
|
||||
if (c->version >= 17) {
|
||||
|
||||
if (pa_tagstruct_get_boolean(t, &relative_volume) < 0) {
|
||||
|
||||
protocol_error(c);
|
||||
pa_proplist_free(p);
|
||||
return;
|
||||
goto error;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -1980,31 +1984,57 @@ static void command_create_playback_stream(pa_pdispatch *pd, uint32_t command, u
|
|||
|
||||
if (pa_tagstruct_get_boolean(t, &passthrough) < 0 ) {
|
||||
protocol_error(c);
|
||||
pa_proplist_free(p);
|
||||
return;
|
||||
goto error;
|
||||
}
|
||||
}
|
||||
|
||||
if (c->version >= 21) {
|
||||
|
||||
if (pa_tagstruct_getu8(t, &n_formats) < 0) {
|
||||
protocol_error(c);
|
||||
goto error;
|
||||
}
|
||||
|
||||
if (n_formats)
|
||||
formats = pa_idxset_new(NULL, NULL);
|
||||
|
||||
for (i = 0; i < n_formats; i++) {
|
||||
format = pa_format_info_new();
|
||||
if (pa_tagstruct_get_format_info(t, format) < 0) {
|
||||
protocol_error(c);
|
||||
goto error;
|
||||
}
|
||||
pa_idxset_put(formats, format, NULL);
|
||||
}
|
||||
}
|
||||
|
||||
if (n_formats == 0) {
|
||||
CHECK_VALIDITY(c->pstream, pa_sample_spec_valid(&ss), tag, PA_ERR_INVALID);
|
||||
CHECK_VALIDITY(c->pstream, map.channels == ss.channels && volume.channels == ss.channels, tag, PA_ERR_INVALID);
|
||||
CHECK_VALIDITY(c->pstream, pa_channel_map_valid(&map), tag, PA_ERR_INVALID);
|
||||
} else {
|
||||
PA_IDXSET_FOREACH(format, formats, i) {
|
||||
CHECK_VALIDITY(c->pstream, pa_format_info_valid(format), tag, PA_ERR_INVALID);
|
||||
}
|
||||
}
|
||||
|
||||
if (!pa_tagstruct_eof(t)) {
|
||||
protocol_error(c);
|
||||
pa_proplist_free(p);
|
||||
return;
|
||||
goto error;
|
||||
}
|
||||
|
||||
if (sink_index != PA_INVALID_INDEX) {
|
||||
|
||||
if (!(sink = pa_idxset_get_by_index(c->protocol->core->sinks, sink_index))) {
|
||||
pa_pstream_send_error(c->pstream, tag, PA_ERR_NOENTITY);
|
||||
pa_proplist_free(p);
|
||||
return;
|
||||
goto error;
|
||||
}
|
||||
|
||||
} else if (sink_name) {
|
||||
|
||||
if (!(sink = pa_namereg_get(c->protocol->core, sink_name, PA_NAMEREG_SINK))) {
|
||||
pa_pstream_send_error(c->pstream, tag, PA_ERR_NOENTITY);
|
||||
pa_proplist_free(p);
|
||||
return;
|
||||
goto error;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -2025,7 +2055,7 @@ static void command_create_playback_stream(pa_pdispatch *pd, uint32_t command, u
|
|||
* flag. For older versions we synthesize it here */
|
||||
muted_set = muted_set || muted;
|
||||
|
||||
s = playback_stream_new(c, sink, &ss, &map, &attr, volume_set ? &volume : NULL, muted, muted_set, syncid, &missing, flags, p, adjust_latency, early_requests, relative_volume, &ret);
|
||||
s = playback_stream_new(c, sink, &ss, &map, formats, &attr, volume_set ? &volume : NULL, muted, muted_set, syncid, &missing, flags, p, adjust_latency, early_requests, relative_volume, &ret);
|
||||
pa_proplist_free(p);
|
||||
|
||||
CHECK_VALIDITY(c->pstream, s, tag, ret);
|
||||
|
|
@ -2064,7 +2094,26 @@ static void command_create_playback_stream(pa_pdispatch *pd, uint32_t command, u
|
|||
if (c->version >= 13)
|
||||
pa_tagstruct_put_usec(reply, s->configured_sink_latency);
|
||||
|
||||
if (c->version >= 21) {
|
||||
/* Send back the format we negotiated */
|
||||
if (s->sink_input->format)
|
||||
pa_tagstruct_put_format_info(reply, s->sink_input->format);
|
||||
else {
|
||||
pa_format_info *f = pa_format_info_new();
|
||||
pa_tagstruct_put_format_info(reply, f);
|
||||
pa_format_info_free(f);
|
||||
}
|
||||
}
|
||||
|
||||
pa_pstream_send_tagstruct(c->pstream, reply);
|
||||
return;
|
||||
|
||||
error:
|
||||
if (p)
|
||||
pa_proplist_free(p);
|
||||
if (formats)
|
||||
pa_idxset_free(formats, (pa_free2_cb_t) pa_format_info_free2, NULL);
|
||||
return;
|
||||
}
|
||||
|
||||
static void command_delete_stream(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
|
||||
|
|
@ -2935,6 +2984,19 @@ static void sink_fill_tagstruct(pa_native_connection *c, pa_tagstruct *t, pa_sin
|
|||
|
||||
pa_tagstruct_puts(t, sink->active_port ? sink->active_port->name : NULL);
|
||||
}
|
||||
|
||||
if (c->version >= 21) {
|
||||
uint32_t i;
|
||||
pa_format_info *f;
|
||||
pa_idxset *formats = pa_sink_get_formats(sink);
|
||||
|
||||
pa_tagstruct_putu8(t, (uint8_t) pa_idxset_size(formats));
|
||||
PA_IDXSET_FOREACH(f, formats, i) {
|
||||
pa_tagstruct_put_format_info(t, f);
|
||||
}
|
||||
|
||||
pa_idxset_free(formats, (pa_free2_cb_t) pa_format_info_free2, NULL);
|
||||
}
|
||||
}
|
||||
|
||||
static void source_fill_tagstruct(pa_native_connection *c, pa_tagstruct *t, pa_source *source) {
|
||||
|
|
@ -3091,6 +3153,8 @@ static void sink_input_fill_tagstruct(pa_native_connection *c, pa_tagstruct *t,
|
|||
pa_tagstruct_put_boolean(t, has_volume);
|
||||
pa_tagstruct_put_boolean(t, s->volume_writable);
|
||||
}
|
||||
if (c->version >= 21)
|
||||
pa_tagstruct_put_format_info(t, s->format);
|
||||
}
|
||||
|
||||
static void source_output_fill_tagstruct(pa_native_connection *c, pa_tagstruct *t, pa_source_output *s) {
|
||||
|
|
|
|||
|
|
@ -538,7 +538,7 @@ void pa_simple_protocol_connect(pa_simple_protocol *p, pa_iochannel *io, pa_simp
|
|||
data.driver = __FILE__;
|
||||
data.module = o->module;
|
||||
data.client = c->client;
|
||||
data.sink = sink;
|
||||
pa_sink_input_new_data_set_sink(&data, sink, FALSE);
|
||||
pa_proplist_update(data.proplist, PA_UPDATE_MERGE, c->client->proplist);
|
||||
pa_sink_input_new_data_set_sample_spec(&data, &o->sample_spec);
|
||||
|
||||
|
|
|
|||
|
|
@ -31,6 +31,7 @@
|
|||
#include <pulse/utf8.h>
|
||||
#include <pulse/xmalloc.h>
|
||||
#include <pulse/util.h>
|
||||
#include <pulse/internal.h>
|
||||
|
||||
#include <pulsecore/sample-util.h>
|
||||
#include <pulsecore/core-subscribe.h>
|
||||
|
|
@ -49,36 +50,18 @@ PA_DEFINE_PUBLIC_CLASS(pa_sink_input, pa_msgobject);
|
|||
static void sink_input_free(pa_object *o);
|
||||
static void set_real_ratio(pa_sink_input *i, const pa_cvolume *v);
|
||||
|
||||
static int check_passthrough_connection(pa_sink_input_flags_t flags, pa_sink *dest) {
|
||||
|
||||
if (dest->flags & PA_SINK_PASSTHROUGH) {
|
||||
|
||||
if (pa_idxset_size(dest->inputs) > 0) {
|
||||
|
||||
pa_sink_input *alt_i;
|
||||
uint32_t idx;
|
||||
|
||||
alt_i = pa_idxset_first(dest->inputs, &idx);
|
||||
|
||||
/* only need to check the first input is not PASSTHROUGH */
|
||||
if (alt_i->flags & PA_SINK_INPUT_PASSTHROUGH) {
|
||||
pa_log_warn("Sink is already connected to PASSTHROUGH input");
|
||||
return -PA_ERR_BUSY;
|
||||
}
|
||||
|
||||
/* Current inputs are PCM, check new input is not PASSTHROUGH */
|
||||
if (flags & PA_SINK_INPUT_PASSTHROUGH) {
|
||||
pa_log_warn("Sink is already connected, cannot accept new PASSTHROUGH INPUT");
|
||||
return -PA_ERR_BUSY;
|
||||
}
|
||||
}
|
||||
|
||||
} else {
|
||||
if (flags & PA_SINK_INPUT_PASSTHROUGH) {
|
||||
pa_log_warn("Cannot connect PASSTHROUGH sink input to sink without PASSTHROUGH capabilities");
|
||||
return -PA_ERR_INVALID;
|
||||
}
|
||||
static int check_passthrough_connection(pa_bool_t passthrough, pa_sink *dest) {
|
||||
if (pa_sink_is_passthrough(dest)) {
|
||||
pa_log_warn("Sink is already connected to PASSTHROUGH input");
|
||||
return -PA_ERR_BUSY;
|
||||
}
|
||||
|
||||
/* If current input(s) exist, check new input is not PASSTHROUGH */
|
||||
if (pa_idxset_size(dest->inputs) > 0 && passthrough) {
|
||||
pa_log_warn("Sink is already connected, cannot accept new PASSTHROUGH INPUT");
|
||||
return -PA_ERR_BUSY;
|
||||
}
|
||||
|
||||
return PA_OK;
|
||||
}
|
||||
|
||||
|
|
@ -107,6 +90,18 @@ void pa_sink_input_new_data_set_channel_map(pa_sink_input_new_data *data, const
|
|||
data->channel_map = *map;
|
||||
}
|
||||
|
||||
pa_bool_t pa_sink_input_new_data_is_passthrough(pa_sink_input_new_data *data) {
|
||||
pa_assert(data);
|
||||
|
||||
if (PA_LIKELY(data->format) && PA_UNLIKELY(!pa_format_info_is_pcm(data->format)))
|
||||
return TRUE;
|
||||
|
||||
if (PA_UNLIKELY(data->flags & PA_SINK_INPUT_PASSTHROUGH))
|
||||
return TRUE;
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
void pa_sink_input_new_data_set_volume(pa_sink_input_new_data *data, const pa_cvolume *volume) {
|
||||
pa_assert(data);
|
||||
pa_assert(data->volume_writable);
|
||||
|
|
@ -146,9 +141,68 @@ void pa_sink_input_new_data_set_muted(pa_sink_input_new_data *data, pa_bool_t mu
|
|||
data->muted = !!mute;
|
||||
}
|
||||
|
||||
pa_bool_t pa_sink_input_new_data_set_sink(pa_sink_input_new_data *data, pa_sink *s, pa_bool_t save) {
|
||||
pa_bool_t ret = TRUE;
|
||||
pa_idxset *formats = NULL;
|
||||
|
||||
pa_assert(data);
|
||||
pa_assert(s);
|
||||
|
||||
if (!data->req_formats) {
|
||||
/* We're not working with the extended API */
|
||||
data->sink = s;
|
||||
data->save_sink = save;
|
||||
} else {
|
||||
/* Extended API: let's see if this sink supports the formats the client can provide */
|
||||
formats = pa_sink_check_formats(s, data->req_formats);
|
||||
|
||||
if (formats && !pa_idxset_isempty(formats)) {
|
||||
/* Sink supports at least one of the requested formats */
|
||||
data->sink = s;
|
||||
data->save_sink = save;
|
||||
if (data->nego_formats)
|
||||
pa_idxset_free(data->nego_formats, (pa_free2_cb_t) pa_format_info_free2, NULL);
|
||||
data->nego_formats = formats;
|
||||
} else {
|
||||
/* Sink doesn't support any of the formats requested by the client */
|
||||
if (formats)
|
||||
pa_idxset_free(formats, (pa_free2_cb_t) pa_format_info_free2, NULL);
|
||||
ret = FALSE;
|
||||
}
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
pa_bool_t pa_sink_input_new_data_set_formats(pa_sink_input_new_data *data, pa_idxset *formats) {
|
||||
pa_assert(data);
|
||||
pa_assert(formats);
|
||||
|
||||
if (data->req_formats)
|
||||
pa_idxset_free(formats, (pa_free2_cb_t) pa_format_info_free2, NULL);
|
||||
|
||||
data->req_formats = formats;
|
||||
|
||||
if (data->sink) {
|
||||
/* Trigger format negotiation */
|
||||
return pa_sink_input_new_data_set_sink(data, data->sink, data->save_sink);
|
||||
}
|
||||
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
void pa_sink_input_new_data_done(pa_sink_input_new_data *data) {
|
||||
pa_assert(data);
|
||||
|
||||
if (data->req_formats)
|
||||
pa_idxset_free(data->req_formats, (pa_free2_cb_t) pa_format_info_free2, NULL);
|
||||
|
||||
if (data->nego_formats)
|
||||
pa_idxset_free(data->nego_formats, (pa_free2_cb_t) pa_format_info_free2, NULL);
|
||||
|
||||
if (data->format)
|
||||
pa_format_info_free(data->format);
|
||||
|
||||
pa_proplist_free(data->proplist);
|
||||
}
|
||||
|
||||
|
|
@ -189,6 +243,8 @@ int pa_sink_input_new(
|
|||
pa_channel_map original_cm;
|
||||
int r;
|
||||
char *pt;
|
||||
pa_sample_spec ss;
|
||||
pa_channel_map map;
|
||||
|
||||
pa_assert(_i);
|
||||
pa_assert(core);
|
||||
|
|
@ -201,22 +257,53 @@ int pa_sink_input_new(
|
|||
if (data->origin_sink && (data->origin_sink->flags & PA_SINK_SHARE_VOLUME_WITH_MASTER))
|
||||
data->volume_writable = FALSE;
|
||||
|
||||
if (!data->req_formats) {
|
||||
/* From this point on, we want to work only with formats, and get back
|
||||
* to using the sample spec and channel map after all decisions w.r.t.
|
||||
* routing are complete. */
|
||||
pa_idxset *tmp = pa_idxset_new(NULL, NULL);
|
||||
pa_format_info *f = pa_format_info_from_sample_spec(&data->sample_spec, &data->channel_map);
|
||||
pa_idxset_put(tmp, f, NULL);
|
||||
pa_sink_input_new_data_set_formats(data, tmp);
|
||||
}
|
||||
|
||||
if ((r = pa_hook_fire(&core->hooks[PA_CORE_HOOK_SINK_INPUT_NEW], data)) < 0)
|
||||
return r;
|
||||
|
||||
pa_return_val_if_fail(!data->driver || pa_utf8_valid(data->driver), -PA_ERR_INVALID);
|
||||
|
||||
if (!data->sink) {
|
||||
data->sink = pa_namereg_get(core, NULL, PA_NAMEREG_SINK);
|
||||
data->save_sink = FALSE;
|
||||
if (!data->sink)
|
||||
pa_sink_input_new_data_set_sink(data, pa_namereg_get(core, NULL, PA_NAMEREG_SINK), FALSE);
|
||||
|
||||
/* Routing's done, we have a sink. Now let's fix the format and set up the
|
||||
* sample spec */
|
||||
|
||||
/* If something didn't pick a format for us, pick the top-most format since
|
||||
* we assume this is sorted in priority order */
|
||||
if (!data->format && data->nego_formats && !pa_idxset_isempty(data->nego_formats))
|
||||
data->format = pa_format_info_copy(pa_idxset_first(data->nego_formats, NULL));
|
||||
|
||||
pa_return_val_if_fail(data->format, -PA_ERR_NOTSUPPORTED);
|
||||
|
||||
/* Now populate the sample spec and format according to the final
|
||||
* format that we've negotiated */
|
||||
if (PA_LIKELY(data->format->encoding == PA_ENCODING_PCM)) {
|
||||
pa_return_val_if_fail(pa_format_info_to_sample_spec(data->format, &ss, &map), -PA_ERR_INVALID);
|
||||
pa_sink_input_new_data_set_sample_spec(data, &ss);
|
||||
if (pa_channel_map_valid(&map))
|
||||
pa_sink_input_new_data_set_channel_map(data, &map);
|
||||
} else {
|
||||
pa_return_val_if_fail(pa_format_info_to_sample_spec_fake(data->format, &ss), -PA_ERR_INVALID);
|
||||
pa_sink_input_new_data_set_sample_spec(data, &ss);
|
||||
}
|
||||
|
||||
pa_return_val_if_fail(data->sink, -PA_ERR_NOENTITY);
|
||||
pa_return_val_if_fail(PA_SINK_IS_LINKED(pa_sink_get_state(data->sink)), -PA_ERR_BADSTATE);
|
||||
pa_return_val_if_fail(!data->sync_base || (data->sync_base->sink == data->sink && pa_sink_input_get_state(data->sync_base) == PA_SINK_INPUT_CORKED), -PA_ERR_INVALID);
|
||||
|
||||
r = check_passthrough_connection(data->flags, data->sink);
|
||||
pa_return_val_if_fail(r == PA_OK, r);
|
||||
r = check_passthrough_connection(pa_sink_input_new_data_is_passthrough(data), data->sink);
|
||||
if (r != PA_OK)
|
||||
return r;
|
||||
|
||||
if (!data->sample_spec_is_set)
|
||||
data->sample_spec = data->sink->sample_spec;
|
||||
|
|
@ -232,6 +319,12 @@ int pa_sink_input_new(
|
|||
|
||||
pa_return_val_if_fail(pa_channel_map_compatible(&data->channel_map, &data->sample_spec), -PA_ERR_INVALID);
|
||||
|
||||
/* Don't restore (or save) stream volume for passthrough streams */
|
||||
if (!pa_format_info_is_pcm(data->format)) {
|
||||
data->volume_is_set = FALSE;
|
||||
data->volume_factor_is_set = FALSE;
|
||||
}
|
||||
|
||||
if (!data->volume_is_set) {
|
||||
pa_cvolume_reset(&data->volume, data->sample_spec.channels);
|
||||
data->volume_is_absolute = FALSE;
|
||||
|
|
@ -295,18 +388,20 @@ int pa_sink_input_new(
|
|||
!pa_sample_spec_equal(&data->sample_spec, &data->sink->sample_spec) ||
|
||||
!pa_channel_map_equal(&data->channel_map, &data->sink->channel_map)) {
|
||||
|
||||
if (!(resampler = pa_resampler_new(
|
||||
core->mempool,
|
||||
&data->sample_spec, &data->channel_map,
|
||||
&data->sink->sample_spec, &data->sink->channel_map,
|
||||
data->resample_method,
|
||||
((data->flags & PA_SINK_INPUT_VARIABLE_RATE) ? PA_RESAMPLER_VARIABLE_RATE : 0) |
|
||||
((data->flags & PA_SINK_INPUT_NO_REMAP) ? PA_RESAMPLER_NO_REMAP : 0) |
|
||||
(core->disable_remixing || (data->flags & PA_SINK_INPUT_NO_REMIX) ? PA_RESAMPLER_NO_REMIX : 0) |
|
||||
(core->disable_lfe_remixing ? PA_RESAMPLER_NO_LFE : 0)))) {
|
||||
pa_log_warn("Unsupported resampling operation.");
|
||||
return -PA_ERR_NOTSUPPORTED;
|
||||
}
|
||||
/* Note: for passthrough content we need to adjust the output rate to that of the current sink-input */
|
||||
if (!pa_sink_input_new_data_is_passthrough(data)) /* no resampler for passthrough content */
|
||||
if (!(resampler = pa_resampler_new(
|
||||
core->mempool,
|
||||
&data->sample_spec, &data->channel_map,
|
||||
&data->sink->sample_spec, &data->sink->channel_map,
|
||||
data->resample_method,
|
||||
((data->flags & PA_SINK_INPUT_VARIABLE_RATE) ? PA_RESAMPLER_VARIABLE_RATE : 0) |
|
||||
((data->flags & PA_SINK_INPUT_NO_REMAP) ? PA_RESAMPLER_NO_REMAP : 0) |
|
||||
(core->disable_remixing || (data->flags & PA_SINK_INPUT_NO_REMIX) ? PA_RESAMPLER_NO_REMIX : 0) |
|
||||
(core->disable_lfe_remixing ? PA_RESAMPLER_NO_LFE : 0)))) {
|
||||
pa_log_warn("Unsupported resampling operation.");
|
||||
return -PA_ERR_NOTSUPPORTED;
|
||||
}
|
||||
}
|
||||
|
||||
i = pa_msgobject_new(pa_sink_input);
|
||||
|
|
@ -327,6 +422,7 @@ int pa_sink_input_new(
|
|||
i->actual_resample_method = resampler ? pa_resampler_get_method(resampler) : PA_RESAMPLER_INVALID;
|
||||
i->sample_spec = data->sample_spec;
|
||||
i->channel_map = data->channel_map;
|
||||
i->format = pa_format_info_copy(data->format);
|
||||
|
||||
if (!data->volume_is_absolute && pa_sink_flat_volume_enabled(i->sink)) {
|
||||
pa_cvolume remapped;
|
||||
|
|
@ -519,6 +615,10 @@ void pa_sink_input_unlink(pa_sink_input *i) {
|
|||
|
||||
if (i->sink->asyncmsgq)
|
||||
pa_assert_se(pa_asyncmsgq_send(i->sink->asyncmsgq, PA_MSGOBJECT(i->sink), PA_SINK_MESSAGE_REMOVE_INPUT, i, 0, NULL) == 0);
|
||||
|
||||
/* We suspend the monitor if there was a passthrough sink, unsuspend now if required */
|
||||
if (pa_sink_input_is_passthrough(i) && i->sink->monitor_source)
|
||||
pa_source_suspend(i->sink->monitor_source, FALSE, PA_SUSPEND_PASSTHROUGH);
|
||||
}
|
||||
|
||||
reset_callbacks(i);
|
||||
|
|
@ -562,6 +662,9 @@ static void sink_input_free(pa_object *o) {
|
|||
if (i->thread_info.resampler)
|
||||
pa_resampler_free(i->thread_info.resampler);
|
||||
|
||||
if (i->format)
|
||||
pa_format_info_free(i->format);
|
||||
|
||||
if (i->proplist)
|
||||
pa_proplist_free(i->proplist);
|
||||
|
||||
|
|
@ -606,6 +709,10 @@ void pa_sink_input_put(pa_sink_input *i) {
|
|||
set_real_ratio(i, &i->volume);
|
||||
}
|
||||
|
||||
/* If we're entering passthrough mode, disable the monitor */
|
||||
if (pa_sink_input_is_passthrough(i) && i->sink->monitor_source)
|
||||
pa_source_suspend(i->sink->monitor_source, TRUE, PA_SUSPEND_PASSTHROUGH);
|
||||
|
||||
i->thread_info.soft_volume = i->soft_volume;
|
||||
i->thread_info.muted = i->muted;
|
||||
|
||||
|
|
@ -1087,12 +1194,25 @@ static void set_real_ratio(pa_sink_input *i, const pa_cvolume *v) {
|
|||
/* We don't copy the data to the thread_info data. That's left for someone else to do */
|
||||
}
|
||||
|
||||
/* Called from main or I/O context */
|
||||
pa_bool_t pa_sink_input_is_passthrough(pa_sink_input *i) {
|
||||
pa_sink_input_assert_ref(i);
|
||||
|
||||
if (PA_UNLIKELY(!pa_format_info_is_pcm(i->format)))
|
||||
return TRUE;
|
||||
|
||||
if (PA_UNLIKELY(i->flags & PA_SINK_INPUT_PASSTHROUGH))
|
||||
return TRUE;
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/* Called from main context */
|
||||
pa_bool_t pa_sink_input_is_volume_readable(pa_sink_input *i) {
|
||||
pa_sink_input_assert_ref(i);
|
||||
pa_assert_ctl_context();
|
||||
|
||||
return !(i->flags & PA_SINK_INPUT_PASSTHROUGH);
|
||||
return !pa_sink_input_is_passthrough(i);
|
||||
}
|
||||
|
||||
/* Called from main context */
|
||||
|
|
@ -1251,7 +1371,7 @@ pa_bool_t pa_sink_input_may_move_to(pa_sink_input *i, pa_sink *dest) {
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
if (check_passthrough_connection(i->flags, dest) < 0)
|
||||
if (check_passthrough_connection(pa_sink_input_is_passthrough(i), dest) < 0)
|
||||
return FALSE;
|
||||
|
||||
if (i->may_move_to)
|
||||
|
|
@ -1297,6 +1417,10 @@ int pa_sink_input_start_move(pa_sink_input *i) {
|
|||
|
||||
pa_assert_se(pa_asyncmsgq_send(i->sink->asyncmsgq, PA_MSGOBJECT(i->sink), PA_SINK_MESSAGE_START_MOVE, i, 0, NULL) == 0);
|
||||
|
||||
/* We suspend the monitor if there was a passthrough sink, unsuspend now if required */
|
||||
if (pa_sink_input_is_passthrough(i) && i->sink->monitor_source)
|
||||
pa_source_suspend(i->sink->monitor_source, FALSE, PA_SUSPEND_PASSTHROUGH);
|
||||
|
||||
pa_sink_update_status(i->sink);
|
||||
pa_cvolume_remap(&i->volume_factor_sink, &i->sink->channel_map, &i->channel_map);
|
||||
i->sink = NULL;
|
||||
|
|
@ -1469,6 +1593,16 @@ int pa_sink_input_finish_move(pa_sink_input *i, pa_sink *dest, pa_bool_t save) {
|
|||
if (!pa_sink_input_may_move_to(i, dest))
|
||||
return -PA_ERR_NOTSUPPORTED;
|
||||
|
||||
if (pa_sink_input_is_passthrough(i) && !pa_sink_check_format(dest, i->format)) {
|
||||
pa_proplist *p = pa_proplist_new();
|
||||
pa_log_debug("New sink doesn't support stream format, sending format-changed and killing");
|
||||
/* Tell the client what device we want to be on if it is going to
|
||||
* reconnect */
|
||||
pa_proplist_sets(p, "device", dest->name);
|
||||
pa_sink_input_send_event(i, PA_STREAM_EVENT_FORMAT_LOST, p);
|
||||
return -PA_ERR_NOTSUPPORTED;
|
||||
}
|
||||
|
||||
if (i->thread_info.resampler &&
|
||||
pa_sample_spec_equal(pa_resampler_output_sample_spec(i->thread_info.resampler), &dest->sample_spec) &&
|
||||
pa_channel_map_equal(pa_resampler_output_channel_map(i->thread_info.resampler), &dest->channel_map))
|
||||
|
|
@ -1533,6 +1667,10 @@ int pa_sink_input_finish_move(pa_sink_input *i, pa_sink *dest, pa_bool_t save) {
|
|||
|
||||
pa_assert_se(pa_asyncmsgq_send(i->sink->asyncmsgq, PA_MSGOBJECT(i->sink), PA_SINK_MESSAGE_FINISH_MOVE, i, 0, NULL) == 0);
|
||||
|
||||
/* If we're entering passthrough mode, disable the monitor */
|
||||
if (pa_sink_input_is_passthrough(i) && i->sink->monitor_source)
|
||||
pa_source_suspend(i->sink->monitor_source, TRUE, PA_SUSPEND_PASSTHROUGH);
|
||||
|
||||
pa_log_debug("Successfully moved sink input %i to %s.", i->index, dest->name);
|
||||
|
||||
/* Notify everyone */
|
||||
|
|
|
|||
|
|
@ -28,6 +28,7 @@
|
|||
typedef struct pa_sink_input pa_sink_input;
|
||||
|
||||
#include <pulse/sample.h>
|
||||
#include <pulse/format.h>
|
||||
#include <pulsecore/hook-list.h>
|
||||
#include <pulsecore/memblockq.h>
|
||||
#include <pulsecore/resampler.h>
|
||||
|
|
@ -92,6 +93,7 @@ struct pa_sink_input {
|
|||
|
||||
pa_sample_spec sample_spec;
|
||||
pa_channel_map channel_map;
|
||||
pa_format_info *format;
|
||||
|
||||
pa_sink_input *sync_prev, *sync_next;
|
||||
|
||||
|
|
@ -279,6 +281,9 @@ typedef struct pa_sink_input_new_data {
|
|||
|
||||
pa_sample_spec sample_spec;
|
||||
pa_channel_map channel_map;
|
||||
pa_format_info *format;
|
||||
pa_idxset *req_formats;
|
||||
pa_idxset *nego_formats;
|
||||
|
||||
pa_cvolume volume, volume_factor, volume_factor_sink;
|
||||
pa_bool_t muted:1;
|
||||
|
|
@ -299,10 +304,13 @@ typedef struct pa_sink_input_new_data {
|
|||
pa_sink_input_new_data* pa_sink_input_new_data_init(pa_sink_input_new_data *data);
|
||||
void pa_sink_input_new_data_set_sample_spec(pa_sink_input_new_data *data, const pa_sample_spec *spec);
|
||||
void pa_sink_input_new_data_set_channel_map(pa_sink_input_new_data *data, const pa_channel_map *map);
|
||||
pa_bool_t pa_sink_input_new_data_is_passthrough(pa_sink_input_new_data *data);
|
||||
void pa_sink_input_new_data_set_volume(pa_sink_input_new_data *data, const pa_cvolume *volume);
|
||||
void pa_sink_input_new_data_apply_volume_factor(pa_sink_input_new_data *data, const pa_cvolume *volume_factor);
|
||||
void pa_sink_input_new_data_apply_volume_factor_sink(pa_sink_input_new_data *data, const pa_cvolume *volume_factor);
|
||||
void pa_sink_input_new_data_set_muted(pa_sink_input_new_data *data, pa_bool_t mute);
|
||||
pa_bool_t pa_sink_input_new_data_set_sink(pa_sink_input_new_data *data, pa_sink *s, pa_bool_t save);
|
||||
pa_bool_t pa_sink_input_new_data_set_formats(pa_sink_input_new_data *data, pa_idxset *formats);
|
||||
void pa_sink_input_new_data_done(pa_sink_input_new_data *data);
|
||||
|
||||
/* To be called by the implementing module only */
|
||||
|
|
@ -343,6 +351,7 @@ void pa_sink_input_kill(pa_sink_input*i);
|
|||
|
||||
pa_usec_t pa_sink_input_get_latency(pa_sink_input *i, pa_usec_t *sink_latency);
|
||||
|
||||
pa_bool_t pa_sink_input_is_passthrough(pa_sink_input *i);
|
||||
pa_bool_t pa_sink_input_is_volume_readable(pa_sink_input *i);
|
||||
void pa_sink_input_set_volume(pa_sink_input *i, const pa_cvolume *volume, pa_bool_t save, pa_bool_t absolute);
|
||||
pa_cvolume *pa_sink_input_get_volume(pa_sink_input *i, pa_cvolume *volume, pa_bool_t absolute);
|
||||
|
|
|
|||
|
|
@ -35,6 +35,7 @@
|
|||
#include <pulse/util.h>
|
||||
#include <pulse/i18n.h>
|
||||
#include <pulse/rtclock.h>
|
||||
#include <pulse/internal.h>
|
||||
|
||||
#include <pulsecore/sink-input.h>
|
||||
#include <pulsecore/namereg.h>
|
||||
|
|
@ -177,6 +178,7 @@ static void reset_callbacks(pa_sink *s) {
|
|||
s->request_rewind = NULL;
|
||||
s->update_requested_latency = NULL;
|
||||
s->set_port = NULL;
|
||||
s->get_formats = NULL;
|
||||
}
|
||||
|
||||
/* Called from main context */
|
||||
|
|
@ -1239,6 +1241,24 @@ pa_bool_t pa_sink_flat_volume_enabled(pa_sink *s) {
|
|||
return (s->flags & PA_SINK_FLAT_VOLUME);
|
||||
}
|
||||
|
||||
/* Called from main context */
|
||||
pa_bool_t pa_sink_is_passthrough(pa_sink *s) {
|
||||
pa_sink_input *alt_i;
|
||||
uint32_t idx;
|
||||
|
||||
pa_sink_assert_ref(s);
|
||||
|
||||
/* one and only one PASSTHROUGH input can possibly be connected */
|
||||
if (pa_idxset_size(s->inputs) == 1) {
|
||||
alt_i = pa_idxset_first(s->inputs, &idx);
|
||||
|
||||
if (pa_sink_input_is_passthrough(alt_i))
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/* Called from main context. */
|
||||
static void compute_reference_ratio(pa_sink_input *i) {
|
||||
unsigned c = 0;
|
||||
|
|
@ -1630,21 +1650,10 @@ void pa_sink_set_volume(
|
|||
pa_assert(!volume || volume->channels == 1 || pa_cvolume_compatible(volume, &s->sample_spec));
|
||||
|
||||
/* make sure we don't change the volume when a PASSTHROUGH input is connected */
|
||||
if (s->flags & PA_SINK_PASSTHROUGH) {
|
||||
pa_sink_input *alt_i;
|
||||
uint32_t idx;
|
||||
|
||||
/* one and only one PASSTHROUGH input can possibly be connected */
|
||||
if (pa_idxset_size(s->inputs) == 1) {
|
||||
|
||||
alt_i = pa_idxset_first(s->inputs, &idx);
|
||||
|
||||
if (alt_i->flags & PA_SINK_INPUT_PASSTHROUGH) {
|
||||
/* FIXME: Need to notify client that volume control is disabled */
|
||||
pa_log_warn("Cannot change volume, Sink is connected to PASSTHROUGH input");
|
||||
return;
|
||||
}
|
||||
}
|
||||
if (pa_sink_is_passthrough(s)) {
|
||||
/* FIXME: Need to notify client that volume control is disabled */
|
||||
pa_log_warn("Cannot change volume, Sink is connected to PASSTHROUGH input");
|
||||
return;
|
||||
}
|
||||
|
||||
/* In case of volume sharing, the volume is set for the root sink first,
|
||||
|
|
@ -2144,7 +2153,7 @@ int pa_sink_process_msg(pa_msgobject *o, int code, void *userdata, int64_t offse
|
|||
|
||||
/* If you change anything here, make sure to change the
|
||||
* sink input handling a few lines down at
|
||||
* PA_SINK_MESSAGE_PREPAPRE_MOVE, too. */
|
||||
* PA_SINK_MESSAGE_START_MOVE, too. */
|
||||
|
||||
if (i->detach)
|
||||
i->detach(i);
|
||||
|
|
@ -3258,3 +3267,82 @@ static void pa_sink_volume_change_rewind(pa_sink *s, size_t nbytes) {
|
|||
}
|
||||
pa_sink_volume_change_apply(s, NULL);
|
||||
}
|
||||
|
||||
/* Called from the main thread */
|
||||
/* Gets the list of formats supported by the sink. The members and idxset must
|
||||
* be freed by the caller. */
|
||||
pa_idxset* pa_sink_get_formats(pa_sink *s) {
|
||||
pa_idxset *ret;
|
||||
|
||||
pa_assert(s);
|
||||
|
||||
if (s->get_formats) {
|
||||
/* Sink supports format query, all is good */
|
||||
ret = s->get_formats(s);
|
||||
} else {
|
||||
/* Sink doesn't support format query, so assume it does PCM */
|
||||
pa_format_info *f = pa_format_info_new();
|
||||
f->encoding = PA_ENCODING_PCM;
|
||||
|
||||
ret = pa_idxset_new(NULL, NULL);
|
||||
pa_idxset_put(ret, f, NULL);
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
/* Called from the main thread */
|
||||
/* Checks if the sink can accept this format */
|
||||
pa_bool_t pa_sink_check_format(pa_sink *s, pa_format_info *f)
|
||||
{
|
||||
pa_idxset *sink_formats = NULL;
|
||||
pa_format_info *f_sink;
|
||||
uint32_t i;
|
||||
pa_bool_t ret = FALSE;
|
||||
|
||||
pa_assert(s);
|
||||
pa_assert(f);
|
||||
|
||||
sink_formats = pa_sink_get_formats(s);
|
||||
|
||||
PA_IDXSET_FOREACH(f_sink, sink_formats, i) {
|
||||
if (pa_format_info_is_compatible(f_sink, f)) {
|
||||
ret = TRUE;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (sink_formats)
|
||||
pa_idxset_free(sink_formats, (pa_free2_cb_t) pa_format_info_free2, NULL);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
/* Called from the main thread */
|
||||
/* Calculates the intersection between formats supported by the sink and
|
||||
* in_formats, and returns these, in the order of the sink's formats. */
|
||||
pa_idxset* pa_sink_check_formats(pa_sink *s, pa_idxset *in_formats) {
|
||||
pa_idxset *out_formats = pa_idxset_new(NULL, NULL), *sink_formats = NULL;
|
||||
pa_format_info *f_sink, *f_in;
|
||||
uint32_t i, j;
|
||||
|
||||
pa_assert(s);
|
||||
|
||||
if (!in_formats || pa_idxset_isempty(in_formats))
|
||||
goto done;
|
||||
|
||||
sink_formats = pa_sink_get_formats(s);
|
||||
|
||||
PA_IDXSET_FOREACH(f_sink, sink_formats, i) {
|
||||
PA_IDXSET_FOREACH(f_in, in_formats, j) {
|
||||
if (pa_format_info_is_compatible(f_sink, f_in))
|
||||
pa_idxset_put(out_formats, pa_format_info_copy(f_in), NULL);
|
||||
}
|
||||
}
|
||||
|
||||
done:
|
||||
if (sink_formats)
|
||||
pa_idxset_free(sink_formats, (pa_free2_cb_t) pa_format_info_free2, NULL);
|
||||
|
||||
return out_formats;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -161,7 +161,7 @@ struct pa_sink {
|
|||
* s->real_volume and/or s->soft_volume so that they together
|
||||
* match the actual hardware volume that will be set later in the
|
||||
* write_volume callback. */
|
||||
void (*set_volume)(pa_sink *s); /* dito */
|
||||
void (*set_volume)(pa_sink *s); /* ditto */
|
||||
|
||||
/* Sink drivers that set PA_SINK_SYNC_VOLUME must provide this
|
||||
* callback. This callback is not used with sinks that do not set
|
||||
|
|
@ -174,30 +174,34 @@ struct pa_sink {
|
|||
* not called automatically - it is the driver's responsibility to
|
||||
* schedule that function to be called at the right times in the
|
||||
* IO thread. */
|
||||
void (*write_volume)(pa_sink *s); /* dito */
|
||||
void (*write_volume)(pa_sink *s); /* ditto */
|
||||
|
||||
/* Called when the mute setting is queried. A PA_SINK_MESSAGE_GET_MUTE
|
||||
* message will also be sent. Called from IO thread if PA_SINK_SYNC_VOLUME
|
||||
* flag is set otherwise from main loop context. If refresh_mute is FALSE
|
||||
* neither this function is called nor a message is sent.*/
|
||||
void (*get_mute)(pa_sink *s); /* dito */
|
||||
void (*get_mute)(pa_sink *s); /* ditto */
|
||||
|
||||
/* Called when the mute setting shall be changed. A PA_SINK_MESSAGE_SET_MUTE
|
||||
* message will also be sent. Called from IO thread if PA_SINK_SYNC_VOLUME
|
||||
* flag is set otherwise from main loop context. */
|
||||
void (*set_mute)(pa_sink *s); /* dito */
|
||||
void (*set_mute)(pa_sink *s); /* ditto */
|
||||
|
||||
/* Called when a rewind request is issued. Called from IO thread
|
||||
* context. */
|
||||
void (*request_rewind)(pa_sink *s); /* dito */
|
||||
void (*request_rewind)(pa_sink *s); /* ditto */
|
||||
|
||||
/* Called when a the requested latency is changed. Called from IO
|
||||
* thread context. */
|
||||
void (*update_requested_latency)(pa_sink *s); /* dito */
|
||||
void (*update_requested_latency)(pa_sink *s); /* ditto */
|
||||
|
||||
/* Called whenever the port shall be changed. Called from main
|
||||
* thread. */
|
||||
int (*set_port)(pa_sink *s, pa_device_port *port); /* dito */
|
||||
int (*set_port)(pa_sink *s, pa_device_port *port); /* ditto */
|
||||
|
||||
/* Called to get the list of formats supported by the sink, sorted
|
||||
* in descending order of preference. */
|
||||
pa_idxset* (*get_formats)(pa_sink *s); /* ditto */
|
||||
|
||||
/* Contains copies of the above data so that the real-time worker
|
||||
* thread can work without access locking */
|
||||
|
|
@ -378,6 +382,10 @@ int pa_sink_suspend_all(pa_core *c, pa_bool_t suspend, pa_suspend_cause_t cause)
|
|||
/* Use this instead of checking s->flags & PA_SINK_FLAT_VOLUME directly. */
|
||||
pa_bool_t pa_sink_flat_volume_enabled(pa_sink *s);
|
||||
|
||||
/* Is the sink in passthrough mode? (that is, is there a passthrough sink input
|
||||
* connected to this sink? */
|
||||
pa_bool_t pa_sink_is_passthrough(pa_sink *s);
|
||||
|
||||
void pa_sink_set_volume(pa_sink *sink, const pa_cvolume *volume, pa_bool_t sendmsg, pa_bool_t save);
|
||||
const pa_cvolume *pa_sink_get_volume(pa_sink *sink, pa_bool_t force_refresh);
|
||||
|
||||
|
|
@ -398,6 +406,10 @@ pa_queue *pa_sink_move_all_start(pa_sink *s, pa_queue *q);
|
|||
void pa_sink_move_all_finish(pa_sink *s, pa_queue *q, pa_bool_t save);
|
||||
void pa_sink_move_all_fail(pa_queue *q);
|
||||
|
||||
pa_idxset* pa_sink_get_formats(pa_sink *s);
|
||||
pa_bool_t pa_sink_check_format(pa_sink *s, pa_format_info *f);
|
||||
pa_idxset* pa_sink_check_formats(pa_sink *s, pa_idxset *in_formats);
|
||||
|
||||
/*** To be called exclusively by the sink driver, from IO context */
|
||||
|
||||
void pa_sink_render(pa_sink*s, size_t length, pa_memchunk *result);
|
||||
|
|
|
|||
|
|
@ -299,7 +299,7 @@ int pa_play_file(
|
|||
u->readf_function = pa_sndfile_readf_function(&ss);
|
||||
|
||||
pa_sink_input_new_data_init(&data);
|
||||
data.sink = sink;
|
||||
pa_sink_input_new_data_set_sink(&data, sink, FALSE);
|
||||
data.driver = __FILE__;
|
||||
pa_sink_input_new_data_set_sample_spec(&data, &ss);
|
||||
pa_sink_input_new_data_set_channel_map(&data, &cm);
|
||||
|
|
|
|||
|
|
@ -514,7 +514,7 @@ int pa_source_suspend(pa_source *s, pa_bool_t suspend, pa_suspend_cause_t cause)
|
|||
pa_assert(PA_SOURCE_IS_LINKED(s->state));
|
||||
pa_assert(cause != 0);
|
||||
|
||||
if (s->monitor_of)
|
||||
if (s->monitor_of && cause != PA_SUSPEND_PASSTHROUGH)
|
||||
return -PA_ERR_NOTSUPPORTED;
|
||||
|
||||
if (suspend)
|
||||
|
|
|
|||
|
|
@ -291,6 +291,17 @@ void pa_tagstruct_put_proplist(pa_tagstruct *t, pa_proplist *p) {
|
|||
pa_tagstruct_puts(t, NULL);
|
||||
}
|
||||
|
||||
void pa_tagstruct_put_format_info(pa_tagstruct *t, pa_format_info *f) {
|
||||
pa_assert(t);
|
||||
pa_assert(f);
|
||||
|
||||
extend(t, 1);
|
||||
|
||||
t->data[t->length++] = PA_TAG_FORMAT_INFO;
|
||||
pa_tagstruct_putu8(t, (uint8_t) f->encoding);
|
||||
pa_tagstruct_put_proplist(t, f->plist);
|
||||
}
|
||||
|
||||
int pa_tagstruct_gets(pa_tagstruct*t, const char **s) {
|
||||
int error = 0;
|
||||
size_t n;
|
||||
|
|
@ -631,6 +642,37 @@ fail:
|
|||
return -1;
|
||||
}
|
||||
|
||||
int pa_tagstruct_get_format_info(pa_tagstruct *t, pa_format_info *f) {
|
||||
size_t saved_rindex;
|
||||
uint8_t encoding;
|
||||
|
||||
pa_assert(t);
|
||||
pa_assert(f);
|
||||
|
||||
if (t->rindex+1 > t->length)
|
||||
return -1;
|
||||
|
||||
if (t->data[t->rindex] != PA_TAG_FORMAT_INFO)
|
||||
return -1;
|
||||
|
||||
saved_rindex = t->rindex;
|
||||
t->rindex++;
|
||||
|
||||
if (pa_tagstruct_getu8(t, &encoding) < 0)
|
||||
goto fail;
|
||||
|
||||
f->encoding = encoding;
|
||||
|
||||
if (pa_tagstruct_get_proplist(t, f->plist) < 0)
|
||||
goto fail;
|
||||
|
||||
return 0;
|
||||
|
||||
fail:
|
||||
t->rindex = saved_rindex;
|
||||
return -1;
|
||||
}
|
||||
|
||||
void pa_tagstruct_put(pa_tagstruct *t, ...) {
|
||||
va_list va;
|
||||
pa_assert(t);
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@
|
|||
#include <sys/time.h>
|
||||
|
||||
#include <pulse/sample.h>
|
||||
#include <pulse/format.h>
|
||||
#include <pulse/channelmap.h>
|
||||
#include <pulse/volume.h>
|
||||
#include <pulse/proplist.h>
|
||||
|
|
@ -58,7 +59,8 @@ enum {
|
|||
PA_TAG_CHANNEL_MAP = 'm',
|
||||
PA_TAG_CVOLUME = 'v',
|
||||
PA_TAG_PROPLIST = 'P',
|
||||
PA_TAG_VOLUME = 'V'
|
||||
PA_TAG_VOLUME = 'V',
|
||||
PA_TAG_FORMAT_INFO = 'f',
|
||||
};
|
||||
|
||||
pa_tagstruct *pa_tagstruct_new(const uint8_t* data, size_t length);
|
||||
|
|
@ -84,6 +86,7 @@ void pa_tagstruct_put_channel_map(pa_tagstruct *t, const pa_channel_map *map);
|
|||
void pa_tagstruct_put_cvolume(pa_tagstruct *t, const pa_cvolume *cvolume);
|
||||
void pa_tagstruct_put_proplist(pa_tagstruct *t, pa_proplist *p);
|
||||
void pa_tagstruct_put_volume(pa_tagstruct *t, pa_volume_t volume);
|
||||
void pa_tagstruct_put_format_info(pa_tagstruct *t, pa_format_info *f);
|
||||
|
||||
int pa_tagstruct_get(pa_tagstruct *t, ...);
|
||||
|
||||
|
|
@ -101,5 +104,6 @@ int pa_tagstruct_get_channel_map(pa_tagstruct *t, pa_channel_map *map);
|
|||
int pa_tagstruct_get_cvolume(pa_tagstruct *t, pa_cvolume *v);
|
||||
int pa_tagstruct_get_proplist(pa_tagstruct *t, pa_proplist *p);
|
||||
int pa_tagstruct_get_volume(pa_tagstruct *t, pa_volume_t *v);
|
||||
int pa_tagstruct_get_format_info(pa_tagstruct *t, pa_format_info *f);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue