CSharpRTMP.Core.Protocols.Rtsp.OutboundConnectivity.FeedAudioData C# (CSharp) Method

FeedAudioData() public method

public FeedAudioData ( MsgHdr &message, double absoluteTimestamp ) : bool
message MsgHdr
absoluteTimestamp double
return bool
        public bool FeedAudioData(ref MsgHdr message,double absoluteTimestamp)
        
        {
            if (!FeedData(ref message, absoluteTimestamp, true))
            {
                FATAL("Unable to feed audio UDP clients");
                return false;
            }
            return true;
        }