DSPUtil.SoundBuffer.SoundBuffer C# (CSharp) Method

SoundBuffer() public method

public SoundBuffer ( List samples, ushort numChannels, uint sampleRate ) : System
samples List
numChannels ushort
sampleRate uint
return System
        public SoundBuffer(List<ISample> samples, ushort numChannels, uint sampleRate)
        {
            _samples = samples;
            Input = null;
            _nc = numChannels;
            _sr = sampleRate;
        }

Same methods

SoundBuffer::SoundBuffer ( ) : System
SoundBuffer::SoundBuffer ( ISoundObj input ) : System