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

FeedVideoData() public method

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