pitshift.h
来自「Mobile STK for Symbian OS V0.1」· C头文件 代码 · 共 48 行
H
48 行
/***************************************************//*! \class PitShift \brief STK simple pitch shifter effect class. This class implements a simple pitch shifter using delay lines. by Perry R. Cook and Gary P. Scavone, 1995 - 2005.*//***************************************************/#ifndef STK_PITSHIFT_H#define STK_PITSHIFT_H#include "Effect.h" #include "DelayL.h" class PitShift : public Effect{ public: //! Class constructor. PitShift(); //! Class destructor. ~PitShift(); //! Reset and clear all internal state. void clear(); //! Set the pitch shift factor (1.0 produces no shift). void setShift(StkFloat shift); protected: StkFloat computeSample( StkFloat input ); DelayL delayLine_[2]; StkFloat delay_[2]; StkFloat env_[2]; StkFloat rate_; unsigned long delayLength; unsigned long halfLength;};#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?