mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-03 09:01:54 -05:00
pulse: fix counter while populating card_info profiles
This commit is contained in:
parent
ba57de9b81
commit
715be5dfe7
1 changed files with 1 additions and 1 deletions
|
|
@ -1262,7 +1262,6 @@ static void card_callback(struct card_data *d)
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
j = i->n_profiles++;
|
|
||||||
i->profiles[j].name = name;
|
i->profiles[j].name = name;
|
||||||
i->profiles[j].description = name;
|
i->profiles[j].description = name;
|
||||||
i->profiles[j].n_sinks = 1;
|
i->profiles[j].n_sinks = 1;
|
||||||
|
|
@ -1281,6 +1280,7 @@ static void card_callback(struct card_data *d)
|
||||||
i->active_profile = &i->profiles[j];
|
i->active_profile = &i->profiles[j];
|
||||||
i->active_profile2 = i->profiles2[j];
|
i->active_profile2 = i->profiles2[j];
|
||||||
}
|
}
|
||||||
|
j = ++i->n_profiles;
|
||||||
}
|
}
|
||||||
i->profiles2[j] = NULL;
|
i->profiles2[j] = NULL;
|
||||||
d->cb(d->context, i, 0, d->userdata);
|
d->cb(d->context, i, 0, d->userdata);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue