summaryrefslogtreecommitdiff
path: root/nyqstk/include/PitShift.h
blob: 775b8e2336427543dce6eca78ab0ba323fb689fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/***************************************************/
/*! \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" 

namespace Nyq
{

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;

};

} // namespace Nyq

#endif