stream.go 140 B

12345678
  1. package srtp
  2. type readStream interface {
  3. init(child streamSession, ssrc uint32) error
  4. Read(buf []byte) (int, error)
  5. GetSSRC() uint32
  6. }