DSPUtil.WaveWriter._buff C# (CSharp) Method

_buff() private method

private _buff ( ) : ISoundObj
return ISoundObj
        private ISoundObj _buff()
        {
            if (double.IsNaN(_normalization))
            {
                return _input;
            }
            // We've been asked to normalize
            SoundBuffer b = new SoundBuffer(_input);
            b.ReadAll();
            _gain = b.Normalize(_normalization, false);
            return b;
        }