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

📄 tr_tr_ref_4.cc

📁 这是处理语音信号的程序
💻 CC
字号:
// file: tr_tr_ref_4.cc//// isip include files//#include "train_trace.h"#include "train_trace_constants.h"// method: incr_ref_path_cc//// arguments://  int_4 value: (input) the update value//// return: a logical_1 indicating status//// this method sets the reference count up or down by value for the// whole path//logical_1 Train_Trace::incr_ref_path_cc(int_4 value_a) {  // if this is not the sentence start trace  //  if (back_ptr_d != (Train_Trace**)NULL) {    // update ref count    //    ref_count_d += value_a;    // loop over all backpointers and update respective reference counts    //    for (int_4 i = 0; (i < backptr_size_d) &&	   (back_ptr_d[i] != (Train_Trace*)NULL); i++) {      back_ptr_d[i]->incr_ref_path_cc(value_a);    }  } // end if loop      // exit gracefully  //  return ISIP_TRUE;}

⌨️ 快捷键说明

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