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

📄 convert_mmf.h

📁 这是处理语音信号的程序
💻 H
字号:
// file: convert_mmf.h// // make sure this file is only included once//#ifndef __ISIP_CONVERT_MMF#define __ISIP_CONVERT_MMF// isip include files//#ifndef __ISIP_INTEGRAL#include <integral.h>#endif#ifndef __ISIP_TRAIN_STATE#include <train_state.h>#endif// define external functions//// define the function to parse the command linelogical_1 get_params_cc(int_4 argc, char_1** argv,			int_4& input_mode_flag, int_4& output_mode_flag,			char_1* input_file, char_1* output_file);// define read functions//Train_State** read_states_cc(int_4 read_mode, int_4& num_st, int_4& num_feat,			     char_1* file);Train_State** read_states_ascii_cc(int_4& num_st, int_4& num_feat,				   char_1* file);Train_State** read_states_bin_cc(int_4& num_st, int_4& num_feat, char_1* file);  // define write functions//logical_1 write_states_cc(int_4 write_mode, int_4 num_st, int_4 num_feat,			  char_1* st_file, Train_State** state_list);logical_1 write_states_ascii_cc(int_4 num_st, int_4 num_feat,				char_1* st_file, Train_State** state_list);logical_1 write_states_bin_cc(int_4 num_st, int_4 num_feat,			      char_1* st_file, Train_State** state_list);  // end of file//#endif

⌨️ 快捷键说明

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