print block log when DebugRtp on

This commit is contained in:
nareix 2016-06-15 07:28:56 +08:00
parent 227ce8b073
commit 0e64595992

View File

@ -217,7 +217,7 @@ func (self *Client) ReadResponse() (res Response, err error) {
// $ // $
res.BlockLength = int(h[2])<<8 + int(h[3]) res.BlockLength = int(h[2])<<8 + int(h[3])
res.BlockNo = int(h[1]) res.BlockNo = int(h[1])
if self.DebugRtsp { if self.DebugRtp {
fmt.Println("block: len", res.BlockLength, "no", res.BlockNo) fmt.Println("block: len", res.BlockLength, "no", res.BlockNo)
} }
return return
@ -228,7 +228,7 @@ func (self *Client) ReadResponse() (res Response, err error) {
self.conn.Timeout = self.RtpTimeout self.conn.Timeout = self.RtpTimeout
for { for {
if self.DebugRtsp { if self.DebugRtp {
fmt.Println("block: relocate try") fmt.Println("block: relocate try")
} }
@ -252,7 +252,7 @@ func (self *Client) ReadResponse() (res Response, err error) {
} }
} }
if self.DebugRtsp { if self.DebugRtp {
fmt.Println("block: relocate done") fmt.Println("block: relocate done")
fmt.Println("block: len", res.BlockLength, "no", res.BlockNo) fmt.Println("block: len", res.BlockLength, "no", res.BlockNo)
} }