mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-13 13:29:58 -05:00
daemon.conf: Add boolean rescue_streams parameter
Since merge requests https://gitlab.freedesktop.org/pulseaudio/pulseaudio/merge_requests/209 and https://gitlab.freedesktop.org/pulseaudio/pulseaudio/merge_requests/216 the rescuing of streams could no longer be disabled. This patch adds a boolean parameter rescue-streams to daemon.conf which allows to disable rescuing. The parameter defaults to true (rescuing enabled).
This commit is contained in:
parent
97d0eda256
commit
b72f295597
11 changed files with 29 additions and 10 deletions
|
|
@ -105,9 +105,10 @@ void pa_device_port_set_available(pa_device_port *p, pa_available_t status) {
|
|||
|
||||
sink = pa_device_port_get_sink(p);
|
||||
if (sink && p == sink->active_port) {
|
||||
if (sink->active_port->available == PA_AVAILABLE_NO)
|
||||
pa_sink_move_streams_to_default_sink(p->core, sink, false);
|
||||
else
|
||||
if (sink->active_port->available == PA_AVAILABLE_NO) {
|
||||
if (p->core->rescue_streams)
|
||||
pa_sink_move_streams_to_default_sink(p->core, sink, false);
|
||||
} else
|
||||
pa_core_move_streams_to_newly_available_preferred_sink(p->core, sink);
|
||||
}
|
||||
} else {
|
||||
|
|
@ -115,9 +116,10 @@ void pa_device_port_set_available(pa_device_port *p, pa_available_t status) {
|
|||
|
||||
source = pa_device_port_get_source(p);
|
||||
if (source && p == source->active_port) {
|
||||
if (source->active_port->available == PA_AVAILABLE_NO)
|
||||
pa_source_move_streams_to_default_source(p->core, source, false);
|
||||
else
|
||||
if (source->active_port->available == PA_AVAILABLE_NO) {
|
||||
if (p->core->rescue_streams)
|
||||
pa_source_move_streams_to_default_source(p->core, source, false);
|
||||
} else
|
||||
pa_core_move_streams_to_newly_available_preferred_source(p->core, source);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue