mediamtx/internal/rtmp/message/msg_usercontrol.go

13 lines
309 B
Go
Raw Normal View History

2022-06-04 23:06:40 +00:00
package message
2022-06-05 20:44:55 +00:00
// user control types.
const (
UserControlTypeStreamBegin = 0
UserControlTypeStreamEOF = 1
UserControlTypeStreamDry = 2
UserControlTypeSetBufferLength = 3
UserControlTypeStreamIsRecorded = 4
UserControlTypePingRequest = 6
UserControlTypePingResponse = 7
2022-06-04 23:06:40 +00:00
)