public void Sort()
        {
            PacketComparer c = new PacketComparer();

            Array.Sort(m_packets, 0, this.m_packetsEnd, c);
        }
Exemple #2
0
 public RtpFrame()
 {
     this.sl          = new List <RtpPacket>();
     this.pushedBytes = 0u;
     this.compare     = new PacketComparer();
 }