mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-12-19 08:57:00 -05:00
Allow passing a NULL proplist to pa_xxxx_update_proplist() to just fire a notification
This commit is contained in:
parent
e335b3d6ca
commit
3bccb704b6
3 changed files with 7 additions and 8 deletions
|
|
@ -943,9 +943,9 @@ pa_bool_t pa_sink_input_get_mute(pa_sink_input *i) {
|
|||
/* Called from main thread */
|
||||
void pa_sink_input_update_proplist(pa_sink_input *i, pa_update_mode_t mode, pa_proplist *p) {
|
||||
pa_sink_input_assert_ref(i);
|
||||
pa_assert(p);
|
||||
|
||||
pa_proplist_update(i->proplist, mode, p);
|
||||
if (p)
|
||||
pa_proplist_update(i->proplist, mode, p);
|
||||
|
||||
if (PA_SINK_IS_LINKED(i->state)) {
|
||||
pa_hook_fire(&i->core->hooks[PA_CORE_HOOK_SINK_INPUT_PROPLIST_CHANGED], i);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue