From 9e244f72bfed2498c2b308926b57d0d031e1bd4d Mon Sep 17 00:00:00 2001 From: deepch Date: Thu, 25 May 2023 12:35:12 +0300 Subject: [PATCH] test --- format/rtspv2/proxy.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/format/rtspv2/proxy.go b/format/rtspv2/proxy.go index df3ff3f..c5a5f4e 100644 --- a/format/rtspv2/proxy.go +++ b/format/rtspv2/proxy.go @@ -40,7 +40,7 @@ func NewProxyConn(netconn net.Conn) *ProxyConn { conn.writebuf = make([]byte, 4096) conn.readbuf = make([]byte, 4096) conn.session = uuid.New().String() - conn.cseq = 0 + conn.cseq = 1 return conn }