mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-10-29 05:40:23 -04:00
card: Move pa_card_add_profile() implementation to a more logical place
The old place was in the middle of pa_card_new_data functions, which made no sense.
This commit is contained in:
parent
37429cb07e
commit
b28ebd57f5
1 changed files with 13 additions and 13 deletions
|
|
@ -101,19 +101,6 @@ void pa_card_new_data_set_name(pa_card_new_data *data, const char *name) {
|
|||
data->name = pa_xstrdup(name);
|
||||
}
|
||||
|
||||
void pa_card_add_profile(pa_card *c, pa_card_profile *profile) {
|
||||
pa_assert(c);
|
||||
pa_assert(profile);
|
||||
|
||||
/* take ownership of the profile */
|
||||
pa_assert_se(pa_hashmap_put(c->profiles, profile->name, profile) >= 0);
|
||||
profile->card = c;
|
||||
|
||||
pa_subscription_post(c->core, PA_SUBSCRIPTION_EVENT_CARD|PA_SUBSCRIPTION_EVENT_CHANGE, c->index);
|
||||
|
||||
pa_hook_fire(&c->core->hooks[PA_CORE_HOOK_CARD_PROFILE_ADDED], profile);
|
||||
}
|
||||
|
||||
void pa_card_new_data_set_profile(pa_card_new_data *data, const char *profile) {
|
||||
pa_assert(data);
|
||||
|
||||
|
|
@ -250,6 +237,19 @@ void pa_card_free(pa_card *c) {
|
|||
pa_xfree(c);
|
||||
}
|
||||
|
||||
void pa_card_add_profile(pa_card *c, pa_card_profile *profile) {
|
||||
pa_assert(c);
|
||||
pa_assert(profile);
|
||||
|
||||
/* take ownership of the profile */
|
||||
pa_assert_se(pa_hashmap_put(c->profiles, profile->name, profile) >= 0);
|
||||
profile->card = c;
|
||||
|
||||
pa_subscription_post(c->core, PA_SUBSCRIPTION_EVENT_CARD|PA_SUBSCRIPTION_EVENT_CHANGE, c->index);
|
||||
|
||||
pa_hook_fire(&c->core->hooks[PA_CORE_HOOK_CARD_PROFILE_ADDED], profile);
|
||||
}
|
||||
|
||||
int pa_card_set_profile(pa_card *c, pa_card_profile *profile, bool save) {
|
||||
int r;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue