亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? connection.h

?? 這是一個從音頻信號里提取特征參量的程序
?? H
字號:
// file: $isip/class/algo/Connection/Connection.h// version: $Id: Connection.h,v 1.10 2002/07/02 19:14:31 gao Exp $//// make sure definitions are only made once//#ifndef ISIP_CONNECTION#define ISIP_CONNECTION// isip include files//#ifndef ISIP_ALGORITHM_BASE#include <AlgorithmBase.h>#endif#ifndef ISIP_LONG#include <Long.h>#endif#ifndef ISIP_MEMORY_MANAGER#include <MemoryManager.h>#endif// Connection: a class that allows users to combine and manipulate// multiple feature streams.//class Connection : public AlgorithmBase {  //---------------------------------------------------------------------------  //  // public constants  //  //---------------------------------------------------------------------------public:    // define the class name  //  static const String CLASS_NAME;  //----------------------------------------  //  // other important constants  //  //----------------------------------------  // define algorithm types  //  enum ALGORITHM { CHANNEL = 0, STREAM, DEF_ALGORITHM = CHANNEL };  // define implementation types  //  enum IMPLEMENTATION { CONCATENATE = 0, INTERLEAVE, SELECT,			DEF_IMPLEMENTATION = CONCATENATE };    // define a static NameMap object to get the name of algorithm  //  static const NameMap ALGO_MAP;  static const NameMap IMPL_MAP;  //----------------------------------------  //  // i/o related constants  //  //----------------------------------------  static const String DEF_PARAM;  static const String PARAM_ALGORITHM;  static const String PARAM_IMPLEMENTATION;  static const String PARAM_CHANNEL;  //----------------------------------------  //  // default values and arguments  //  //----------------------------------------    // define the default value(s) of the class data  //    // default arguments to methods  //    //----------------------------------------  //  // error codes  //  //----------------------------------------      static const long ERR = 72100;  static const long ERR_LENGTH = 72101;    //---------------------------------------------------------------------------  //  // protected data  //  //---------------------------------------------------------------------------protected:    // algorithm name  //  ALGORITHM algorithm_d;  // implementation name  //  IMPLEMENTATION implementation_d;  // channel specification  //  Long channel_d;    // memory manager  //  static MemoryManager mgr_d;  //---------------------------------------------------------------------------  //  // required public methods  //  //---------------------------------------------------------------------------public:      // method: name  //  static const String& name() {    return CLASS_NAME;  }    // other static methods  //  static boolean diagnose(Integral::DEBUG debug_level);    // debug methods:  //  setDebug is inherited from the base class  //  boolean debug(const unichar* msg) const;  // method: destructor  //  ~Connection() {}    // method: default constructor  //  Connection(ALGORITHM algorithm = DEF_ALGORITHM,	     IMPLEMENTATION implementation = DEF_IMPLEMENTATION) {    algorithm_d = algorithm;    implementation_d = implementation;  }  // method: copy constructor  //  Connection(const Connection& arg) {    algorithm_d = DEF_ALGORITHM;    implementation_d = DEF_IMPLEMENTATION;    assign(arg);  }    // method: assign  //  boolean assign(const Connection& arg) {    algorithm_d = arg.algorithm_d;    implementation_d = arg.implementation_d;    return AlgorithmBase::assign(arg);  }  // method: operator=  //  Connection& operator= (const Connection& arg) {    assign(arg);    return *this;  }      // i/o methods  //  long sofSize() const;    boolean read(Sof& sof, long tag, const String& name = CLASS_NAME);  boolean write(Sof& sof, long tag, const String& name = CLASS_NAME) const;  boolean readData(Sof& sof, const String& pname = DEF_PARAM,		   long size = SofParser::FULL_OBJECT,		   boolean param = true, boolean nested = false);  boolean writeData(Sof& sof, const String& pname = DEF_PARAM) const;    // method: eq  //  boolean eq(const Connection& arg) const {    return ((algorithm_d == arg.algorithm_d) &&	    (implementation_d == arg.implementation_d));  }    // method: new  //  static void* operator new(size_t size) {    return mgr_d.get();  }  // method: new[]  //    static void* operator new[](size_t size) {    return mgr_d.getBlock(size);  }  // method: delete  //  static void operator delete(void* ptr) {    mgr_d.release(ptr);  }  // method: delete[]  //  static void operator delete[](void* ptr) {    mgr_d.releaseBlock(ptr);      }    // method: setGrowSize  //  static boolean setGrowSize(long grow_size) {    return mgr_d.setGrow(grow_size);  }  // method: clear  //  boolean clear(Integral::CMODE ctype = Integral::DEF_CMODE) {    if (ctype != Integral::RETAIN) {      algorithm_d = DEF_ALGORITHM;      implementation_d = DEF_IMPLEMENTATION;    }    return AlgorithmBase::clear(ctype);  }  //---------------------------------------------------------------------------  //  // class-specific public methods:  //  set methods  //  //---------------------------------------------------------------------------  // method: setAlgorithm  //  boolean setAlgorithm(ALGORITHM algorithm) {    algorithm_d = algorithm;    is_valid_d = false;        return true;    }    // method: setImplementation  //  boolean setImplementation(IMPLEMENTATION implementation) {    implementation_d = implementation;    is_valid_d = false;        return true;    }  // method: set  //  boolean set(ALGORITHM algorithm = DEF_ALGORITHM,	      IMPLEMENTATION implementation = DEF_IMPLEMENTATION) {    algorithm_d = algorithm;    implementation_d = implementation;    is_valid_d = false;    return true;  }    // method: setChannel  //  boolean setChannel(long channel) {    channel_d = channel;    return true;  }  //---------------------------------------------------------------------------  //  // class-specific public methods:  //  get methods  //  //---------------------------------------------------------------------------  // method: getAlgorithm  //  ALGORITHM getAlgorithm() const {    return algorithm_d;  }  // method: getImplementation  //  IMPLEMENTATION getImplementation() const {    return implementation_d;  }  // method: get  //  boolean get(ALGORITHM& algorithm,	      IMPLEMENTATION& implementation) const {    algorithm = algorithm_d;    implementation = implementation_d;    return true;  }      // method: getChannel  //  long getChannel() const {    return channel_d;  }  //---------------------------------------------------------------------------  //  // public methods required by the AlgorithmBase interface contract  //  //---------------------------------------------------------------------------  // method: assign  //  boolean assign(const AlgorithmBase& arg) {    if (typeid(arg) == typeid(Connection)) {      return assign((Connection&)arg);    }    else {      return Error::handle(name(), L"assign", Error::ARG, __FILE__, __LINE__);    }  }    // method: eq  //  boolean eq(const AlgorithmBase& arg) const {    if (typeid(arg) == typeid(Connection)) {      return eq((Connection&)arg);    }    else {      return Error::handle(name(), L"eq", Error::ARG, __FILE__, __LINE__);    }  }  // method: className  //  const String& className() const {    return CLASS_NAME;  }  // computational methods  //  boolean apply(Vector<AlgorithmData>& output,		const Vector< CircularBuffer<AlgorithmData> >& input);    // method to get the parser from the parent object  //  boolean setParser(SofParser* parser);  //---------------------------------------------------------------------------  //  // private methods  //  //---------------------------------------------------------------------------private:  // algorithm-specific computation methods: operate on channels  //  boolean computeChannelConcatenate(VectorFloat& output,				    const Vector<AlgorithmData>& input);  boolean computeChannelInterleave(VectorFloat& output,				   const Vector<AlgorithmData>& input);  boolean computeStreamConcatenate(AlgorithmData& output,				   const AlgorithmData& input);    boolean computeStreamSelect(AlgorithmData& output,			      const Vector<AlgorithmData>& input);  };// end of include file// #endif

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品成人在线观看| 国产精品午夜免费| 国产99精品视频| 午夜久久电影网| 中文字幕精品一区二区精品绿巨人 | 国产偷国产偷亚洲高清人白洁| 91视频在线看| 国产在线精品视频| 日韩不卡免费视频| 一区二区在线观看视频在线观看| 久久综合精品国产一区二区三区| 欧美亚洲国产一区在线观看网站| 国产精品99久久久久久宅男| 午夜精品久久久久久久| 中文字幕日韩一区| 国产欧美一区二区三区鸳鸯浴| 91精品国产aⅴ一区二区| 91麻豆免费在线观看| 粉嫩av亚洲一区二区图片| 久久精品国产亚洲一区二区三区 | 国产无一区二区| 日韩欧美色综合| 欧美日韩精品欧美日韩精品| 99麻豆久久久国产精品免费优播| 国产在线视视频有精品| 琪琪一区二区三区| 五月激情综合色| 亚洲一卡二卡三卡四卡无卡久久 | 日韩久久精品一区| 69堂成人精品免费视频| 欧美日韩一区二区三区四区五区| 色婷婷久久99综合精品jk白丝| 成人app网站| www.亚洲国产| 99久久婷婷国产综合精品 | 国产曰批免费观看久久久| 美洲天堂一区二卡三卡四卡视频| 日韩专区一卡二卡| 蜜乳av一区二区三区| 蜜乳av一区二区| 麻豆久久一区二区| 免费欧美在线视频| 图片区日韩欧美亚洲| 天天亚洲美女在线视频| 日韩成人精品在线观看| 免费人成精品欧美精品| 精品一区二区三区免费毛片爱| 精品一区二区三区在线视频| 国内精品国产成人| 成人免费精品视频| 91美女片黄在线观看| 欧美在线免费视屏| 欧美日韩国产乱码电影| 日韩一级大片在线观看| 久久综合色天天久久综合图片| 亚洲精品在线免费播放| 国产精品婷婷午夜在线观看| 亚洲欧洲精品一区二区三区不卡| 亚洲激情五月婷婷| 午夜精品一区二区三区电影天堂| 日韩二区在线观看| 精品一区二区三区日韩| 成人激情小说网站| 在线观看国产精品网站| 欧美日韩久久一区二区| 精品成a人在线观看| 中文字幕一区二区三区四区不卡| 一区二区高清在线| 狂野欧美性猛交blacked| 成人午夜精品在线| 在线观看免费视频综合| 欧美激情一区三区| 自拍偷在线精品自拍偷无码专区| 亚洲中国最大av网站| 毛片基地黄久久久久久天堂| 国产福利精品一区| 在线视频观看一区| 亚洲精品在线观| 一区二区三区四区在线免费观看| 青青草国产精品97视觉盛宴| 粉嫩av一区二区三区在线播放| 欧美午夜寂寞影院| 26uuu国产电影一区二区| 亚洲免费在线观看视频| 精品在线播放免费| 在线视频欧美精品| 国产亚洲欧美色| 亚洲福利电影网| 成人黄色网址在线观看| 欧美一区永久视频免费观看| 中文字幕久久午夜不卡| 免费成人美女在线观看.| 成人激情图片网| 日韩你懂的电影在线观看| 亚洲视频狠狠干| 久久99精品国产91久久来源 | 精品国产一区二区三区四区四 | 午夜伦理一区二区| 不卡电影一区二区三区| 欧美一级片免费看| 亚洲六月丁香色婷婷综合久久 | 亚洲美女电影在线| 国产91精品入口| 欧美一级欧美一级在线播放| 怡红院av一区二区三区| 国产成人精品一区二| 欧美成人一区二区| 午夜久久久久久久久| 一本久久a久久精品亚洲 | 首页国产丝袜综合| 一本到不卡精品视频在线观看| 久久久亚洲午夜电影| 日本系列欧美系列| 欧美日韩高清在线| 亚洲午夜精品久久久久久久久| 国产宾馆实践打屁股91| 精品噜噜噜噜久久久久久久久试看| 亚洲五月六月丁香激情| 99精品热视频| 日韩毛片视频在线看| 风间由美性色一区二区三区| 欧美成人三级在线| 日本vs亚洲vs韩国一区三区二区| 欧美三片在线视频观看| 亚洲精品高清在线| 色8久久人人97超碰香蕉987| 国产精品天天看| 高清久久久久久| 日本一区二区三区dvd视频在线| 久久国产免费看| 日韩欧美一级二级| 精品在线观看免费| 久久综合九色综合97婷婷女人 | 91免费视频观看| **性色生活片久久毛片| 成人性视频免费网站| 国产视频一区二区三区在线观看| 国产精品一卡二卡在线观看| 久久久亚洲精品一区二区三区| 国产精品一区二区免费不卡| 久久久.com| 成人午夜免费av| 亚洲视频一二三| 91久久奴性调教| 亚洲电影第三页| 欧美男人的天堂一二区| 青青草视频一区| 久久亚洲精品小早川怜子| 国产真实乱偷精品视频免| 欧美韩日一区二区三区| 99精品桃花视频在线观看| 一区二区三区高清| 91麻豆精品国产91久久久资源速度 | 国产精品成人免费| 色哟哟精品一区| 日日嗨av一区二区三区四区| 欧美大尺度电影在线| 国产成人av电影在线| 日韩久久一区二区| 欧美日韩免费视频| 麻豆国产欧美日韩综合精品二区 | 欧美zozo另类异族| 大胆欧美人体老妇| 亚洲激情在线激情| 91精品国产色综合久久久蜜香臀| 人禽交欧美网站| ww亚洲ww在线观看国产| eeuss鲁片一区二区三区| 亚洲福利国产精品| 久久综合视频网| 日本乱人伦aⅴ精品| 青青草原综合久久大伊人精品优势 | 成人av网站在线观看免费| 一区二区三区国产精品| 日韩欧美激情四射| 92精品国产成人观看免费| 日韩成人一区二区三区在线观看| 欧美国产成人在线| 欧美浪妇xxxx高跟鞋交| 国产成人在线视频播放| 亚洲成av人片在线| 国产午夜一区二区三区| 欧美日韩在线三级| 国产一区二区剧情av在线| 一区二区三区加勒比av| 国产亚洲污的网站| 欧美日本一区二区| 成人国产精品免费观看视频| 三级久久三级久久久| 中文字幕制服丝袜成人av | 91精品国产91热久久久做人人| 成人av片在线观看| 精品写真视频在线观看| 亚洲老司机在线| 2020日本不卡一区二区视频| 欧美手机在线视频| 不卡一二三区首页| 国内精品国产成人| 免费欧美高清视频| 亚洲不卡一区二区三区|