public void SetChannels(int channels)
 {
     if (is64Bit)
     {
         SoundTouchInterop64.soundtouch_setChannels(handle, (uint)channels);
     }
     else
     {
         SoundTouchInterop32.soundtouch_setChannels(handle, (uint)channels);
     }
 }