Smoothget.Mkv.MediaDataBlock.MediaDataBlock C# (CSharp) Method

MediaDataBlock() public method

public MediaDataBlock ( ArraySegment bytes, ulong startTime, bool isKeyFrame ) : System
bytes ArraySegment
startTime ulong
isKeyFrame bool
return System
        public MediaDataBlock(ArraySegment<byte> bytes, ulong startTime, bool isKeyFrame)
        {
            this.Bytes = bytes;
              this.StartTime = startTime;
              this.IsKeyFrame = isKeyFrame;
        }
MediaDataBlock