CSharpRTMP.Core.Protocols.Rtsp.OutNetRTPUDPH264Stream.GetStats C# (CSharp) Метод

GetStats() публичный Метод

public GetStats ( Variant info, uint namespaceId ) : void
info Variant
namespaceId uint
Результат void
        public override void GetStats(Variant info, uint namespaceId)
        {
            info["audio","bytesCount"] = _audioBytesCount;
            info["audio","packetsCount"] = _audioPacketsCount;
            info["audio","droppedPacketsCount"] = _audioDroppedPacketsCount;
            info["video","bytesCount"] = _videoBytesCount;
            info["video","packetsCount"] = _videoPacketsCount;
            info["video","droppedPacketsCount"] = _videoDroppedPacketsCount;
        }