Allow passing a NULL proplist to pa_xxxx_update_proplist() to just fire a notification

This commit is contained in:
Lennart Poettering 2009-02-22 05:01:32 +01:00
parent e335b3d6ca
commit 3bccb704b6
3 changed files with 7 additions and 8 deletions

View file

@ -132,14 +132,13 @@ void pa_client_set_name(pa_client *c, const char *name) {
pa_log_info("Client %u changed name from \"%s\" to \"%s\"", c->index, pa_strnull(pa_proplist_gets(c->proplist, PA_PROP_APPLICATION_NAME)), name); pa_log_info("Client %u changed name from \"%s\" to \"%s\"", c->index, pa_strnull(pa_proplist_gets(c->proplist, PA_PROP_APPLICATION_NAME)), name);
pa_proplist_sets(c->proplist, PA_PROP_APPLICATION_NAME, name); pa_proplist_sets(c->proplist, PA_PROP_APPLICATION_NAME, name);
pa_hook_fire(&c->core->hooks[PA_CORE_HOOK_CLIENT_PROPLIST_CHANGED], c); pa_client_update_proplist(c, 0, NULL);
pa_subscription_post(c->core, PA_SUBSCRIPTION_EVENT_CLIENT|PA_SUBSCRIPTION_EVENT_CHANGE, c->index);
} }
void pa_client_update_proplist(pa_client *c, pa_update_mode_t mode, pa_proplist *p) { void pa_client_update_proplist(pa_client *c, pa_update_mode_t mode, pa_proplist *p) {
pa_assert(c); pa_assert(c);
pa_assert(p);
if (p)
pa_proplist_update(c->proplist, mode, p); pa_proplist_update(c->proplist, mode, p);
pa_hook_fire(&c->core->hooks[PA_CORE_HOOK_CLIENT_PROPLIST_CHANGED], c); pa_hook_fire(&c->core->hooks[PA_CORE_HOOK_CLIENT_PROPLIST_CHANGED], c);

View file

@ -943,8 +943,8 @@ pa_bool_t pa_sink_input_get_mute(pa_sink_input *i) {
/* Called from main thread */ /* Called from main thread */
void pa_sink_input_update_proplist(pa_sink_input *i, pa_update_mode_t mode, pa_proplist *p) { 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_sink_input_assert_ref(i);
pa_assert(p);
if (p)
pa_proplist_update(i->proplist, mode, p); pa_proplist_update(i->proplist, mode, p);
if (PA_SINK_IS_LINKED(i->state)) { if (PA_SINK_IS_LINKED(i->state)) {

View file

@ -618,8 +618,8 @@ void pa_source_output_set_name(pa_source_output *o, const char *name) {
/* Called from main thread */ /* Called from main thread */
void pa_source_output_update_proplist(pa_source_output *o, pa_update_mode_t mode, pa_proplist *p) { void pa_source_output_update_proplist(pa_source_output *o, pa_update_mode_t mode, pa_proplist *p) {
pa_source_output_assert_ref(o); pa_source_output_assert_ref(o);
pa_assert(p);
if (p)
pa_proplist_update(o->proplist, mode, p); pa_proplist_update(o->proplist, mode, p);
if (PA_SINK_IS_LINKED(o->state)) { if (PA_SINK_IS_LINKED(o->state)) {