mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-04 13:29:59 -05:00
card: Add variables for splitting up a profile
It can be useful for routing modules to know a profile's input and output parts, in order to e g change output profile while keeping the input profile unchanged. For now filling in these fields is optional and a routing module must be able to handle NULL in these fields. Signed-off-by: David Henningsson <david.henningsson@canonical.com>
This commit is contained in:
parent
a01354db00
commit
b9818b016f
2 changed files with 10 additions and 0 deletions
|
|
@ -52,6 +52,8 @@ pa_card_profile *pa_card_profile_new(const char *name, const char *description,
|
|||
void pa_card_profile_free(pa_card_profile *c) {
|
||||
pa_assert(c);
|
||||
|
||||
pa_xfree(c->input_name);
|
||||
pa_xfree(c->output_name);
|
||||
pa_xfree(c->name);
|
||||
pa_xfree(c->description);
|
||||
pa_xfree(c);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue