mirror of
https://github.com/bluenviron/mediamtx.git
synced 2025-12-28 22:12:00 -08:00
14 lines
273 B
Go
14 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
|
|
}
|