mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-12 13:30:10 -05:00
sink-input: add a new API pa_sink_input_set_preferred_sink
If the sink here is NULL, that means users want to clear the preferred_sink and move the sink-input to the default_sink, otherwise set the preferred_sink to the sink->name and move the sink-input to the sink. After that fire the sink_input_change event. After adding this API, we can use this API to simplify the entry_apply in the module-stream-restore.c. Signed-off-by: Hui Wang <hui.wang@canonical.com>
This commit is contained in:
parent
fbf8716685
commit
24d5d180b8
3 changed files with 18 additions and 8 deletions
|
|
@ -461,6 +461,8 @@ void pa_sink_input_set_volume_direct(pa_sink_input *i, const pa_cvolume *volume)
|
|||
* i->reference_ratio and logs a message if the value changes. */
|
||||
void pa_sink_input_set_reference_ratio(pa_sink_input *i, const pa_cvolume *ratio);
|
||||
|
||||
void pa_sink_input_set_preferred_sink(pa_sink_input *i, pa_sink *s);
|
||||
|
||||
#define pa_sink_input_assert_io_context(s) \
|
||||
pa_assert(pa_thread_mq_get() || !PA_SINK_INPUT_IS_LINKED((s)->state))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue