audscm_sdsr_ind.h
来自「Motorola synergy audio component」· C头文件 代码 · 共 97 行
H
97 行
#ifndef AUDSCM_SDSR_IND_INCLUDE#define AUDSCM_SDSR_IND_INCLUDE/* (c) Copyright Motorola 1997, All rights reserved. Motorola Confidential Proprietary Contains confidential proprietary information of Motorola, Inc. Reverse engineering is prohibited. The copyright notice does not imply publication.*/#ifdef __cplusplusextern "C" {#endif/* DESCRIPTION: This file defines the data structure for speech coder indication to Audio Manager when a capture of an utterance for the speaker dependent voice recognition training is completed. / ******************************* REVISION HISTORY *************************** Date Author Reference Number ======== ======== ================ 00-04-16 Dale Noble CR - 55011 Removed include of std_def.h replaced with suapi.h 00.02.9 wchoi PR - csgce48312_il93a_wchoi Merged all audscm_sdsr structs into one file and cleaned up the atso vobs *****************************************************************************/#include "td_vr_defs.h"#ifndef SUAPI_INCLUDE#include <SUAPI/suapi.h>#endif#include "td_dsp_aud_reply_buff.h"typedef struct{ AUD_DSP_REPLY_MSG_HEADER header; /* Speech Coder Manager primitive header */ UINT16 error_code; /* Error code; 0 if no error */ } AUDSCM_SDSR_CAPTURE_COMPLETE_IND;typedef AUDSCM_SDSR_CAPTURE_COMPLETE_IND AUDSCM_SDSR_DELETE_COMPLETE_IND;typedef struct{ AUD_DSP_REPLY_MSG_HEADER header; /* Speech Coder Manager primitive header */ UINT16 error_code; /* Error code; 0 if no error */ /* Array of up to N-best matching word tags (model IDs). These words are indices relative to the chosen group. The maximum number of N-best matching words allowed is TD_VR_MAX_NBEST_MODELS. */ UINT16 word_array[ TD_VR_MAX_NBEST_MODELS ]; } AUDSCM_SDSR_COMPLETE_IND;typedef struct{ AUD_DSP_REPLY_MSG_HEADER header; /* Speech Coder Manager primitive header */ UINT16 error_code; /* error code */ /* Bit array indicating which model IDs within the chosen group is active. The right most bit of the first word of the array corresponds to model ID 0. Bit is set to 1 if the model is active, 0 if inactive. */ UINT16 active_bit_array[ TD_VR_MAX_ACTIVE_ARRAY_SIZE ]; } AUDSCM_SDSR_MODEL_ID_IND;typedef struct{ AUD_DSP_REPLY_MSG_HEADER header; /* Speech Coder Manager primitive header */ UINT8 warning_code; /* Warning code; 0 if no warning */ UINT8 error_code; /* Error code; 0 if no error */ UINT16 model_id; /* Identifier of the newly trained speaker dependent model */ } AUDSCM_SDSR_TRAIN_COMPLETE_IND;#ifdef __cplusplus}#endif#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?