CSPspEmu.Core.Audio.StereoShortSoundSample.Mix C# (CSharp) Method

Mix() private method

private Mix ( StereoShortSoundSample A, StereoShortSoundSample B ) : StereoShortSoundSample
A StereoShortSoundSample
B StereoShortSoundSample
return StereoShortSoundSample
        public static StereoShortSoundSample Mix(StereoShortSoundSample A, StereoShortSoundSample B)
        {
            return new StereoShortSoundSample(Clamp((A.Left + B.Left) / 2), Clamp((A.Right + B.Right) / 2));
        }