mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2026-03-06 01:40:09 -05:00
topology: add support for pasring external ops in conf files
Parsing external ops was missing from the conf files but was in the C API. Fix this now by making sure we also check for external ops. Signed-off-by: Liam Girdwood <liam.r.girdwood@linux.intel.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
65cb4ffe3c
commit
d1784ad804
3 changed files with 48 additions and 0 deletions
|
|
@ -393,6 +393,14 @@ int tplg_parse_control_bytes(snd_tplg_t *tplg,
|
|||
return err;
|
||||
continue;
|
||||
}
|
||||
|
||||
if (strcmp(id, "extops") == 0) {
|
||||
err = tplg_parse_compound(tplg, n, tplg_parse_ext_ops,
|
||||
be);
|
||||
if (err < 0)
|
||||
return err;
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue