SIPSorcery.SoftPhone.MediaManager.AudioChannelSampleReady C# (CSharp) Method

AudioChannelSampleReady() private method

Event handler for processing audio samples from the audio channel.
private AudioChannelSampleReady ( byte sample ) : void
sample byte The audio sample ready for transmission.
return void
        private void AudioChannelSampleReady(byte[] sample)
        {
            if (sample != null && _rtpManager != null)
            {
                _rtpManager.AudioChannelSampleReady(sample);
            }
        }