You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lal/pkg/rtmp/server_sub_session.go

17 lines
240 B
Go

package rtmp
type SubSession struct {
*ServerSession
isFresh bool
waitKeyNalu bool
}
func NewSubSession(ss *ServerSession) *SubSession {
return &SubSession{
ServerSession: ss,
isFresh: true,
waitKeyNalu: true,
}
}