⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cdm_set_3.cc

📁 这是处理语音信号的程序
💻 CC
字号:
// file: cdm_set_3.cc//// isip include files//#include "cd_model.h"#include "cd_model_constants.h"//#include <string.h>// method: set_phones_cc//// arguments://   char_1** phn: (input) input phones//// return : a logical value indicating status//// this method sets the phones in the cd_model//logical_1 Cd_model::set_phones_cc(char_1** phn_a) {  // copy the input phone list to the phone list in the cd_model  // copy a CDM_EMPTY_PHN if certain phone doesn't exist  //  for(int i=0;i<CDM_DEFAULT_PH_SIZE;i++) {    if(phn_a[i] != (char_1*)NULL) {      strcpy((char*)phones_d[i],(char*)phn_a[i]);    }    else {      strcpy((char*)phones_d[i], (char*)CDM_EMPTY_PHN);    }  }    // exist gracefully  //  return ISIP_TRUE;}

⌨️ 快捷键说明

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