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

📄 tr_phn_debug_0.cc

📁 这是处理语音信号的程序
💻 CC
字号:
// file: tr_phn_debug_0.cc// // isip include files//#include "train_phone.h"#include "train_phone_constants.h"// method: debug_cc//// arguments://  FILE* fp: (input) file pointer used for output//  char_1* message: (input) a message concatenated to each debug message//// return: a logical_1 value indicating status//// this method displays the values of all internal data//logical_1 Train_Phone::debug_cc(FILE* fp_a, char_1* message_a) {  // dump the name and number of constituent monophones  //  fprintf(fp_a, "%s::%s: name_d = %s\n", TRAIN_PHN_CLASS_NAME, message_a, name_d);  fprintf(fp_a, "%s::%s: num_phones_d = %ld\n", TRAIN_PHN_CLASS_NAME, message_a,	  num_phones_d);  // output the monophones  //  fprintf(fp_a, "%s::%s: phones_d = %p\n", TRAIN_PHN_CLASS_NAME, message_a,	  phones_d);  for (int_4 i = 0; i < num_phones_d; i++) {    fprintf(fp_a, "%s::%s: phones_d[%ld] = %ld\n", TRAIN_PHN_CLASS_NAME,	    message_a, i, phones_d[i]);  }  // output the model  //  fprintf(fp_a, "%s::%s: model_d = %p\n", TRAIN_PHN_CLASS_NAME, message_a,	  model_d);  if (model_d != (Train_Model*)NULL) {    model_d->debug_cc(fp_a, message_a);  }    // exit gracefully  //  return ISIP_TRUE;}

⌨️ 快捷键说明

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