ipc: tplg: add effect type comp for keyword detect

Add keyword detect effect component type.

Signed-off-by: Liam Girdwood <liam.r.girdwood@linux.intel.com>
Signed-off-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
Signed-off-by: Slawomir Blauciak <slawomir.blauciak@linux.intel.com>
This commit is contained in:
Ranjani Sridharan 2019-02-12 20:05:09 -08:00 committed by Liam Girdwood
parent 76306470ce
commit 2748716bd5
2 changed files with 3 additions and 1 deletions

View File

@ -52,7 +52,7 @@
/** \brief SOF ABI version major, minor and patch numbers */
#define SOF_ABI_MAJOR 3
#define SOF_ABI_MINOR 5
#define SOF_ABI_MINOR 6
#define SOF_ABI_PATCH 0
/** \brief SOF ABI version number. Format within 32bit word is MMmmmppp */

View File

@ -66,6 +66,7 @@ enum sof_comp_type {
SOF_COMP_FILEWRITE, /**< host test based file IO */
SOF_COMP_KPB, /* A key phrase buffer component */
SOF_COMP_SELECTOR,
SOF_COMP_KEYWORD_DETECT,
};
/* XRUN action for component */
@ -215,6 +216,7 @@ enum sof_ipc_process_type {
SOF_PROCESS_NONE = 0, /**< None */
SOF_PROCESS_EQFIR, /**< Intel FIR */
SOF_PROCESS_EQIIR, /**< Intel IIR */
SOF_PROCESS_KEYWORD_DETECT, /**< Keyword Detection */
};
/* generic "effect", "codec" or proprietary processing component */