Tools: Testbench: Add TDFB component UUID information

This patch adds the needed information to testbench to load the
TDFB component.

Signed-off-by: Seppo Ingalsuo <seppo.ingalsuo@linux.intel.com>
This commit is contained in:
Seppo Ingalsuo 2020-09-08 19:44:25 +03:00 committed by Liam Girdwood
parent ba3539b5f8
commit 1ad7503299
2 changed files with 6 additions and 2 deletions

View File

@ -23,7 +23,7 @@
#define MAX_OUTPUT_FILE_NUM 4
/* number of widgets types supported in testbench */
#define NUM_WIDGETS_SUPPORTED 8
#define NUM_WIDGETS_SUPPORTED 9
struct testbench_prm {
char *tplg_file; /* topology file to use */

View File

@ -27,6 +27,9 @@
DECLARE_SOF_TB_UUID("crossover", crossover_uuid, 0x948c9ad1, 0x806a, 0x4131,
0xad, 0x6c, 0xb2, 0xbd, 0xa9, 0xe3, 0x5a, 0x9f);
DECLARE_SOF_TB_UUID("tdfb", tdfb_uuid, 0xdd511749, 0xd9fa, 0x455c,
0xb3, 0xa7, 0x13, 0x58, 0x56, 0x93, 0xf1, 0xaf);
#define TESTBENCH_NCH 2 /* Stereo */
/* shared library look up table */
@ -38,7 +41,8 @@ struct shared_lib_table lib_table[NUM_WIDGETS_SUPPORTED] = {
{"eq-fir", "libsof_eq-fir.so", SOF_COMP_EQ_FIR, NULL, 0, NULL},
{"eq-iir", "libsof_eq-iir.so", SOF_COMP_EQ_IIR, NULL, 0, NULL},
{"dcblock", "libsof_dcblock.so", SOF_COMP_DCBLOCK, NULL, 0, NULL},
{"crossover", "libsof_crossover.so", SOF_COMP_NONE, SOF_TB_UUID(crossover_uuid), 0, NULL}
{"crossover", "libsof_crossover.so", SOF_COMP_NONE, SOF_TB_UUID(crossover_uuid), 0, NULL},
{"tdfb", "libsof_tdfb.so", SOF_COMP_NONE, SOF_TB_UUID(tdfb_uuid), 0, NULL},
};
/* main firmware context */