td_vr_training_types.h

来自「Motorola synergy audio component」· C头文件 代码 · 共 84 行

H
84
字号
#ifndef TD_VR_TRAINING_TYPES_INCLUDE#define	TD_VR_TRAINING_TYPES_INCLUDE/*(c) Copyright Motorola 1997, All rights reserved.Motorola Confidential ProprietaryContains confidential proprietary information of Motorola, Inc.Reverse engineering is prohibited.The copyright notice does not imply publication.*/#ifdef __cplusplus  /* allow #include in a C++ file */extern "C" {#endif/*DESCRIPTION: This file defines the training types used for training speaker dependentvoice recognition model.*//******************************* REVISION HISTORY ******************************    Date        Author      Reference Number    ========    ========    ================    97.05.15    slam        PR - CSGce10240    97.05.29    slam        PR - CSGce10240                            Add VR_INVALID_TRAIN_TYPE.    97.06.05    slam        PR - CSGce10240                            Add definitions for training mask based on                            number of repetitions used.*******************************************************************************//* INCLUDES *//*************************************************************************** *//* code *//*************************************************************************** */enum{    /* DSP uses all utterances specified in the repetition array for        training.    */	VR_TRAIN_ALL = 0,              /* 0 */     /* DSP decides the best utterances specified in the repetition array       and uses those for training.    */	VR_TRAIN_BEST,                 /* 1 , 0x01 */    /* Invalid training type */	VR_INVALID_TRAIN_TYPE = 0xff   /* 0xff */ };typedef UINT8 TD_VR_TRAINING_TYPE;/* mask specifying to use repetition 0 and repetition 1 for model training */#define TD_VR_TRAIN_2_REPETITIONS_MASK	0x3/*    mask specifying to use repetition 0, repetition 1 and repetition 2   for model training */#define TD_VR_TRAIN_3_REPETITIONS_MASK	0x7#ifdef __cplusplus}#endif#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?