Add "stutter" capability to the audio file processor.

This commit is contained in:
groboclown
2014-01-22 20:05:10 -06:00
parent 3a53473d10
commit b7b361414a
5 changed files with 78 additions and 4 deletions

View File

@@ -52,6 +52,17 @@ public:
handleState( bool _varying_pitch = false );
virtual ~handleState();
inline const f_cnt_t frameIndex() const
{
return m_frameIndex;
}
inline void setFrameIndex( f_cnt_t _index )
{
m_frameIndex = _index;
}
private:
f_cnt_t m_frameIndex;