summaryrefslogtreecommitdiff
path: root/vendor/github.com/pion/srtp/v2/stream.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/pion/srtp/v2/stream.go')
-rw-r--r--vendor/github.com/pion/srtp/v2/stream.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/vendor/github.com/pion/srtp/v2/stream.go b/vendor/github.com/pion/srtp/v2/stream.go
new file mode 100644
index 0000000..7b7a0cf
--- /dev/null
+++ b/vendor/github.com/pion/srtp/v2/stream.go
@@ -0,0 +1,8 @@
+package srtp
+
+type readStream interface {
+ init(child streamSession, ssrc uint32) error
+
+ Read(buf []byte) (int, error)
+ GetSSRC() uint32
+}