stream.go 242 B

1234567891011
  1. // SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
  2. // SPDX-License-Identifier: MIT
  3. package srtp
  4. type readStream interface {
  5. init(child streamSession, ssrc uint32) error
  6. Read(buf []byte) (int, error)
  7. GetSSRC() uint32
  8. }