package unit import ( "time" "github.com/pion/rtp" ) // Base contains fields shared across all units. type Base struct { RTPPackets []*rtp.Packet NTP time.Time } // GetRTPPackets implements Unit. func (u *Base) GetRTPPackets() []*rtp.Packet { return u.RTPPackets } // GetNTP implements Unit. func (u *Base) GetNTP() time.Time { return u.NTP }