sdb_00.cc

来自「这是一个从音频信号里提取特征参量的程序」· CC 代码 · 共 61 行

CC
61
字号
// file: $isip/class/shell/Sdb/sdb_00.cc// version: $Id: sdb_00.cc,v 1.5 2001/03/26 13:30:11 duncan Exp $//// isip include files// #include "Sdb.h"// method: default constructor//// arguments: none//// return: none//Sdb::Sdb() {  // initialize the data  //  output_extension_d.assign(Filename::DEF_EXTENSION);  lookahead_d = DEF_LOOKAHEAD;  at_first_d = true;    // initialize the internal stacks  //  fps_d.setAllocationMode(DstrBase::USER);  tags_d.setAllocationMode(DstrBase::SYSTEM);  nums_d.setAllocationMode(DstrBase::SYSTEM);    // exit gracefully  //}//-----------------------------------------------------------------------------//// we define non-integral constants in the default constructor//      //----------------------------------------------------------------------------// constants: required constants such as the class name//const String Sdb::CLASS_NAME(L"Sdb");// constants: default arguments//const String Sdb::DEF_OUT_DIR(L"");// constants: required constants for i/o methods//const String Sdb::DEF_PARAM(L"files");// constants: indicate file lists in the Sdb lists//const String Sdb::LIST_FILE_MARKER(L"(list) ");const String Sdb::LIST_FILE_OPTION(L"list");// static instantiations: debug level and memory manager//Integral::DEBUG Sdb::debug_level_d = Integral::NONE;MemoryManager Sdb::mgr_d(sizeof(Sdb), Sdb::name());

⌨️ 快捷键说明

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