mediamtx/internal/rtmp/rawmessage/message.go

15 lines
273 B
Go
Raw Normal View History

2022-06-04 23:06:40 +00:00
package rawmessage
import (
"github.com/aler9/rtsp-simple-server/internal/rtmp/chunk"
)
// Message is a raw message.
type Message struct {
ChunkStreamID byte
Timestamp uint32
Type chunk.MessageType
MessageStreamID uint32
Body []byte
}