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

📄 dec_hist_1.cc

📁 这是处理语音信号的程序
💻 CC
字号:
// file: dec_hist_1.cc//// isip include files//#include "decoder.h"#include "decoder_constants.h" // method: set_hist_length_cc//// arguments://// return: logical_1 indicating status//// this method determines and sets the length of each history,// this has to be done after the function mode and the ngram_order_d being set//logical_1 Decoder::set_hist_length_cc() {   if ((function_mode_d == DEC_LATTICE_RESCORE_FUNCTION) ||       (function_mode_d == DEC_LATTICE_LATTICE_FUNCTION) ||       (function_mode_d == DEC_FORCE_ALIGN_FUNCTION)) {          History::set_hist_len_cc((int_4)1);   }   else {     History::set_hist_len_cc(ngram_order_d - 1);   }      // exit gracefully   //   return ISIP_TRUE;}

⌨️ 快捷键说明

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