mirror of
https://github.com/bluenviron/mediamtx
synced 2024-12-13 10:14:58 +00:00
15 lines
273 B
Go
15 lines
273 B
Go
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
|
|
}
|